1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/radicale_ynh.git synced 2024-09-03 20:16:14 +02:00
radicale_ynh/scripts/change_url

155 lines
4.7 KiB
Text
Raw Permalink Normal View History

2017-12-05 19:39:20 +01:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS
#=================================================
old_domain=$YNH_APP_OLD_DOMAIN
old_path=$YNH_APP_OLD_PATH
new_domain=$YNH_APP_NEW_DOMAIN
new_path=$YNH_APP_NEW_PATH
app=$YNH_APP_INSTANCE_NAME
#=================================================
# LOAD SETTINGS
#=================================================
2022-03-18 22:47:33 +01:00
ynh_script_progression --message="Loading installation settings..."
2017-12-05 19:39:20 +01:00
2022-03-18 22:47:33 +01:00
# Needed for helper "ynh_add_nginx_config"
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2022-11-22 13:40:41 +01:00
port=$(ynh_app_setting_get --app=$app --key=port)
2017-12-05 19:39:20 +01:00
2022-03-18 22:47:33 +01:00
infcloud=$(ynh_app_setting_get --app=$app --key=infcloud)
2017-12-05 19:39:20 +01:00
2018-07-13 17:36:34 +02:00
#=================================================
# ACTIVATE MAINTENANCE MODE
#=================================================
2019-01-30 19:16:04 +01:00
ynh_script_progression --message="Activate maintenance mode"
2018-07-13 17:36:34 +02:00
path_url=$old_path
domain=$old_domain
ynh_maintenance_mode_ON
2022-03-18 22:47:33 +01:00
#=================================================
# BACKUP BEFORE CHANGE URL THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up the app before changing its URL (may take a while)..."
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
ynh_clean_check_starting
# Remove the new domain config file, the remove script won't do it as it doesn't know yet its location.
ynh_secure_remove --file="/etc/nginx/conf.d/$new_domain.d/$app.conf"
# 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-12-05 19:39:20 +01:00
#=================================================
# CHECK WHICH PARTS SHOULD BE CHANGED
#=================================================
change_domain=0
if [ "$old_domain" != "$new_domain" ]
then
change_domain=1
fi
change_path=0
if [ "$old_path" != "$new_path" ]
then
change_path=1
fi
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2022-03-18 22:47:33 +01:00
ynh_script_progression --message="Updating NGINX web server configuration..."
2017-12-05 19:39:20 +01:00
nginx_conf_path=/etc/nginx/conf.d/$old_domain.d/$app.conf
2022-11-22 13:40:41 +01:00
# If path_url contains infcloud, remove it
if [[ "$path_url" =~ "/infcloud" ]]; then
path_url="${path_url%/*}"
fi
2022-03-18 22:47:33 +01:00
# Change the path in the NGINX config file
2017-12-05 19:39:20 +01:00
if [ $change_path -eq 1 ]
then
2022-03-18 22:47:33 +01:00
# Make a backup of the original NGINX config file if modified
ynh_backup_if_checksum_is_different --file="$nginx_conf_path"
# Set global variables for NGINX helper
2018-07-13 17:36:34 +02:00
domain="$old_domain"
path_url="$new_path"
2022-03-18 22:47:33 +01:00
# Create a dedicated NGINX config
2018-07-13 17:36:34 +02:00
ynh_add_nginx_config
2017-12-05 19:39:20 +01:00
fi
2022-03-18 22:47:33 +01:00
# Change the domain for NGINX
2017-12-05 19:39:20 +01:00
if [ $change_domain -eq 1 ]
then
# Delete file checksum for the old conf file location
2022-03-18 22:47:33 +01:00
ynh_delete_file_checksum --file="$nginx_conf_path"
2017-12-05 19:39:20 +01:00
mv $nginx_conf_path /etc/nginx/conf.d/$new_domain.d/$app.conf
2018-07-13 17:36:34 +02:00
# Store file checksum for the new config file location
2022-03-18 22:47:33 +01:00
ynh_store_file_checksum --file="/etc/nginx/conf.d/$new_domain.d/$app.conf"
2017-12-05 19:39:20 +01:00
fi
#=================================================
# SPECIFIC MODIFICATIONS
#=================================================
# MODIFY CONFIG FILES
#=================================================
if [ $infcloud -eq 1 ]; then
2022-03-18 22:47:33 +01:00
ynh_replace_string --match_string="href: 'https://$old_domain$old_path'," --replace_string="href: 'https://$new_domain${new_path%/}/'," --target_file="$final_path/infcloud/config.js"
2017-12-05 19:39:20 +01:00
fi
#=================================================
2022-03-18 22:47:33 +01:00
# GENERIC FINALISATION
2017-12-05 19:39:20 +01:00
#=================================================
2022-03-18 22:47:33 +01:00
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..."
2017-12-05 19:39:20 +01:00
2022-03-18 22:47:33 +01:00
# Start a systemd service
2022-11-22 13:40:41 +01:00
ynh_systemd_action --service_name=$app --action="restart"
2017-12-05 19:39:20 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2022-03-18 22:47:33 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2017-12-05 19:39:20 +01:00
2022-03-18 22:47:33 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2018-08-05 19:16:26 +02:00
#=================================================
# DEACTIVE MAINTENANCE MODE
#=================================================
2022-03-18 22:47:33 +01:00
ynh_script_progression --message="Disable maintenance mode"
2018-08-05 19:16:26 +02:00
path_url=$old_path
domain=$old_domain
ynh_maintenance_mode_OFF
2019-01-30 19:16:04 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-03-18 22:47:33 +01:00
ynh_script_progression --message="Change of URL completed for $app"