2016-08-21 01:03:46 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-03-01 09:43:17 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=1
|
2016-08-21 01:03:46 +02:00
|
|
|
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
|
2021-03-01 09:43:17 +01:00
|
|
|
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
#REMOVEME? language=$(ynh_app_setting_get --app=$app --key=language)
|
|
|
|
#REMOVEME? admin=$(ynh_app_setting_get --app=$app --key=admin)
|
|
|
|
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
|
|
|
|
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
#REMOVEME? db_user=$db_name
|
|
|
|
#REMOVEME? db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
|
2021-03-01 09:43:17 +01:00
|
|
|
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? fpm_footprint=$(ynh_app_setting_get --app=$app --key=fpm_footprint)
|
|
|
|
#REMOVEME? fpm_free_footprint=$(ynh_app_setting_get --app=$app --key=fpm_free_footprint)
|
|
|
|
#REMOVEME? fpm_usage=$(ynh_app_setting_get --app=$app --key=fpm_usage)
|
2023-01-27 18:12:14 +01:00
|
|
|
|
2021-03-01 09:43:17 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
|
2021-03-01 09:43:17 +01:00
|
|
|
|
|
|
|
# Backup the current version of the app
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_backup_before_upgrade
|
|
|
|
#REMOVEME? ynh_clean_setup () {
|
2021-03-01 09:43:17 +01:00
|
|
|
# Restore it if the upgrade fails
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_restore_upgradebackup
|
2021-03-01 09:43:17 +01:00
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_abort_if_errors
|
2021-03-01 09:43:17 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
2022-07-19 03:18:49 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
|
|
|
|
2023-01-27 18:12:14 +01:00
|
|
|
# If fpm_footprint doesn't exist, create it
|
|
|
|
if [ -z "$fpm_footprint" ]; then
|
|
|
|
fpm_footprint=low
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If fpm_free_footprint doesn't exist, create it
|
|
|
|
if [ -z "$fpm_free_footprint" ]; then
|
|
|
|
fpm_free_footprint=0
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If fpm_usage doesn't exist, create it
|
|
|
|
if [ -z "$fpm_usage" ]; then
|
|
|
|
fpm_usage=low
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
|
|
|
|
fi
|
|
|
|
|
2022-07-19 03:18:49 +02:00
|
|
|
# Cleaning legacy permissions
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? if ynh_legacy_permissions_exists; then
|
|
|
|
#REMOVEME? ynh_legacy_permissions_delete_all
|
2022-07-19 03:18:49 +02:00
|
|
|
|
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
2022-07-19 03:18:49 +02:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
|
2022-07-19 03:18:49 +02:00
|
|
|
|
2021-03-01 09:43:17 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Deactivate cron jobs
|
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2021-03-15 23:14:42 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2021-03-01 09:43:17 +01:00
|
|
|
|
|
|
|
# Backup user contents
|
2023-04-27 09:44:41 +02:00
|
|
|
mv "$install_dir" "$install_dir.old"
|
2021-03-01 09:43:17 +01:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-04-27 09:44:41 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2021-03-01 09:43:17 +01:00
|
|
|
|
|
|
|
# Restore user contents
|
2023-04-27 09:44:41 +02:00
|
|
|
cp -a "$install_dir.old/uploads/." "$install_dir/uploads/."
|
|
|
|
cp -a "$install_dir.old/protected/runtime" "$install_dir/protected/runtime"
|
|
|
|
cp -a "$install_dir.old/protected/config/." "$install_dir/protected/config/"
|
|
|
|
cp -a "$install_dir.old/protected/modules/." "$install_dir/protected/modules/"
|
|
|
|
cp -a "$install_dir.old/themes/." "$install_dir/themes/"
|
2021-03-01 09:43:17 +01:00
|
|
|
|
|
|
|
# Delete old source
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_secure_remove --file="$install_dir.old"
|
2021-03-01 09:43:17 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
2022-07-19 03:18:49 +02:00
|
|
|
# UPGRADE DEPENDENCIES
|
2021-03-01 09:43:17 +01:00
|
|
|
#=================================================
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Upgrading dependencies..." --weight=1
|
2021-03-01 09:43:17 +01:00
|
|
|
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_install_app_dependencies $pkg_dependencies
|
2021-03-01 09:43:17 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2021-03-15 23:14:42 +01:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
|
2021-03-01 09:43:17 +01:00
|
|
|
|
|
|
|
# Create a dedicated PHP-FPM config
|
2023-01-27 18:12:14 +01:00
|
|
|
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
|
2021-03-01 09:43:17 +01:00
|
|
|
|
2022-07-19 03:18:49 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2021-03-01 09:43:17 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
2021-04-28 15:32:43 +02:00
|
|
|
#=================================================
|
|
|
|
# DEACTIVATE DEBUG MODE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_replace_string --match_string="defined('YII_DEBUG') or define('YII_DEBUG', true);"\
|
|
|
|
--replace_string="// defined('YII_DEBUG') or define('YII_DEBUG', true);"\
|
2023-04-27 09:44:41 +02:00
|
|
|
--target_file="$install_dir/index.php"
|
2021-04-28 15:32:43 +02:00
|
|
|
ynh_replace_string --match_string="defined('YII_ENV') or define('YII_ENV', 'dev');"\
|
|
|
|
--replace_string="// defined('YII_ENV') or define('YII_ENV', 'dev');"\
|
2023-04-27 09:44:41 +02:00
|
|
|
--target_file="$install_dir/index.php"
|
2021-04-28 15:32:43 +02:00
|
|
|
|
2022-08-30 00:36:35 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP APPLICATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Setuping application..." --weight=1
|
|
|
|
|
2023-04-27 09:44:41 +02:00
|
|
|
if [[ ! -d $install_dir/$HUMHUB_AUTH_BASIC_PATH ]]; then
|
2023-01-27 18:12:14 +01:00
|
|
|
install_sso
|
2022-08-30 00:36:35 +02:00
|
|
|
|
2023-04-27 09:44:41 +02:00
|
|
|
pushd $install_dir/protected
|
2023-01-27 18:12:14 +01:00
|
|
|
php$phpversion yii module/enable auth-basic
|
|
|
|
popd
|
2022-08-30 00:36:35 +02:00
|
|
|
else
|
2023-04-27 09:44:41 +02:00
|
|
|
current_version=$(cat $install_dir/$HUMHUB_AUTH_BASIC_PATH/module.json | jq -j '.version')
|
2023-01-27 18:12:14 +01:00
|
|
|
if [ "$current_version" != "$HUMHUB_AUTH_BASIC_VERSION" ]; then
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_secure_remove $install_dir/$HUMHUB_AUTH_BASIC_PATH
|
2023-01-27 18:12:14 +01:00
|
|
|
install_sso
|
|
|
|
fi
|
2022-08-30 00:36:35 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2021-03-01 09:43:17 +01:00
|
|
|
#=================================================
|
2021-03-04 18:09:37 +01:00
|
|
|
# MIGRATE DATABASE
|
2021-03-01 09:43:17 +01:00
|
|
|
#=================================================
|
2021-03-15 23:14:42 +01:00
|
|
|
ynh_script_progression --message="Migrating database..." --weight=1
|
2021-03-01 09:43:17 +01:00
|
|
|
|
2023-04-27 09:44:41 +02:00
|
|
|
chown -R $app $install_dir/
|
2021-03-15 23:29:36 +01:00
|
|
|
|
2023-04-27 09:44:41 +02:00
|
|
|
ynh_exec_as $app /usr/bin/php$phpversion $install_dir/protected/yii migrate/up --includeModuleMigrations=1 --interactive=0
|
2021-03-01 09:43:17 +01:00
|
|
|
|
|
|
|
#=================================================
|
2021-03-04 18:09:37 +01:00
|
|
|
# UPDATE MODULES
|
2021-03-01 09:43:17 +01:00
|
|
|
#=================================================
|
2021-03-15 23:14:42 +01:00
|
|
|
ynh_script_progression --message="Updating modules..." --weight=1
|
2021-03-01 09:43:17 +01:00
|
|
|
|
2023-04-27 09:44:41 +02:00
|
|
|
ynh_exec_as $app /usr/bin/php$phpversion $install_dir/protected/yii module/update-all --interactive=0
|
2022-08-30 00:36:35 +02:00
|
|
|
|
2023-04-27 09:44:41 +02:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-03-01 09:43:17 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-08-30 00:36:35 +02:00
|
|
|
# UPGRADE CRONTAB
|
2021-03-01 09:43:17 +01:00
|
|
|
#=================================================
|
2021-03-15 23:14:42 +01:00
|
|
|
ynh_script_progression --message="Upgrading crontab..." --weight=1
|
2021-03-01 09:43:17 +01:00
|
|
|
|
2021-03-04 18:09:37 +01:00
|
|
|
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/${app}"
|
2021-03-01 09:43:17 +01:00
|
|
|
|
2022-07-19 03:18:49 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2021-03-01 09:43:17 +01:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2021-03-01 09:43:17 +01:00
|
|
|
|
2023-04-27 09:44:41 +02:00
|
|
|
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
|
2021-03-01 09:43:17 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-03-15 23:14:42 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|