1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/humhub_ynh.git synced 2024-09-03 19:26:11 +02:00
humhub_ynh/scripts/upgrade

150 lines
4.9 KiB
Text
Raw Normal View History

2016-08-21 01:03:46 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# 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
2023-12-27 18:38:29 +01:00
if [ -z "${fpm_footprint:-}" ]; then
2023-01-27 18:12:14 +01:00
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
2023-12-27 18:38:29 +01:00
if [ -z "${fpm_free_footprint:-}" ]; then
2023-01-27 18:12:14 +01:00
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
2023-12-27 18:38:29 +01:00
if [ -z "${fpm_usage:-}" ]; then
2023-01-27 18:12:14 +01:00
fpm_usage=low
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
fi
#=================================================
# 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
# Backup user contents
2023-04-27 09:44:41 +02:00
mv "$install_dir" "$install_dir.old"
# 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"
# 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/"
# Delete old source
2023-04-27 09:51:02 +02:00
ynh_secure_remove --file="$install_dir.old"
fi
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2021-03-15 23:14:42 +01:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
# 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
2022-07-19 03:18:49 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# 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-12-27 18:38:29 +01:00
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
#=================================================
# MIGRATE DATABASE
#=================================================
2021-03-15 23:14:42 +01:00
ynh_script_progression --message="Migrating database..." --weight=1
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
#=================================================
# UPDATE MODULES
#=================================================
2021-03-15 23:14:42 +01:00
ynh_script_progression --message="Updating modules..." --weight=1
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"
#=================================================
2022-08-30 00:36:35 +02:00
# UPGRADE CRONTAB
#=================================================
2021-03-15 23:14:42 +01:00
ynh_script_progression --message="Upgrading crontab..." --weight=1
2023-12-27 18:38:29 +01:00
ynh_add_config --template="cron" --destination="/etc/cron.d/${app}"
#=================================================
# END OF SCRIPT
#=================================================
2021-03-15 23:14:42 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last