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

140 lines
4.6 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2022-09-05 03:58:00 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
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)
2022-09-05 03:58:00 +02:00
language=$(ynh_app_setting_get --app=$app --key=language)
2020-06-24 22:26:29 +02:00
admin=$(ynh_app_setting_get --app=$app --key=admin)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
#=================================================
# CHECK VERSION
#=================================================
2022-09-05 03:58:00 +02:00
ynh_script_progression --message="Checking version..." --weight=1
2020-06-24 22:26:29 +02:00
upgrade_type=$(ynh_check_app_version_changed)
2021-08-05 00:51:27 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2022-09-05 03:58:00 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2021-08-05 00:51:27 +02: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
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2022-09-05 03:58:00 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
# If final_path doesn't exist, create it
2020-06-24 22:26:29 +02:00
if [ -z "$final_path" ]; then
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
fi
# 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
#=================================================
2022-09-05 03:58:00 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
# Create a dedicated user (if not existing)
2022-09-05 03:58:00 +02:00
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-06-24 22:26:29 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2022-09-05 03:58:00 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2020-06-24 22:26:29 +02:00
# 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"
#=================================================
2022-09-05 03:58:00 +02:00
# UPGRADE DEPENDENCIES
#=================================================
2022-09-05 03:58:00 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2022-09-05 03:58:00 +02:00
ynh_install_app_dependencies $pkg_dependencies
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2022-09-05 03:58:00 +02:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
2020-11-14 09:25:15 +01:00
# Create a dedicated PHP-FPM config
2022-09-05 03:58:00 +02:00
ynh_add_fpm_config
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SPECIFIC UPGRADE
2020-07-16 18:59:28 +02:00
#=================================================
# SETUP APPLICATION WITH CURL
#=================================================
2022-09-05 03:58:00 +02:00
ynh_script_progression --message="Setting up application with cURL..." --weight=1
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
#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"
2022-09-05 03:58:00 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2022-09-05 03:58:00 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2020-06-24 22:26:29 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
2020-06-24 22:26:29 +02:00
# END OF SCRIPT
#=================================================
2022-09-05 03:58:00 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last