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

198 lines
6.8 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2019-06-19 18:03:19 +02:00
source ynh_composer__2
source ynh_exec_as
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)
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
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)
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)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
# Fix is_public as a boolean value
if [ "$is_public" = "Yes" ]; then
2019-06-14 18:57:58 +02:00
ynh_app_setting_set --app=$app --key=is_public --value=1
is_public=1
elif [ "$is_public" = "No" ]; then
2019-06-14 18:57:58 +02:00
ynh_app_setting_set --app=$app --key=is_public --value=0
is_public=0
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
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2019-06-19 18:03:19 +02:00
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
#=================================================
# 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"
fi
#=================================================
2020-06-03 01:58:54 +02:00
# NGINX CONFIGURATION
#=================================================
2020-06-03 01:58:54 +02:00
ynh_script_progression --message="Upgrading nginx web server configuration..." --weight=1
2020-06-03 01:58:54 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
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
ynh_install_app_dependencies $pkg_dependencies
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2019-06-14 18:57:58 +02:00
# Create a dedicated user (if not existing)
2019-08-05 03:02:23 +02:00
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Upgrading php-fpm configuration..." --weight=1
# Create a dedicated php-fpm config
2020-06-04 14:42:34 +02:00
ynh_add_fpm_config --phpversion="$phpversion" --package="$extra_php_dependencies"
#=================================================
# SPECIFIC UPGRADE
#=================================================
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
#=================================================
# UPGRADE DRUPAL
#=================================================
2020-03-29 05:02:23 +02:00
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"
2019-08-05 03:02:23 +02:00
export PATH="$final_path/.composer/vendor/bin:$PATH"
2019-06-19 02:18:00 +02:00
2020-06-03 01:58:54 +02:00
update-alternatives --set php /usr/bin/php$phpversion
2019-08-05 03:02:23 +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 cache-clear all
2020-03-29 05:02:23 +02:00
ynh_exec_as $app env PATH=$PATH drush @$app variable-set --exact maintenance_mode 0
2019-08-05 03:02:23 +02:00
2020-06-03 01:58:54 +02:00
update-alternatives --set php /usr/bin/php${YNH_DEFAULT_PHP_VERSION}
2019-06-14 18:57:58 +02:00
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
2020-06-03 01:58:54 +02:00
ynh_script_progression --message="Storing the config file checksum..." --weight=1
2019-06-14 18:57:58 +02:00
config_file=$final_path/sites/default/settings.php
2019-06-14 18:57:58 +02:00
# Recalculate and store the checksum of the file for the next upgrade.
ynh_store_file_checksum --file="$config_file"
#=================================================
#=================================================
# GENERIC FINALIZATION
2020-03-29 05:02:23 +02:00
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2020-06-03 01:58:54 +02:00
ynh_script_progression --message="Securing files and directories..." --weight=1
2019-06-14 18:57:58 +02:00
# Set permissions on app files
2019-06-19 18:03:19 +02:00
chown -R $app: $final_path
2019-08-05 03:30:02 +02:00
mkdir -p "/home/yunohost.app/$app/data"
chown -R $app: "/home/yunohost.app/$app/data"
chmod 775 "/home/yunohost.app/$app/data"
#=================================================
# SETUP SSOWAT
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Upgrading SSOwat configuration..." --weight=1
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway
2019-06-14 18:57:58 +02:00
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
fi
#=================================================
# RELOAD NGINX
#=================================================
2020-03-29 05:02:23 +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