2017-04-24 04:16:02 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-02 17:02:25 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=2
|
2017-04-24 04:16:02 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-06-16 00:06:51 +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)
|
|
|
|
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
language=$(ynh_app_setting_get --app=$app --key=language)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
current_version=$(ynh_app_setting_get --app=$app --key=version)
|
|
|
|
update_version=$(ynh_app_upstream_version "../manifest.json")
|
2020-09-28 16:56:29 +02:00
|
|
|
datadir=$final_path/documents/
|
2019-06-16 00:06:51 +02:00
|
|
|
|
2020-09-28 02:00:16 +02:00
|
|
|
fpm_footprint=$(ynh_app_setting_get --app=$app --key=fpm_footprint)
|
|
|
|
fpm_usage=$(ynh_app_setting_get --app=$app --key=fpm_usage)
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Fix is_public as a boolean value
|
|
|
|
if [ "$is_public" = "Yes" ]; then
|
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=1
|
|
|
|
is_public=1
|
|
|
|
elif [ "$is_public" = "No" ]; then
|
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=0
|
|
|
|
is_public=0
|
2019-09-29 20:30:38 +02:00
|
|
|
else
|
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=0
|
|
|
|
is_public=0
|
2019-06-16 00:06:51 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If db_name doesn't exist, create it
|
|
|
|
if [ -z "$db_name" ]; then
|
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If final_path doesn't exist, create it
|
|
|
|
if [ -z "$final_path" ]; then
|
2019-06-27 22:44:38 +02:00
|
|
|
final_path=/var/www/$app
|
2019-06-16 00:06:51 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
|
|
|
fi
|
|
|
|
|
2020-09-28 02:00:16 +02:00
|
|
|
# If fpm_footprint doesn't exist, create it
|
|
|
|
if [ -z "$fpm_footprint" ]; then
|
|
|
|
fpm_footprint=medium
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If fpm_usage doesn't exist, create it
|
|
|
|
if [ -z "$fpm_usage" ]; then
|
|
|
|
fpm_usage=medium
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
|
|
|
|
fi
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=11
|
2019-06-16 00:06:51 +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
|
|
|
|
}
|
2018-02-02 17:06:03 +01:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
# Normalize the URL path syntax
|
|
|
|
# N.B. : this is for app installations before YunoHost 2.7
|
|
|
|
# where this value might be something like /foo/ or foo/
|
|
|
|
# instead of /foo ....
|
|
|
|
# If nobody installed your app before 2.7, then you may
|
|
|
|
# safely remove this line
|
|
|
|
path_url=$(ynh_normalize_url_path --path_url=$path_url)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=70
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2019-06-27 22:44:38 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2019-06-16 00:06:51 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading nginx web server configuration..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
2020-09-28 16:56:29 +02:00
|
|
|
ynh_add_nginx_config YNH_PHP_VERSION
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
|
|
|
ynh_system_user_create --username=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading php-fpm configuration..." --weight=2
|
2019-06-16 00:06:51 +02:00
|
|
|
|
2020-09-28 16:56:29 +02:00
|
|
|
# Delete old static pool.d conf
|
|
|
|
old_php_version=7.0
|
|
|
|
if [ -f "/etc/php/$old_php_version/fpm/pool.d/$app.conf" ]; then
|
|
|
|
ynh_secure_remove --file="/etc/php/$old_php_version/fpm/pool.d/$app.conf"
|
|
|
|
fi
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
# Create a dedicated php-fpm config
|
2020-09-28 02:00:16 +02:00
|
|
|
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint --phpversion=$YNH_PHP_VERSION --package="$extra_php_dependencies"
|
2019-06-16 00:06:51 +02:00
|
|
|
|
2020-09-28 01:07:01 +02:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
|
|
|
# LAUNCH UPGRADE
|
|
|
|
#=================================================
|
|
|
|
|
2019-06-27 22:44:38 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading app from $current_version to $update_version" --weight=3
|
2019-06-27 22:44:38 +02:00
|
|
|
|
2019-07-05 22:33:55 +02:00
|
|
|
chown -R $app: "$final_path"
|
2019-06-27 22:44:38 +02:00
|
|
|
|
|
|
|
# Remove the lock if it exists
|
|
|
|
lock=$final_path/documents/install.lock
|
2019-07-04 12:52:42 +02:00
|
|
|
if [ -f $lock ]
|
2019-07-04 12:03:16 +02:00
|
|
|
then
|
|
|
|
ynh_secure_remove $lock
|
|
|
|
fi
|
2019-06-29 10:42:28 +02:00
|
|
|
|
|
|
|
mkdir -p /var/log/$app/
|
2019-06-27 22:44:38 +02:00
|
|
|
|
|
|
|
# Upgrade with CURL
|
2019-07-04 12:03:16 +02:00
|
|
|
pushd $final_path/htdocs/install/
|
2019-06-27 22:44:38 +02:00
|
|
|
if php upgrade.php $current_version $update_version > /var/log/$app/upgrade.html; then
|
|
|
|
ynh_print_info --message="Step 1 upgrading ended successfully"
|
|
|
|
else
|
|
|
|
ynh_print_warn --message="Step 1 upgrading ended with error"
|
|
|
|
fi
|
|
|
|
if php upgrade2.php $current_version $update_version > /var/log/$app/upgrade2.html; then
|
|
|
|
ynh_print_info --message="Step 2 upgrading ended successfully"
|
|
|
|
else
|
|
|
|
ynh_print_warn --message="Step 2 upgrading ended with error"
|
|
|
|
fi
|
|
|
|
if php step5.php $current_version $update_version > /var/log/$app/upgrade3.html; then
|
|
|
|
ynh_print_info --message="Step 3 upgrading ended successfully"
|
|
|
|
else
|
|
|
|
ynh_print_warn --message="Step 3 upgrading ended with error"
|
|
|
|
fi
|
2019-09-02 00:54:28 +02:00
|
|
|
|
|
|
|
ynh_app_setting_set --app=$app --key=version --value=$update_version
|
|
|
|
|
2019-07-04 12:03:16 +02:00
|
|
|
popd
|
2019-06-16 00:06:51 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE THE CONFIG FILE CHECKSUM
|
|
|
|
#=================================================
|
|
|
|
|
2019-06-27 22:44:38 +02:00
|
|
|
ynh_backup_if_checksum_is_different --file="$final_path/htdocs/conf/conf.php"
|
2019-06-16 00:06:51 +02:00
|
|
|
# Recalculate and store the checksum of the file for the next upgrade.
|
2019-06-27 22:44:38 +02:00
|
|
|
ynh_store_file_checksum --file="$final_path/htdocs/conf/conf.php"
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
# Set permissions on app files
|
2020-10-28 22:05:27 +01:00
|
|
|
chown -R $app: "$final_path"
|
2019-06-27 22:44:38 +02:00
|
|
|
chmod 644 "$final_path/htdocs/conf/conf.php"
|
2019-06-29 10:41:24 +02:00
|
|
|
mkdir -p "$datadir"
|
2019-07-05 22:33:55 +02:00
|
|
|
chown -R $app: "$datadir"
|
2019-06-16 00:06:51 +02:00
|
|
|
chmod go-w $datadir
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading SSOwat configuration..." --weight=1
|
2019-06-16 00:06:51 +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=$app --key=unprotected_uris --value="/"
|
|
|
|
fi
|
|
|
|
|
2020-12-29 19:12:16 +01:00
|
|
|
ynh_permission_create --permission "public access" --url "/public/" --allowed "visitors"
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Reloading nginx web server..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|