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

154 lines
5.1 KiB
Text
Raw Normal View History

#!/bin/bash
2018-03-13 21:49:11 +01:00
#=================================================
2021-07-12 12:16:32 +02:00
# GENERIC START
2018-03-13 21:49:11 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-02-06 23:40:55 +01:00
source _common.sh
2021-07-12 12:16:32 +02:00
source /usr/share/yunohost/helpers
2018-03-13 21:49:11 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2021-07-12 12:11:43 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2017-02-06 23:40:55 +01:00
2021-07-12 12:11:43 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
admin=$(ynh_app_setting_get --app=$app --key=admin)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
prefix=$(ynh_app_setting_get $app prefix)
2018-03-13 21:49:11 +01:00
#=================================================
# CHECK VERSION
#=================================================
2021-07-12 12:11:43 +02:00
upgrade_type=$(ynh_check_app_version_changed)
2018-03-13 21:49:11 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2021-07-12 12:11:43 +02:00
ynh_script_progression --message="Backing up $app before upgrading (may take a while)..." --weight=7
2018-03-13 21:49:11 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2021-07-12 12:11:43 +02:00
# restore it if the upgrade fails
ynh_restore_upgradebackup
2018-03-13 21:49:11 +01:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
2021-07-12 12:11:43 +02:00
# ENSURE DOWNWARD COMPATIBILITY
2018-03-13 21:49:11 +01:00
#=================================================
2021-07-12 12:16:32 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2021-07-12 12:11:43 +02:00
# If db_name doesn't exist, create it
2021-07-12 14:06:32 +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
2021-07-12 12:11:43 +02:00
# If final_path doesn't exist, create it
2021-07-12 14:06:32 +02:00
if [ -z "$final_path" ]; then
final_path=/var/www/$app
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
fi
2021-07-12 12:11:43 +02:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
2018-03-13 21:49:11 +01:00
2021-07-12 12:11:43 +02:00
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
# Create a permission if needed
if ! ynh_permission_exists --permission="api"; then
ynh_permission_create --permission="api" --url="/api" --allowed="visitors" --show_tile="false" --protected="true"
fi
2018-03-13 21:49:11 +01:00
2021-07-12 12:39:21 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
2018-03-13 21:49:11 +01:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-07-12 13:29:21 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2021-07-12 13:54:37 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2018-03-13 21:49:11 +01:00
2021-07-12 13:29:21 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path" --keep="$final_path/plugins/* $final_path/application/config/config.php $final_path/upload"
fi
2021-07-12 13:10:03 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2021-07-12 14:21:39 +02:00
chmod 755 "$final_path/tmp"
chmod 755 "$final_path/upload"
chmod 755 "$final_path/application/config/"
2021-07-12 13:10:03 +02:00
2018-03-13 21:49:11 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-07-12 12:11:43 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2018-03-13 21:49:11 +01:00
2021-07-12 12:11:43 +02:00
# Create a dedicated NGINX config
2018-03-13 21:49:11 +01:00
ynh_add_nginx_config
#=================================================
2021-07-12 12:39:21 +02:00
# UPGRADE DEPENDENCIES
2018-03-13 21:49:11 +01:00
#=================================================
2021-07-12 12:44:16 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2018-03-13 21:49:11 +01:00
2021-07-12 12:39:21 +02:00
ynh_install_app_dependencies $pkg_dependencies
2018-03-13 21:49:11 +01:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2021-07-12 12:11:43 +02:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
2018-03-13 21:49:11 +01:00
2021-07-12 12:11:43 +02:00
# Create a dedicated PHP-FPM config
ynh_add_fpm_config
2018-03-13 21:49:11 +01:00
#=================================================
# UPGRADE DB
#=================================================
2017-02-06 23:40:55 +01:00
# Migrate DB
2021-07-12 14:06:32 +02:00
ynh_exec_as "$app" php $final_path/application/commands/console.php updatedb
2021-07-12 12:11:43 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2021-07-12 12:16:32 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-07-12 12:11:43 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-07-12 12:16:32 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last