1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/framaforms_ynh.git synced 2024-09-03 18:36:12 +02:00
framaforms_ynh/scripts/upgrade

199 lines
6.6 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2020-03-29 05:02:23 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=2
app=$YNH_APP_INSTANCE_NAME
2019-06-14 18:57:58 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
2021-02-03 22:06:57 +01:00
admin=$(ynh_app_setting_get --app=$app --key=admin)
2022-07-29 01:12:30 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2019-06-14 18:57:58 +02:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2020-06-03 01:58:54 +02:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2021-05-15 19:19:38 +02:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2019-06-14 18:57:58 +02:00
#=================================================
# CHECK VERSION
#=================================================
2020-06-03 01:58:54 +02:00
ynh_script_progression --message="Checking version..." --weight=1
2019-06-14 18:57:58 +02:00
upgrade_type=$(ynh_check_app_version_changed)
2021-05-15 19:19:38 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=21
# 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
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2022-07-29 01:12:30 +02:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
if ! ynh_permission_exists --permission="admin"; then
# Create the required permissions
ynh_permission_create --permission="admin" --url="/admin" --allowed=$admin
fi
# If db_name doesn't exist, create it
2019-06-14 18:57:58 +02:00
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
2019-06-14 18:57:58 +02:00
if [ -z "$final_path" ]; then
final_path=/var/www/$app
2019-06-14 18:57:58 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
fi
2021-05-15 19:19:38 +02:00
# If datadir doesn't exist, create it
if [ -z "$datadir" ]; then
datadir=/home/yunohost.app/$app
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
2021-05-15 19:19:38 +02:00
fi
2021-03-23 20:51:39 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
# Create a dedicated user (if not existing)
2021-05-15 19:19:38 +02:00
ynh_system_user_create --username=$app --home_dir=$final_path
2021-03-23 20:51:39 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-06-14 18:57:58 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=9
2019-06-14 18:57:58 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path/app"
2019-06-14 18:57:58 +02:00
fi
2021-05-15 19:19:38 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2019-06-14 18:57:58 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=5
2019-06-14 18:57:58 +02:00
2022-04-17 23:18:30 +02:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
2019-06-14 18:57:58 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-10-01 22:37:20 +02:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
2020-10-01 22:37:20 +02:00
# Create a dedicated PHP-FPM config
2022-04-17 23:20:21 +02:00
ynh_add_fpm_config --usage=low --footprint=low
2022-07-29 01:12:30 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SPECIFIC UPGRADE
2021-05-15 19:19:38 +02:00
#=================================================
# CREATE DATA DIRECTORY
#=================================================
2021-05-18 02:21:01 +02:00
ynh_script_progression --message="Creating a data directory..."
2021-05-15 19:19:38 +02:00
mkdir -p $datadir
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:www-data "$datadir"
#=================================================
2019-06-19 02:18:00 +02:00
# UPGRADE COMPOSER
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Upgrading Composer..." --weight=3
2019-06-19 02:18:00 +02:00
2020-06-03 01:58:54 +02:00
ynh_install_composer --phpversion="$phpversion" --workdir="$final_path/.composer"
2019-06-19 02:18:00 +02:00
2020-06-10 02:38:55 +02:00
export PATH="$final_path/.composer/vendor/bin:$PATH"
2019-06-19 02:18:00 +02:00
#=================================================
# UPGRADE DRUPAL
#=================================================
2020-06-10 02:38:55 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading Drupal..." --weight=30
2019-06-19 02:18:00 +02:00
ynh_backup_if_checksum_is_different --file="$final_path/app/sites/default/settings.php"
2020-06-10 02:38:55 +02:00
update-alternatives --set php /usr/bin/php$phpversion
2019-08-05 03:02:23 +02:00
2020-06-10 02:38:55 +02:00
pushd "$final_path"
2022-07-29 01:12:30 +02:00
ynh_exec_as $app env PATH=$PATH drush @$app variable-set --exact maintenance_mode 1
ynh_exec_as $app env PATH=$PATH drush @$app cache-clear all
# ynh_exec_as $app env PATH=$PATH drush @$app pm-update -y drupal
# ynh_exec_as $app env PATH=$PATH drush @$app updatedb -y
ynh_exec_as $app env PATH=$PATH drush @$app cache-clear all
ynh_exec_as $app env PATH=$PATH drush @$app variable-set --exact maintenance_mode 0
2020-06-10 02:38:55 +02:00
popd
2019-08-05 03:02:23 +02:00
2020-06-10 02:38:55 +02:00
update-alternatives --set php /usr/bin/php${YNH_DEFAULT_PHP_VERSION}
fi
2019-06-14 18:57:58 +02:00
#=================================================
2021-05-15 19:19:38 +02:00
# UPDATE A CONFIG FILE
2019-06-14 18:57:58 +02:00
#=================================================
2021-05-15 19:19:38 +02:00
ynh_script_progression --message="Updating a configuration file..."
2021-05-15 19:19:38 +02:00
chmod 600 "$final_path/app/sites/default/settings.php"
chown $app:$app "$final_path/app/sites/default/settings.php"
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2020-10-01 22:37:20 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2019-06-14 18:57:58 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-06-14 18:57:58 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last