2014-08-18 18:37:19 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-28 18:02:52 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2014-08-18 18:37:19 +02:00
|
|
|
|
2017-09-28 18:02:52 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-02-17 20:54:53 +01:00
|
|
|
ynh_print_info "Loading installation settings..."
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path_url=$(ynh_app_setting_get $app path)
|
|
|
|
is_public=$(ynh_app_setting_get $app is_public)
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2019-02-17 20:54:53 +01:00
|
|
|
ynh_print_info "Ensuring downward compatibility..."
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
# Fix is_public as a boolean value
|
|
|
|
if [ "$is_public" = "Yes" ]; then
|
|
|
|
ynh_app_setting_set $app is_public 1
|
|
|
|
is_public=1
|
|
|
|
elif [ "$is_public" = "No" ]; then
|
|
|
|
ynh_app_setting_set $app is_public 0
|
|
|
|
is_public=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If final_path doesn't exist, create it
|
|
|
|
if [ -z $final_path ]; then
|
|
|
|
final_path=/var/www/$app
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2019-02-17 20:54:53 +01:00
|
|
|
ynh_print_info "Backing up the app before upgrading (may take a while)..."
|
2017-09-28 18:02:52 +02:00
|
|
|
|
2019-02-13 18:38:44 +01:00
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
2017-09-28 18:02:52 +02:00
|
|
|
ynh_clean_setup () {
|
2019-02-13 18:38:44 +01:00
|
|
|
# restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
2017-09-28 18:02:52 +02:00
|
|
|
}
|
2019-02-13 18:38:44 +01:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Normalize the URL path syntax
|
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# COPY SOURCES
|
|
|
|
#=================================================
|
2019-02-17 20:54:53 +01:00
|
|
|
ynh_print_info "Upgrading source files..."
|
2014-08-18 18:37:19 +02:00
|
|
|
|
|
|
|
# Copy files to the right place
|
2017-09-28 18:02:52 +02:00
|
|
|
cp -a ../sources/. $final_path
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-02-17 20:54:53 +01:00
|
|
|
ynh_print_info "Upgrading nginx web server configuration..."
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
# 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
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2019-02-17 20:54:53 +01:00
|
|
|
ynh_print_info "Upgrading SSOwat configuration..."
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
2014-08-18 18:41:14 +02:00
|
|
|
then
|
2017-09-28 18:02:52 +02:00
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
|
|
|
ynh_app_setting_set $app skipped_uris "/"
|
2014-08-18 18:41:14 +02:00
|
|
|
fi
|
|
|
|
|
2017-09-28 18:02:52 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2019-02-17 20:54:53 +01:00
|
|
|
ynh_print_info "Reloading nginx web server..."
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
systemctl reload nginx
|
2019-02-17 20:54:53 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_print_info "Upgrade of $app completed"
|