2018-04-29 13:00:03 +02:00
|
|
|
#!/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
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-06-19 18:03:19 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=2
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
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)
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2019-06-19 18:03:19 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
# 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
|
2018-04-29 13:00:03 +02:00
|
|
|
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
|
2018-04-29 13:00:03 +02:00
|
|
|
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
|
2018-04-29 13:00:03 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If final_path doesn't exist, create it
|
2019-06-14 18:57:58 +02:00
|
|
|
if [ -z "$final_path" ]; then
|
2018-04-29 13:00:03 +02:00
|
|
|
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
|
2018-04-29 13:00:03 +02:00
|
|
|
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
|
|
|
|
|
2018-04-29 13:00:03 +02:00
|
|
|
#=================================================
|
|
|
|
# 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
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
# 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
|
2020-09-22 02:05:24 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path/app"
|
2019-06-14 18:57:58 +02:00
|
|
|
fi
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-06-03 01:58:54 +02:00
|
|
|
# NGINX CONFIGURATION
|
2018-04-29 13:00:03 +02:00
|
|
|
#=================================================
|
2020-06-03 01:58:54 +02:00
|
|
|
ynh_script_progression --message="Upgrading nginx web server configuration..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
2020-06-03 01:58:54 +02:00
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
2018-04-29 13:00:03 +02:00
|
|
|
|
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
|
|
|
|
|
2018-04-29 13:00:03 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-06-19 18:03:19 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
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"
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-01 22:37:20 +02:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
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"
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
2020-09-22 02:05:24 +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"
|
|
|
|
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
|
2020-06-22 20:41:09 +02:00
|
|
|
# ynh_exec_as $app env PATH=$PATH drush @$app updatedb -y
|
2020-06-10 02:38:55 +02:00
|
|
|
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
|
|
|
|
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
|
2018-04-29 13:00:03 +02:00
|
|
|
|
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
|
2018-04-29 13:00:03 +02:00
|
|
|
|
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"
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2020-03-29 05:02:23 +02:00
|
|
|
#=================================================
|
2018-04-29 13:00:03 +02:00
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2020-06-03 01:58:54 +02:00
|
|
|
ynh_script_progression --message="Securing files and directories..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
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"
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
2018-04-29 13:00:03 +02:00
|
|
|
|
2019-06-14 18:57:58 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2018-04-29 13:00:03 +02:00
|
|
|
|
2020-03-29 05:02:23 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|