2017-07-12 01:45:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2022-01-22 20:55:44 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2017-07-12 01:45:37 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2022-01-22 20:55:44 +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)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
2022-01-23 12:58:04 +01:00
|
|
|
db_user=$db_name
|
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
|
2022-03-22 23:31:26 +01:00
|
|
|
db_prefix=$(ynh_app_setting_get --app=$app --key=db_prefix)
|
2022-03-22 23:38:41 +01:00
|
|
|
secret=$(ynh_app_setting_get --app=$app --key=secret)
|
2017-07-12 01:45:37 +02:00
|
|
|
|
2022-01-22 20:55:44 +01: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 () {
|
|
|
|
# Restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2022-06-07 11:23:05 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP CONFIGURATION FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Backing up configuration file..."
|
|
|
|
|
|
|
|
# Create a temporary directory
|
|
|
|
tmpdir="$(ynh_smart_mktemp min_size=3)"
|
|
|
|
|
|
|
|
# Backup the config file in the temp dir
|
|
|
|
cp -a "$final_path/configuration.php" "$tmpdir/configuration.php"
|
|
|
|
|
2022-01-22 20:55:44 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
2017-07-12 01:45:37 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2022-01-22 20:55:44 +01:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
2017-07-12 01:45:37 +02:00
|
|
|
|
2022-03-22 23:31:26 +01:00
|
|
|
# If db_prefix doesn't exist, create it
|
|
|
|
if [ -z "$db_prefix" ]; then
|
|
|
|
db_prefix=""
|
|
|
|
ynh_app_setting_set --app=$app --key=db_prefix --value=$db_prefix
|
|
|
|
fi
|
|
|
|
|
2022-03-22 23:38:41 +01:00
|
|
|
# If secret doesn't exist, create it
|
|
|
|
if [ -z "$secret" ]; then
|
|
|
|
secret=""
|
|
|
|
ynh_app_setting_set --app=$app --key=secret --value=$secret
|
|
|
|
fi
|
|
|
|
|
2022-01-22 20:55:44 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..."
|
2017-07-12 01:45:37 +02:00
|
|
|
|
2022-01-22 20:55:44 +01:00
|
|
|
# Create a dedicated user (if not existing)
|
2022-03-22 20:43:29 +01:00
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2017-07-12 01:45:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-01-22 20:55:44 +01:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2017-07-12 01:45:37 +02:00
|
|
|
#=================================================
|
|
|
|
|
2022-01-22 20:55:44 +01: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
|
2017-07-12 01:45:37 +02:00
|
|
|
|
2022-01-22 20:55:44 +01:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
2017-07-12 01:45:37 +02:00
|
|
|
|
2022-01-22 20:55:44 +01:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading dependencies..."
|
2017-07-12 01:45:37 +02:00
|
|
|
|
2022-01-22 20:55:44 +01:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2017-07-12 01:45:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-01-22 20:55:44 +01:00
|
|
|
# PHP-FPM CONFIGURATION
|
2017-07-12 01:45:37 +02:00
|
|
|
#=================================================
|
2022-01-22 20:55:44 +01:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..."
|
2017-07-12 01:45:37 +02:00
|
|
|
|
2022-01-22 20:55:44 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
2022-08-27 21:52:03 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..."
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2022-01-22 20:55:44 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
2022-06-07 11:23:05 +02:00
|
|
|
# RESTORE A CONFIG FILE
|
2022-01-22 20:55:44 +01:00
|
|
|
#=================================================
|
2022-06-07 11:23:05 +02:00
|
|
|
ynh_script_progression --message="Restoring configuration file..."
|
|
|
|
|
|
|
|
#ynh_add_config --template="../conf/configuration.php" --destination="$final_path/configuration.php"
|
2022-01-22 20:55:44 +01:00
|
|
|
|
2022-06-07 11:23:05 +02:00
|
|
|
# Restore config file
|
|
|
|
mv -f "$tmpdir/configuration.php" "$final_path/configuration.php"
|
|
|
|
ynh_secure_remove --file="$tmpdir"
|
2022-01-22 20:55:44 +01:00
|
|
|
|
|
|
|
chmod 400 "$final_path/configuration.php"
|
|
|
|
chown $app:$app "$final_path/configuration.php"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..."
|
|
|
|
|
2022-03-22 21:51:49 +01:00
|
|
|
mkdir -p "/var/log/$app"
|
|
|
|
chmod 750 "/var/log/$app"
|
|
|
|
chmod -R o-rwx "/var/log/$app"
|
|
|
|
chown -R $app:www-data "/var/log/$app"
|
|
|
|
|
2022-01-22 20:55:44 +01:00
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate --non-append
|
2017-07-12 01:45:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2022-01-22 20:55:44 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-07-12 01:45:37 +02:00
|
|
|
|
2022-01-22 20:55:44 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|