1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/webtrees_ynh.git synced 2024-09-03 18:26:37 +02:00
webtrees_ynh/scripts/upgrade

125 lines
3.2 KiB
Text
Raw Normal View History

2017-07-02 12:41:05 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-07-02 12:41:05 +02:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2018-09-01 18:12:10 +02:00
2017-07-02 12:41:05 +02:00
app=$YNH_APP_INSTANCE_NAME
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
path_url=$(ynh_app_setting_get "$app" path)
2017-07-02 12:41:05 +02:00
is_public=$(ynh_app_setting_get "$app" is_public)
2018-09-01 18:12:10 +02:00
final_path=$(ynh_app_setting_get $app final_path)
2017-08-02 10:24:39 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2018-09-01 18:12:10 +02:00
# Fix is_public as a boolean value
if [ "$is_public" = "Yes" ]; then
2018-09-01 18:12:10 +02:00
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
2018-09-01 18:12:10 +02:00
# If db_name doesn't exist, create it
if [ -z $db_name ]; then
db_name=$(ynh_sanitize_dbid $app)
ynh_app_setting_set $app db_name $db_name
fi
2018-09-01 18:12:10 +02:00
# 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
#=================================================
# 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
#=================================================
# CHECK THE PATH
#=================================================
2017-07-02 12:41:05 +02:00
# Normalize the URL path syntax
path_url=$(ynh_normalize_url_path $path_url)
# Move old app dir
sudo mv ${final_path} ${final_path}.old
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source "$final_path"
2017-07-02 12:41:05 +02:00
# restore data
sudo cp -a ${final_path}.old/data ${final_path}
2017-07-02 12:41:05 +02:00
# delete temp directory
sudo rm -Rf ${final_path}.old
2017-07-02 12:41:05 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
2018-09-01 18:12:10 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
# Create a dedicated user (if not existing)
ynh_system_user_create $app
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2017-07-02 12:41:05 +02:00
2018-09-01 18:12:10 +02:00
# Create a dedicated php-fpm config
ynh_add_fpm_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions on app files
chown -R $app: $final_path
sudo chmod -R 777 $final_path/data
2017-07-02 12:41:05 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway
ynh_app_setting_set $app unprotected_uris "/"
fi
#=================================================
# RELOAD NGINX
#=================================================
systemctl reload nginx