1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mygpo_ynh.git synced 2024-09-03 19:55:52 +02:00
mygpo_ynh/scripts/change_url

127 lines
4.4 KiB
Text
Raw Normal View History

2017-06-02 18:46:29 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-06-05 13:06:12 +02:00
source _common.sh
2017-06-02 18:46:29 +02:00
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS
#=================================================
2017-06-02 18:46:29 +02:00
old_domain=$YNH_APP_OLD_DOMAIN
old_path=$YNH_APP_OLD_PATH
2017-06-02 18:46:29 +02:00
new_domain=$YNH_APP_NEW_DOMAIN
new_path="/"
2017-06-02 18:46:29 +02:00
app=$YNH_APP_INSTANCE_NAME
2018-07-17 00:20:13 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2018-07-17 00:20:13 +02:00
get_app_settings
2018-07-17 00:20:13 +02:00
2019-06-19 16:23:55 +02:00
#=================================================
# BACKUP BEFORE CHANGE URL THEN ACTIVE TRAP
2019-06-19 16:23:55 +02:00
#=================================================
ynh_script_progression --message="Backing up the app before changing its URL (may take a while)..."
2019-06-19 16:23:55 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2022-06-20 23:52:21 +02:00
ynh_clean_check_starting
2019-06-19 16:23:55 +02:00
# 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"
2020-08-02 16:00:17 +02:00
# Restore it if the upgrade fails
2019-06-19 16:23:55 +02:00
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-06-02 18:46:29 +02:00
#=================================================
# CHECK WHICH PARTS SHOULD BE CHANGED
#=================================================
2017-06-02 18:46:29 +02:00
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
2017-06-02 18:46:29 +02:00
#=================================================
# STANDARD MODIFICATIONS
2019-05-02 20:44:22 +02:00
#=================================================
# STOP SYSTEMD SERVICES
2019-05-02 20:44:22 +02:00
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Stopping systemd services..." --weight=1
2019-05-02 20:44:22 +02:00
2021-03-15 01:36:28 +01:00
ynh_systemd_action --service_name=$app-celery --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app-beat --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app.socket --action="stop" --log_path="/var/log/$app/$app.log"
2019-05-02 20:44:22 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
2017-06-02 18:46:29 +02:00
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
2017-06-02 18:46:29 +02:00
nginx_conf_path=/etc/nginx/conf.d/$old_domain.d/$app.conf
2020-08-02 15:41:28 +02:00
# Change the domain for NGINX
2017-06-02 18:46:29 +02:00
if [ $change_domain -eq 1 ]
then
# Delete file checksum for the old conf file location
2019-04-16 00:32:39 +02:00
ynh_delete_file_checksum --file="$nginx_conf_path"
mv $nginx_conf_path /etc/nginx/conf.d/$new_domain.d/$app.conf
# Store file checksum for the new config file location
2019-04-16 00:32:39 +02:00
ynh_store_file_checksum --file="/etc/nginx/conf.d/$new_domain.d/$app.conf"
2017-06-02 18:46:29 +02:00
fi
#=================================================
# SPECIFIC MODIFICATIONS
#=================================================
2021-03-15 01:36:28 +01:00
echo $new_domain > $final_path/envs/prod/DEFAULT_BASE_URL
echo "$app@$new_domain" > $final_path/envs/prod/DEFAULT_FROM_EMAIL
echo "$app@$new_domain" > $final_path/envs/prod/SERVER_EMAIL
2017-06-02 18:46:29 +02:00
set_permissions
2017-06-02 18:46:29 +02:00
#=================================================
# GENERIC FINALISATION
2019-05-02 20:44:22 +02:00
#=================================================
# START SYSTEMD SERVICES
2019-05-02 20:44:22 +02:00
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Starting systemd services..." --weight=1
2019-05-02 20:44:22 +02:00
ynh_systemd_action --service_name=$app.socket --action="start" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
2021-03-15 01:36:28 +01:00
ynh_systemd_action --service_name=$app-celery --action="start" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app-beat --action="start" --log_path="/var/log/$app/$app.log"
2019-05-02 20:44:22 +02:00
2017-06-02 18:46:29 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2017-06-02 18:46:29 +02:00
2019-04-18 19:58:47 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-10 15:02:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Change of URL completed for $app" --last