2017-07-02 12:41:05 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-07-02 12:41:05 +02:00
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2017-07-05 12:28:42 +02:00
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2018-09-01 18:12:10 +02:00
|
|
|
|
2017-07-02 12:41:05 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2017-08-01 12:01:23 +02:00
|
|
|
path_url=$(ynh_app_setting_get "$app" path)
|
2017-07-02 12:41:05 +02:00
|
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
2018-09-01 18:12:10 +02:00
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
2017-08-02 10:24:39 +02:00
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
2017-08-01 12:01:23 +02:00
|
|
|
|
2018-09-01 18:12:10 +02:00
|
|
|
# Fix is_public as a boolean value
|
2017-08-01 12:01:23 +02:00
|
|
|
if [ "$is_public" = "Yes" ]; then
|
2018-09-01 18:12:10 +02:00
|
|
|
ynh_app_setting_set $app is_public 1
|
2017-08-01 12:01:23 +02:00
|
|
|
is_public=1
|
|
|
|
elif [ "$is_public" = "No" ]; then
|
|
|
|
ynh_app_setting_set $app is_public 0
|
|
|
|
is_public=0
|
|
|
|
fi
|
|
|
|
|
2018-09-01 18:12:10 +02:00
|
|
|
# If db_name doesn't exist, create it
|
|
|
|
if [ -z $db_name ]; then
|
2020-02-23 19:45:22 +01:00
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
2017-08-01 12:01:23 +02:00
|
|
|
ynh_app_setting_set $app db_name $db_name
|
|
|
|
fi
|
|
|
|
|
2018-09-01 18:12:10 +02:00
|
|
|
# If final_path doesn't exist, create it
|
|
|
|
if [ -z $final_path ]; then
|
|
|
|
final_path=/var/www/$app
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Backing up Webtrees before upgrading (may take a while)..."
|
2018-09-01 18:12:10 +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
|
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
2019-04-06 20:29:15 +02:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..."
|
2017-07-03 21:21:48 +02:00
|
|
|
|
|
|
|
# Move old app dir
|
2019-12-07 18:38:47 +01:00
|
|
|
mv ${final_path} ${final_path}.old
|
2017-07-03 21:21:48 +02:00
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source "$final_path"
|
2017-07-02 12:41:05 +02:00
|
|
|
|
2017-07-03 21:21:48 +02:00
|
|
|
# restore data
|
2019-12-07 18:38:47 +01:00
|
|
|
cp -a ${final_path}.old/data ${final_path}
|
2017-07-02 12:41:05 +02:00
|
|
|
|
2017-07-03 21:21:48 +02:00
|
|
|
# delete temp directory
|
2020-11-09 16:00:18 +01:00
|
|
|
ynh_secure_remove ${final_path}.old
|
2017-07-02 12:41:05 +02:00
|
|
|
|
2019-04-06 20:29:15 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..."
|
2019-04-06 20:29:15 +02:00
|
|
|
|
2020-10-16 11:21:00 +02:00
|
|
|
# Create a dedicated NGINX config
|
2017-08-01 12:01:23 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2019-04-06 20:29:15 +02:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Upgrading dependencies..."
|
2019-04-06 20:29:15 +02:00
|
|
|
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2018-09-13 08:45:56 +02:00
|
|
|
|
2018-09-01 18:12:10 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..."
|
2018-09-01 18:12:10 +02:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_system_user_create --username=$app
|
2018-09-01 18:12:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..."
|
2017-07-02 12:41:05 +02:00
|
|
|
|
2020-10-16 11:21:00 +02:00
|
|
|
# Create a dedicated PHP-FPM config
|
|
|
|
ynh_add_fpm_config --phpversion=$YNH_PHP_VERSION
|
2019-04-18 05:06:19 +02:00
|
|
|
|
2019-04-06 20:29:15 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
|
|
|
# ...
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_backup_if_checksum_is_different "$final_path/data/config.ini.php"
|
|
|
|
# Recalculate and store the checksum of the file for the next upgrade.
|
|
|
|
ynh_store_file_checksum "$final_path/data/config.ini.php"
|
2018-09-01 18:12:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Set permissions on app files
|
|
|
|
chown -R $app: $final_path
|
2019-12-07 18:38:47 +01:00
|
|
|
chmod -R 700 $final_path/data
|
2017-07-02 12:41:05 +02:00
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Upgrading SSOwat configuration..."
|
2017-08-01 12:01:23 +02:00
|
|
|
|
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway
|
|
|
|
ynh_app_setting_set $app unprotected_uris "/"
|
|
|
|
fi
|
|
|
|
|
2020-10-16 11:21:00 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2017-08-01 12:01:23 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
|
2017-08-01 12:01:23 +02:00
|
|
|
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-04-06 20:29:15 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|
|
|
|
|