2017-04-05 07:18:34 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# GENERIC START
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2017-04-05 07:18:34 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
language=$(ynh_app_setting_get --app=$app --key=language)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
db_user=$db_name
|
|
|
|
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
|
2017-04-05 07:18:34 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# CHECK VERSION
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2018-09-04 06:26:11 +02:00
|
|
|
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=3
|
2017-04-05 07:18:34 +02:00
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
|
|
|
# Restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-04-05 07:18:34 +02:00
|
|
|
|
2021-10-07 16:35:37 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
|
|
|
|
|
|
|
# Cleaning legacy permissions
|
|
|
|
if ynh_legacy_permissions_exists; then
|
|
|
|
ynh_legacy_permissions_delete_all
|
|
|
|
|
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
fi
|
|
|
|
|
2021-06-06 09:07:27 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=2
|
|
|
|
|
|
|
|
# Create a temporary directory
|
|
|
|
tmpdir="$(mktemp -d)"
|
|
|
|
|
|
|
|
# Backup the config file in the temp dir
|
|
|
|
cp -ar "$final_path/db" "$tmpdir/db"
|
2017-04-05 07:18:34 +02:00
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file="$final_path"
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
|
|
|
|
|
|
|
# Copy the admin saved settings from tmp directory to final path
|
|
|
|
cp -ar "$tmpdir/db" "$final_path/db"
|
|
|
|
|
|
|
|
# Remove the tmp directory securely
|
|
|
|
ynh_secure_remove --file="$tmpdir"
|
|
|
|
fi
|
2017-04-05 07:18:34 +02:00
|
|
|
|
2021-06-06 09:07:27 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# NGINX CONFIGURATION
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2017-04-05 07:18:34 +02:00
|
|
|
|
2022-01-16 22:18:44 +01:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=1
|
|
|
|
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# PHP-FPM CONFIGURATION
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=2
|
2017-04-05 07:18:34 +02:00
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
|
|
|
ynh_add_fpm_config
|
2017-04-05 07:18:34 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# RESTORE OF THE SQL BDD
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
# db_pwd=$(ynh_app_setting_get $app mysqlpwd)
|
|
|
|
# # il ne faut recreer la base, c'est une maj
|
|
|
|
# #ynh_mysql_create_db $db_name $db_name $db_pwd
|
2017-04-09 17:55:57 +02:00
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
# # il faut prendre le script de mise a jour
|
|
|
|
# ynh_mysql_connect_as $db_name $db_pwd $db_name < $final_path/db/update.sql
|
2017-04-05 07:18:34 +02:00
|
|
|
|
2017-04-09 17:55:57 +02:00
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# RESTORE USER RIGHTS
|
2017-04-09 17:55:57 +02:00
|
|
|
#=================================================
|
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
ynh_secure_remove --file="$final_path/setup.php"
|
|
|
|
ynh_secure_remove --file="$final_path/db/todolist.db"
|
2017-04-09 17:55:57 +02:00
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
chmod 775 $final_path/db/config.php
|
|
|
|
chmod 755 $final_path/tmp/sessions
|
2017-04-09 17:55:57 +02:00
|
|
|
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
2020-12-31 23:19:32 +01:00
|
|
|
# END OF SCRIPT
|
2017-04-05 07:18:34 +02:00
|
|
|
#=================================================
|
|
|
|
|
2020-12-31 23:19:32 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|