2019-02-24 18:43:56 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-06-24 22:26:29 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2019-02-24 18:43:56 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2020-06-24 22:26:29 +02: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)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
language=$(ynh_app_setting_get --app=$app --key=language)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Checking version..."
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2019-02-24 18:43:56 +01:00
|
|
|
|
2021-08-05 00:51:27 +02:00
|
|
|
#=================================================
|
|
|
|
# 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 () {
|
|
|
|
# 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-02-24 18:43:56 +01:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2020-06-24 22:26:29 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
2019-02-24 18:43:56 +01:00
|
|
|
|
|
|
|
# If final_path doesn't exist, create it
|
2020-06-24 22:26:29 +02:00
|
|
|
if [ -z "$final_path" ]; then
|
2019-02-24 18:43:56 +01:00
|
|
|
final_path=/var/www/$app
|
2020-06-24 22:26:29 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2019-02-24 18:43:56 +01:00
|
|
|
fi
|
|
|
|
|
2021-06-12 20:28:33 +02:00
|
|
|
# Cleaning legacy permissions
|
|
|
|
if ynh_legacy_permissions_exists; then
|
|
|
|
ynh_legacy_permissions_delete_all
|
|
|
|
|
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..."
|
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2021-08-05 00:51:27 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir=$final_path
|
2021-06-12 20:28:33 +02:00
|
|
|
|
2019-02-24 18:43:56 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2020-06-24 22:26:29 +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
|
2019-02-24 18:43:56 +01:00
|
|
|
|
2021-06-12 20:28:33 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
|
2019-02-24 18:43:56 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-14 09:25:15 +01:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..."
|
2019-02-24 18:43:56 +01:00
|
|
|
|
2021-08-05 00:51:27 +02:00
|
|
|
# Create a dedicated NGINX config
|
2019-02-24 18:43:56 +01:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-14 09:25:15 +01:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..."
|
2019-02-24 18:43:56 +01:00
|
|
|
|
2020-11-14 09:25:15 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2021-08-05 00:51:27 +02:00
|
|
|
ynh_add_fpm_config --package="$extra_php_dependencies"
|
2019-02-24 18:43:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
2020-07-16 18:59:28 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP APPLICATION WITH CURL
|
|
|
|
#=================================================
|
2020-11-14 09:25:15 +01:00
|
|
|
ynh_script_progression --message="Setting up application with cURL..."
|
2020-07-16 18:59:28 +02:00
|
|
|
|
2020-07-23 16:57:37 +02:00
|
|
|
ynh_local_curl "/update/index.php" "submit=submit"
|
2020-07-16 18:59:28 +02:00
|
|
|
|
2021-06-12 20:28:33 +02:00
|
|
|
#Removing install.php and /update"
|
2020-06-24 22:26:29 +02:00
|
|
|
ynh_secure_remove --file="${final_path}/install.php"
|
|
|
|
ynh_secure_remove --file="${final_path}/update"
|
2019-02-24 18:43:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-11-14 09:25:15 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
2019-02-24 18:43:56 +01:00
|
|
|
|
2020-06-24 22:26:29 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-24 18:43:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
2020-06-24 22:26:29 +02:00
|
|
|
# END OF SCRIPT
|
2019-02-24 18:43:56 +01:00
|
|
|
#=================================================
|
|
|
|
|
2020-06-24 22:26:29 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|