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

134 lines
4.1 KiB
Text
Raw Normal View History

2014-08-18 18:37:19 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2014-08-18 18:37:19 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-06 13:40:41 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=2
app=$YNH_APP_INSTANCE_NAME
2019-05-06 13:40:41 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2019-05-06 13:40:41 +02:00
ynh_script_progression --message="Ensuring downward compatibility..."
2020-03-30 13:00:23 +02:00
# Cleaning legacy permissions
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
skipped_uris=$(ynh_app_setting_get --app=$app --key=skipped_uris)
2020-03-30 13:00:23 +02:00
unprotected_uris=$(ynh_app_setting_get --app=$app --key=unprotected_uris)
protected_uris=$(ynh_app_setting_get --app=$app --key=protected_uris)
2020-03-30 13:00:23 +02:00
# Remove is_public if exists
if [ ! -z "$is_public" ]; then
ynh_app_setting_delete --app=$app --key=is_public
fi
# Remove skipped_uris if exists
if [ ! -z "$skipped_uris" ]; then
2020-03-30 13:00:23 +02:00
ynh_app_setting_delete --app=$app --key=skipped_uris
fi
# Remove unprotected_uris if exists
if [ ! -z "$unprotected_uris" ]; then
ynh_app_setting_delete --app=$app --key=unprotected_uris
fi
# Remove protected_uris if exists
if [ ! -z "$protected_uris" ]; then
ynh_app_setting_delete --app=$app --key=protected_uris
fi
# If final_path doesn't exist, create it
2019-05-06 13:40:41 +02:00
if [ -z "$final_path" ]; then
final_path=/var/www/$app
2019-05-06 13:40:41 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
fi
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2019-05-06 13:40:41 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=5
2019-02-13 18:38:44 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2019-02-13 18:38:44 +01:00
# restore it if the upgrade fails
ynh_restore_upgradebackup
}
2019-02-13 18:38:44 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
2019-05-06 13:40:41 +02:00
path_url=$(ynh_normalize_url_path --path_url=$path_url)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# COPY SOURCES
#=================================================
2014-08-18 18:37:19 +02:00
2019-05-06 13:40:41 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..."
# Copy files to the right place
cp -a ../sources/. $final_path
fi
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-05-06 13:40:41 +02:00
ynh_script_progression --message="Upgrading nginx web server configuration..." --weight=2
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions to app files
2019-02-13 18:38:44 +01:00
chown -R root: $final_path
#=================================================
# SETUP SSOWAT
#=================================================
2019-05-06 13:40:41 +02:00
ynh_script_progression --message="Upgrading SSOwat configuration..."
#=================================================
# RELOAD NGINX
#=================================================
2019-05-06 13:40:41 +02:00
ynh_script_progression --message="Reloading nginx web server..."
2019-05-06 13:40:41 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-17 20:54:53 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-06 13:40:41 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last