1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/spip_ynh.git synced 2024-09-03 20:25:59 +02:00
spip_ynh/scripts/upgrade

264 lines
10 KiB
Text
Raw Normal View History

2017-03-26 16:26:55 +02:00
#!/bin/bash
2015-04-28 17:32:31 +02:00
2019-03-10 02:20:27 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-08-30 00:22:47 +02:00
2019-03-10 02:20:27 +01:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-12-18 10:52:22 +01:00
ynh_script_progression --message="Loading installation settings..."
2017-02-22 02:39:06 +01:00
2016-08-30 00:22:47 +02:00
app=$YNH_APP_INSTANCE_NAME
2020-12-18 10:52:22 +01:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
admin=$(ynh_app_setting_get --app=$app --key=admin)
password=$(ynh_app_setting_get --app=$app --key=password)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
users_status=$(ynh_app_setting_get --app=$app --key=users_status)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2021-05-24 12:31:28 +02:00
db_user=$db_name
2020-12-18 10:52:22 +01:00
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
2016-08-30 00:22:47 +02:00
2021-05-18 04:02:21 +02:00
#=================================================
# CHECK VERSION
#=================================================
ynh_script_progression --message="Checking version..."
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
if [ $migration_process -eq 1 ]; then
yunohost app remove $app
# Reload some values changed by the migration process
app=$YNH_APP_INSTANCE_NAME
fi
# Restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
2019-03-10 02:20:27 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-12-18 10:52:22 +01:00
ynh_script_progression --message="Ensuring downward compatibility..."
2016-09-20 01:51:28 +02:00
2021-08-09 11:25:34 +02:00
# Remove is_public
2022-01-03 11:23:43 +01:00
if [ -n "$(ynh_app_setting_get --app=$app --key=is_public)" ]; then
2021-08-09 11:25:34 +02:00
ynh_app_setting_delete --app=$app --key=is_public
2019-03-10 02:20:27 +01:00
fi
2015-04-28 17:32:31 +02:00
2019-03-10 20:13:09 +01:00
# If db_name doesn't exist, create it
if [ -z $db_name ]; then
2019-03-13 22:44:30 +01:00
db_name=$app
2020-12-18 10:52:22 +01:00
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
2019-03-10 20:13:09 +01:00
fi
2019-03-10 02:20:27 +01:00
# If final_path doesn't exist, create it
if [ -z $final_path ]; then
final_path=/var/www/$app
2020-12-18 10:52:22 +01:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2019-03-10 02:20:27 +01:00
fi
2015-04-28 17:32:31 +02:00
2019-03-10 02:20:27 +01:00
# If users_status doesn't exist, create it
if [ -z $users_status ]; then
users_status="Editor"
2020-12-18 10:52:22 +01:00
ynh_app_setting_set --app=$app --key=users_status --value=$users_status
2019-03-10 02:20:27 +01:00
fi
2019-03-10 02:20:27 +01:00
if [ -z $password ]; then
# Generate random password
2020-12-18 10:52:22 +01:00
password=$(ynh_string_random --length=8)
2015-04-28 17:32:31 +02:00
2019-03-10 02:20:27 +01:00
echo "The new version of SPIP provide a new password. You can change it in the private area." > mail_to_send
echo "" >> mail_to_send
echo "This password is: $password" >> mail_to_send
2017-02-22 02:39:06 +01:00
2019-03-10 02:20:27 +01:00
ynh_send_readme_to_admin --app_message="mail_to_send" --type="upgrade"
2020-12-18 10:52:22 +01:00
ynh_app_setting_set --app=$app --key=password --value=$password
2019-03-10 02:20:27 +01:00
fi
2015-04-28 17:32:31 +02:00
2021-05-24 12:31:28 +02:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
fi
2019-03-13 22:44:30 +01:00
#=================================================
# HANDLE MIGRATION FROM SPIP2
#=================================================
ynh_handle_app_migration "spip2" "spip2_migration"
if [ $migration_process -eq 1 ]; then
# If a migration has been perform
# Reload some values changed by the migration process
2020-12-18 10:52:22 +01:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2019-03-13 22:44:30 +01:00
fi
2019-03-10 02:20:27 +01:00
#=================================================
2021-05-18 04:02:21 +02:00
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..."
# Create a dedicated user (if not existing)
2022-08-04 21:35:29 +02:00
ynh_system_user_create --username=$app --home_dir="$final_path"
2021-05-18 04:02:21 +02:00
2019-03-10 02:20:27 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-05-18 04:02:21 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..."
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
fi
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2019-03-10 02:20:27 +01:00
2021-12-31 08:57:46 +01:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
ynh_script_progression --message="Upgrading dependencies..."
ynh_install_app_dependencies $pkg_dependencies
2019-03-10 02:20:27 +01:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-12-18 10:52:22 +01:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..."
2019-03-10 02:20:27 +01:00
2021-05-18 04:02:21 +02:00
# Create a dedicated PHP-FPM config
2021-12-31 08:57:46 +01:00
ynh_add_fpm_config
2019-03-10 02:20:27 +01:00
2022-08-04 21:35:29 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..."
# Create a dedicated NGINX config
ynh_add_nginx_config
2019-03-10 02:20:27 +01:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
# SETUP APPLICATION WITH CURL
#=================================================
2021-05-24 12:31:28 +02:00
ynh_script_progression --message="Setuping application with CURL..."
2019-03-10 02:20:27 +01:00
# Set right permissions for curl install
2021-01-13 17:02:59 +01:00
mkdir -p $final_path/plugins/auto
2021-05-24 12:31:28 +02:00
chown -R $app:www-data "$final_path"
2019-03-10 02:20:27 +01:00
# Set the app as temporarily public for curl call
2021-05-18 04:02:21 +02:00
ynh_script_progression --message="Configuring SSOwat..."
2021-08-09 11:25:34 +02:00
2020-12-18 10:52:22 +01:00
ynh_backup_if_checksum_is_different --file="$final_path/config/connect.php"
2019-03-10 02:20:27 +01:00
2021-06-18 10:58:09 +02:00
mv $final_path/config/connect.php $final_path/config/connect.php.ynh_bkp
2019-03-10 02:20:27 +01:00
2021-05-24 12:31:28 +02:00
# Installation with curl
ynh_script_progression --message="Finalizing installation..."
2019-03-10 02:20:27 +01:00
ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=chmod"
2021-08-09 11:25:34 +02:00
ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=2" "chmod=750" "adresse_db=localhost" "login_db=$db_name" "pass_db=$db_pwd" "server_db=mysql"
2019-03-10 02:20:27 +01:00
ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=3" "adresse_db=localhost" "login_db=$db_name" "pass_db=$db_pwd" "server_db=mysql" "choix_db=$db_name" "tprefix=$db_name"
2019-03-13 21:25:07 +01:00
# For now spip have a problem with LDAP
#ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=ldap1"
#ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=ldap2" "adresse_ldap=localhost" "port_ldap=389" "tls_ldap=no" "protocole_ldap=3"
#ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=ldap3" "adresse_ldap=localhost" "port_ldap=389" "tls_ldap=no" "protocole_ldap=3"
#ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=ldap4" "adresse_ldap=localhost" "port_ldap=389" "tls_ldap=no" "protocole_ldap=3" "base_ldap=dc=yunohost,dc=org"
#
## statut_ldap can take: 0minirezo for Administrator, 1comite for Editor, 6forum for Visitor
#if [ $users_status = "Administrator" ]; then
# status="0minirezo"
#elif [ $users_status = "Editor" ]; then
# status="1comite"
#else
# status="6forum"
#fi
#ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=ldap5" "adresse_ldap=localhost" "port_ldap=389" "tls_ldap=no" "protocole_ldap=3" "base_ldap=dc=yunohost,dc=org" "statut_ldap=$status" "ldap_login=sAMAccountName,uid,login,userid,cn,sn" "ldap_nom=cn" "ldap_email=mail" "ldap_bio=description"
#ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=3" "ldap_present=true"
2019-03-10 02:20:27 +01:00
2020-04-25 21:44:42 +02:00
# Fix db initialization
ynh_local_curl "/ecrire/?exec=install" "etape=3b"
2019-03-10 02:20:27 +01:00
email=$(yunohost user info $admin | grep mail: | cut -d' ' -f2 | tr -d '\n')
2019-03-13 21:25:07 +01:00
ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=3b" "adresse_db=localhost" "login_db=$db_name" "pass_db=$db_pwd" "server_db=mysql" "sel_db=$db_name" "nom=$admin" "email=$email" "login=$admin" "pass=$password" "pass_verif=$password"
2019-03-10 02:20:27 +01:00
ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=fin"
#=================================================
2021-05-18 04:02:21 +02:00
# UPDATE A CONFIG FILE
2019-03-10 02:20:27 +01:00
#=================================================
2022-08-04 21:35:29 +02:00
ynh_script_progression --message="Updating a configuration file..."
2021-05-24 12:31:28 +02:00
2020-12-18 10:52:22 +01:00
#ynh_replace_string --match_string="'','utf8');" --replace_string="'ldap.php','utf8');" --target_file=$final_path/config/connect.php
2019-03-10 02:20:27 +01:00
cp ../conf/mes_options.php $final_path/config/mes_options.php
2021-06-18 10:58:09 +02:00
if [ ! -f $final_path/config/connect.php ]; then
mv $final_path/config/connect.php.ynh_bkp $final_path/config/connect.php
else
ynh_secure_remove --file="$final_path/config/connect.php.ynh_bkp"
fi
2020-12-18 10:52:22 +01:00
ynh_store_file_checksum --file="$final_path/config/connect.php"
2019-03-10 02:20:27 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2020-12-18 10:52:22 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2019-03-10 02:20:27 +01:00
2020-12-18 10:52:22 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2019-03-10 02:20:27 +01:00
2019-03-10 20:13:09 +01:00
#=================================================
# SEND INFORMATION
#=================================================
echo "To finish the upgrade, you may have to update the database by clicking on the button (if asked) at this location: https://$domain$path_url/ecrire/" > mail_to_send
ynh_send_readme_to_admin --app_message="mail_to_send" --type="upgrade"
2019-03-13 22:44:30 +01:00
if [ $migration_process -eq 1 ]
then
2020-12-18 10:52:22 +01:00
ynh_script_progression --message="Spip2 has been successfully migrated to Spip! \
2019-03-13 22:44:30 +01:00
A last scheduled operation will run in a couple of minutes to finish the \
migration in YunoHost side. Do not proceed any application operation while \
you don't see Spip as installed."
# Execute a post migration script after the end of this upgrade.
# Mainly for some cleaning
script_post_migration=spip2_post_migration.sh
cp ../conf/$script_post_migration /tmp
2020-12-18 10:52:22 +01:00
ynh_replace_string --match_string="__OLD_APP__" --replace_string="$old_app" --target_file=/tmp/$script_post_migration
ynh_replace_string --match_string="__NEW_APP__" --replace_string="$app" --target_file=/tmp/$script_post_migration
2019-03-13 22:44:30 +01:00
chmod +x /tmp/$script_post_migration
(cd /tmp; echo "/tmp/$script_post_migration > /tmp/$script_post_migration.log 2>&1" | at now + 2 minutes)
fi
2019-03-10 02:20:27 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-12-18 10:52:22 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last