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

166 lines
5.7 KiB
Text
Raw 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
#=================================================
2024-06-06 12:01:55 +02:00
#REMOVEME? old_domain=$YNH_APP_OLD_DOMAIN
#REMOVEME? old_path=$YNH_APP_OLD_PATH
2017-12-05 19:39:20 +01:00
2024-06-06 12:01:55 +02:00
#REMOVEME? new_domain=$YNH_APP_NEW_DOMAIN
#REMOVEME? new_path=$YNH_APP_NEW_PATH
2017-12-05 19:39:20 +01:00
2024-06-06 12:01:55 +02:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2017-12-05 19:39:20 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2024-06-06 12:01:55 +02:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..."
2017-12-05 19:39:20 +01:00
2024-06-06 12:01:55 +02:00
#REMOVEME? # Needed for helper "ynh_add_nginx_config"
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
2017-12-05 19:39:20 +01:00
2024-06-06 12:01:55 +02:00
#REMOVEME? 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"
2024-06-06 12:01:55 +02:00
#REMOVEME?
path=$old_path
2018-07-13 17:36:34 +02:00
domain=$old_domain
ynh_maintenance_mode_ON
2022-03-18 22:47:33 +01:00
#=================================================
# BACKUP BEFORE CHANGE URL THEN ACTIVE TRAP
#=================================================
2024-06-06 12:01:55 +02:00
#REMOVEME? ynh_script_progression --message="Backing up the app before changing its URL (may take a while)..."
2022-03-18 22:47:33 +01:00
# Backup the current version of the app
2024-06-06 12:01:55 +02:00
#REMOVEME? ynh_backup_before_upgrade
#REMOVEME? ynh_clean_setup () {
#REMOVEME? ynh_clean_check_starting
2022-03-18 22:47:33 +01:00
# Remove the new domain config file, the remove script won't do it as it doesn't know yet its location.
2024-06-06 12:01:55 +02:00
#REMOVEME? ynh_secure_remove --file="/etc/nginx/conf.d/$new_domain.d/$app.conf"
2022-03-18 22:47:33 +01:00
# Restore it if the upgrade fails
2024-06-06 12:01:55 +02:00
#REMOVEME? ynh_restore_upgradebackup
2022-03-18 22:47:33 +01:00
}
# Exit if an error occurs during the execution of the script
2024-06-06 12:01:55 +02:00
#REMOVEME? ynh_abort_if_errors
2022-03-18 22:47:33 +01:00
2017-12-05 19:39:20 +01:00
#=================================================
# CHECK WHICH PARTS SHOULD BE CHANGED
#=================================================
2024-06-06 12:01:55 +02:00
#REMOVEME? change_domain=0
#REMOVEME? if [ "$old_domain" != "$new_domain" ]
2017-12-05 19:39:20 +01:00
then
2024-06-06 12:01:55 +02:00
#REMOVEME? change_domain=1
2017-12-05 19:39:20 +01:00
fi
2024-06-06 12:01:55 +02:00
#REMOVEME? change_path=0
#REMOVEME? if [ "$old_path" != "$new_path" ]
2017-12-05 19:39:20 +01:00
then
2024-06-06 12:01:55 +02:00
#REMOVEME? change_path=1
2017-12-05 19:39:20 +01:00
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
2024-06-06 12:01:55 +02:00
ynh_change_url_nginx_config
#REMOVEME? nginx_conf_path=/etc/nginx/conf.d/$old_domain.d/$app.conf
2017-12-05 19:39:20 +01:00
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
2024-06-06 12:01:55 +02:00
#REMOVEME? ynh_backup_if_checksum_is_different --file="$nginx_conf_path"
2022-03-18 22:47:33 +01:00
# Set global variables for NGINX helper
2024-06-06 12:01:55 +02:00
#REMOVEME? domain="$old_domain"
#REMOVEME? path="$new_path"
2022-03-18 22:47:33 +01:00
# Create a dedicated NGINX config
2024-06-06 12:01:55 +02:00
#REMOVEME? 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
2024-06-06 12:01:55 +02:00
#REMOVEME? ynh_delete_file_checksum --file="$nginx_conf_path"
#REMOVEME? 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
2024-06-06 12:01:55 +02:00
#REMOVEME? 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
#=================================================
2022-03-18 22:47:33 +01:00
ynh_replace_string --match_string="^base_prefix = $old_path.*" --replace_string="base_prefix = ${new_path%/}/" --target_file="/etc/$app/config"
2017-12-05 19:39:20 +01:00
if [ $infcloud -eq 1 ]; then
2024-06-06 12:01:55 +02:00
ynh_replace_string --match_string="href: 'https://$old_domain$old_path'," --replace_string="href: 'https://$new_domain${new_path%/}/'," --target_file="$install_dir/infcloud/config.js"
2017-12-05 19:39:20 +01:00
fi
#=================================================
# UPDATE SSOWAT
#=================================================
if [ $infcloud -eq 1 ]
2019-01-18 21:12:58 +01:00
then
2019-01-30 19:16:04 +01:00
ynh_script_progression --message="Reconfigure SSOwat"
2019-01-18 21:12:58 +01:00
# Add /infcloud to the path of radicale to access it from the portal
2017-12-05 19:39:20 +01:00
echo "sudo yunohost --verbose app setting $app path -v \"${new_path%/}/infcloud\"; sudo yunohost app ssowatconf" | at now + 1 min >&2
domain_regex=$(echo "$new_domain" | sed 's@-@.@g')
2019-01-18 21:12:58 +01:00
# Radicale is always accessible (For access to ressources)
2024-06-06 12:01:55 +02:00
#REMOVEME? ynh_app_setting_set --app=$app --key=skipped_regex --value="$domain_regex$new_path"
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
ynh_systemd_action --service_name=uwsgi --action="restart"
2017-12-05 19:39:20 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2024-06-06 12:01:55 +02:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..."
2017-12-05 19:39:20 +01:00
2024-06-06 12:01:55 +02:00
#REMOVEME? #REMOVEME? 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"
2024-06-06 12:01:55 +02:00
#REMOVEME?
path=$old_path
2018-08-05 19:16:26 +02:00
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"