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

183 lines
5.6 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-02-17 20:55:13 +01:00
ynh_print_info "Loading installation settings..."
2017-09-28 18:02:10 +02:00
app=$YNH_APP_INSTANCE_NAME
2017-09-28 18:02:10 +02:00
domain=$(ynh_app_setting_get $app domain)
path_url=$(ynh_app_setting_get $app path)
admin_user=$(ynh_app_setting_get $app admin_user)
upload_password=$(ynh_app_setting_get $app upload_password)
final_path=$(ynh_app_setting_get $app final_path)
is_public=$(ynh_app_setting_get $app is_public)
#=================================================
2019-02-17 20:55:13 +01:00
# ENSURE DOWNWARD COMPATIBILITY
2017-09-28 18:02:10 +02:00
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Ensuring downward compatibility..."
2017-09-28 18:02:10 +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:55:13 +01:00
ynh_print_info "Backing up the app before upgrading (may take a while)..."
2017-09-28 18:02:10 +02:00
2019-02-13 21:13:59 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
2017-09-28 18:02:10 +02:00
ynh_clean_setup () {
2019-02-13 21:13:59 +01:00
# restore it if the upgrade fails
ynh_restore_upgradebackup
2017-09-28 18:02:10 +02:00
}
2019-02-13 21:13:59 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-09-28 18:02:10 +02:00
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
path_url=$(ynh_normalize_url_path $path_url)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Upgrading source files..."
2017-09-28 18:02:10 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source "$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Upgrading nginx web server configuration..."
2017-09-28 18:02:10 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Making sure dedicated system user exists..."
2017-09-28 18:02:10 +02:00
2019-02-13 21:13:59 +01:00
# Create a dedicated user (if not existing)
2017-09-28 18:02:10 +02:00
ynh_system_user_create $app
2014-01-13 13:50:38 +01:00
2017-09-28 18:02:10 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Upgrading php-fpm configuration..."
2014-01-13 13:50:38 +01:00
2017-09-28 18:02:10 +02:00
# Create a dedicated php-fpm config
ynh_add_fpm_config
#=================================================
# SPECIFIC UPGRADE
#=================================================
# SET THE UPLOAD PASSWORD
#=================================================
jirafeauconfigfile="$final_path/lib/config.local.php"
2019-02-13 21:13:59 +01:00
ynh_backup_if_checksum_is_different "$final_path/lib/config.local.php"
2017-09-28 18:02:10 +02:00
2019-02-13 21:13:59 +01:00
cp "../conf/config.local.php" "$final_path/lib/config.local.php"
2017-09-28 18:02:10 +02:00
# Set and save upload password, allowing an empty one
if [ -z "$upload_password" ]
then
2019-02-13 21:13:59 +01:00
ynh_replace_string "__YNH_UPLOAD_PASSWORD__" "" "$jirafeauconfigfile"
2017-09-28 18:02:10 +02:00
ynh_app_setting_set $app upload_password ""
else
2019-02-13 21:13:59 +01:00
ynh_replace_string "__YNH_UPLOAD_PASSWORD__" "'$upload_password'" "$jirafeauconfigfile"
2017-09-28 18:02:10 +02:00
ynh_app_setting_set $app upload_password "$upload_password"
fi
2017-09-28 18:02:10 +02:00
#=================================================
# CONFIGURE JIRAFEAU
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Upgrading jirafeau configuration..."
2017-09-28 18:02:10 +02:00
var_root=/home/yunohost.app/$app
2019-02-13 21:13:59 +01:00
ynh_replace_string "__YNH_DOMAIN__" "$domain" "$jirafeauconfigfile"
2017-09-28 18:02:10 +02:00
if [ "$path_url" = "/" ]
then
2019-02-13 21:13:59 +01:00
ynh_replace_string "__YNH_WWW_PATH__" "" "$jirafeauconfigfile"
2017-09-28 18:02:10 +02:00
else
2019-02-13 21:13:59 +01:00
ynh_replace_string "__YNH_WWW_PATH__" "$path_url" "$jirafeauconfigfile"
2017-09-28 18:02:10 +02:00
fi
2019-02-13 21:13:59 +01:00
ynh_replace_string "__YNH_VAR_ROOT__" "$var_root" "$jirafeauconfigfile"
ynh_replace_string "__YNH_ADMIN_USER__" "$admin_user" "$jirafeauconfigfile"
2017-09-28 18:02:10 +02:00
2019-02-13 21:13:59 +01:00
# Recalculate and store the checksum of the file for the next upgrade.
ynh_store_file_checksum "$jirafeauconfigfile"
2017-09-28 18:02:10 +02:00
# Remove the install.php
rm $final_path/install.php
#=================================================
# GENERIC FINALISATION
#=================================================
# SECURING FILES AND DIRECTORIES
#=================================================
2019-02-13 21:13:59 +01:00
chown -R root: $final_path
2014-01-13 13:50:38 +01:00
2019-02-13 21:13:59 +01:00
mkdir -p $var_root/{files,links,async,block}
chown -R $app:root $var_root
chmod -R 700 $var_root
2014-01-13 13:50:38 +01:00
2017-09-28 18:02:10 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Upgrading SSOwat configuration..."
2017-09-28 18:02:10 +02:00
ynh_app_setting_set $app unprotected_uris "/"
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=""
ynh_app_setting_set $app protected_regex "$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
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Reloading nginx web server..."
2014-03-07 01:37:42 +01:00
2019-02-13 21:13:59 +01:00
systemctl reload nginx
2019-02-17 20:55:13 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info "Upgrade of $app completed"