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

206 lines
6.9 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)
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2021-02-03 22:06:57 +01:00
admin=$(ynh_app_setting_get --app=$app --key=admin)
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)
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
2021-02-03 21:57:21 +01: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
#=================================================
# 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/app"
2019-06-14 18:57:58 +02:00
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
#=================================================
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
2020-06-04 22:59:34 +02:00
ynh_add_fpm_config --usage=low --footprint=low --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
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
chown -R $app: $final_path
2019-06-19 02:18:00 +02:00
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"
2021-02-03 22:42:43 +01:00
sudo -u $app env PATH=$PATH drush @$app variable-set --exact maintenance_mode 1
sudo -u $app env PATH=$PATH drush @$app cache-clear all
2021-02-03 22:42:43 +01:00
# sudo -u $app env PATH=$PATH drush @$app pm-update -y drupal
# sudo -u $app env PATH=$PATH drush @$app updatedb -y
sudo -u $app env PATH=$PATH drush @$app cache-clear all
sudo -u $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
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
2020-06-03 01:58:54 +02:00
ynh_script_progression --message="Storing the config file checksum..." --weight=1
2020-10-07 02:52:17 +02:00
config_file=$final_path/app/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"
#=================================================
# 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