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

152 lines
5.1 KiB
Text
Raw Normal View History

2014-01-13 13:50:38 +01:00
#!/bin/bash
2017-09-28 18:02:10 +02:00
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-13 21:13:59 +01:00
source _common.sh
2017-09-28 18:02:10 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-06 14:14:36 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=2
2017-09-28 18:02:10 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-05-06 14:14:36 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
2020-11-25 12:37:08 +01:00
admin_user=$(ynh_app_setting_get --app=$app --key=admin)
2019-05-06 14:14:36 +02:00
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
upload_password=$(ynh_app_setting_get --app=$app --key=upload_password)
2022-05-23 12:39:33 +02:00
phpversion=$YNH_PHP_VERSION
2021-11-04 20:15:49 +01:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2019-05-06 14:14:36 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2017-09-28 18:02:10 +02:00
2021-11-04 20:15:49 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up Jirafeau before upgrading (may take a while)..." --weight=3
# 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
2017-09-28 18:02:10 +02:00
#=================================================
2019-02-17 20:55:13 +01:00
# ENSURE DOWNWARD COMPATIBILITY
2017-09-28 18:02:10 +02:00
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2017-09-28 18:02:10 +02:00
# If final_path doesn't exist, create it
2019-05-06 14:14:36 +02:00
if [ -z "$final_path" ]; then
2017-09-28 18:02:10 +02:00
final_path=/var/www/$app
2019-05-06 14:14:36 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2017-09-28 18:02:10 +02:00
fi
2021-11-04 20:15:49 +01: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
fi
2017-09-28 18:02:10 +02:00
#=================================================
2021-11-04 20:15:49 +01:00
# CREATE DEDICATED USER
2017-09-28 18:02:10 +02:00
#=================================================
2021-11-04 20:15:49 +01:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2017-09-28 18:02:10 +02:00
2021-11-04 20:15:49 +01:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
2017-09-28 18:02:10 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-05-06 14:14:36 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=2
# Download, check integrity, uncompress and patch the source from app.src
2022-05-23 12:39:33 +02:00
ynh_setup_source --dest_dir="$final_path" --keep="$final_path/lib/config.local.php"
# Remove the install.php
ynh_secure_remove --file=$final_path/install.php
2019-05-06 14:14:36 +02:00
fi
2017-09-28 18:02:10 +02:00
2021-11-04 20:15:49 +01:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2017-09-28 18:02:10 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
2017-09-28 18:02:10 +02:00
# Create a dedicated NGINX config
2017-09-28 18:02:10 +02:00
ynh_add_nginx_config
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=2
2014-01-13 13:50:38 +01:00
2020-10-18 19:34:39 +02:00
# Create a dedicated PHP-FPM config
2017-09-28 18:02:10 +02:00
ynh_add_fpm_config
#=================================================
2022-05-23 12:39:33 +02:00
# UPGRADE DEPENDENCIES
2017-09-28 18:02:10 +02:00
#=================================================
2022-05-23 12:39:33 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=3
2017-09-28 18:02:10 +02:00
2022-05-23 12:39:33 +02:00
ynh_install_app_dependencies $pkg_dependencies
2017-09-28 18:02:10 +02:00
2020-03-03 20:23:09 +01:00
#=================================================
# SET THE CRON FILE
#=================================================
ynh_script_progression --message="Configuring the cron file..." --weight=1
2020-03-03 20:23:09 +01:00
2021-04-11 18:58:39 +02:00
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
2021-11-04 20:15:49 +01:00
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
2014-01-13 13:50:38 +01:00
2017-09-28 18:02:10 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-02-14 11:27:24 +01:00
ynh_script_progression --message="Configuring permissions..." --weight=2
ynh_permission_update --permission="main" --add="visitors"
2017-09-28 18:02:10 +02:00
if [ $is_public -eq 0 ]
2014-01-13 13:50:38 +01:00
then
2017-09-28 18:02:10 +02:00
domain_regex=$(echo "$domain" | sed 's@-@.@g')
[ "$path_url" = "/" ] && path_url=""
2019-05-06 14:14:36 +02:00
ynh_app_setting_set --app=$app --key=protected_regex --value="$domain_regex$path_url/$","$domain_regex$path_url/admin.php.*$"
2014-01-13 13:50:38 +01:00
fi
2017-09-28 18:02:10 +02:00
#=================================================
# RELOAD NGINX
#=================================================
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2014-03-07 01:37:42 +01:00
2019-05-06 14:14:36 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-17 20:55:13 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-11-04 20:15:49 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last