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

150 lines
4.7 KiB
Text
Raw Normal View History

2018-02-08 11:42:15 +01:00
#!/bin/bash
2018-02-08 17:25:54 +01:00
#=================================================
2020-11-18 17:59:20 +01:00
# GENERIC STARTING
2018-02-08 17:25:54 +01:00
#=================================================
2018-02-08 11:42:15 +01:00
# IMPORT GENERIC HELPERS
2020-11-18 17:59:20 +01:00
#=================================================
source _common.sh
2018-02-08 11:42:15 +01:00
source /usr/share/yunohost/helpers
2020-11-18 17:59:20 +01:00
#=================================================
2018-02-08 11:42:15 +01:00
# RETRIEVE ARGUMENTS
2020-11-18 17:59:20 +01:00
#=================================================
2018-02-08 11:42:15 +01:00
old_domain=$YNH_APP_OLD_DOMAIN
2020-12-06 15:23:22 +01:00
old_path=$YNH_APP_OLD_PATH
new_domain=$YNH_APP_NEW_DOMAIN
new_path=$YNH_APP_NEW_PATH
2020-11-18 17:59:20 +01:00
2018-02-08 11:42:15 +01:00
app=$YNH_APP_INSTANCE_NAME
2020-12-06 15:23:22 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2020-12-29 23:53:18 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2020-12-06 15:23:22 +01:00
# Needed for helper "ynh_add_nginx_config"
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2020-12-29 23:54:49 +01:00
port=$(ynh_app_setting_get --app=$app --key=port)
2020-12-30 15:07:15 +01:00
admin=$(ynh_app_setting_get --app=$app --key=admin)
2021-11-07 12:30:23 +01:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
key=$(ynh_app_setting_get --app=$app --key=key)
2021-11-09 07:31:31 +01:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2021-11-26 12:58:39 +01:00
path_url=$(ynh_app_setting_get --app=$app --key=path)
2020-12-06 15:23:22 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2020-12-29 23:53:18 +01:00
ynh_script_progression --message="Backing up the app before changing its URL (may take a while)..." --weight=1
2020-12-06 15:23:22 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# 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
#=================================================
# 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
2018-02-08 11:42:15 +01:00
2018-02-08 17:25:54 +01:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
2020-12-06 15:23:22 +01:00
# STOP SYSTEMD SERVICE
#=================================================
2020-12-29 23:53:18 +01:00
ynh_script_progression --message="Stopping a systemd service..." --weight=2
2020-12-06 15:23:22 +01:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2020-12-29 23:53:18 +01:00
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=3
2018-02-08 17:25:54 +01:00
2020-12-06 15:23:22 +01:00
nginx_conf_path=/etc/nginx/conf.d/$old_domain.d/$app.conf
# Change the path in the NGINX config file
if [ $change_path -eq 1 ]
2018-02-08 11:42:15 +01:00
then
2020-12-06 15:23:22 +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
domain="$old_domain"
path_url="$new_path"
# Create a dedicated NGINX config
ynh_add_nginx_config
fi
# Change the domain for NGINX
if [ $change_domain -eq 1 ]
then
# Delete file checksum for the old conf file location
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
ynh_store_file_checksum --file="/etc/nginx/conf.d/$new_domain.d/$app.conf"
fi
2018-05-19 20:42:24 +02:00
2020-12-06 15:23:22 +01:00
#=================================================
# SPECIFIC MODIFICATIONS
#=================================================
if [ "$path_url" = "/" ]
then
2021-11-08 23:04:19 +01:00
url="$new_domain"
2020-12-06 15:23:22 +01:00
else
2021-11-08 23:04:19 +01:00
url="$new_domain${new_path%/}"
2018-02-08 11:42:15 +01:00
fi
2021-11-08 23:04:19 +01:00
domain=$new_domain
ynh_add_config --template="../conf/app.ini" --destination="$final_path/custom/conf/app.ini"
2018-02-08 11:42:15 +01:00
2021-11-08 23:04:19 +01:00
chmod 400 "$final_path/custom/conf/app.ini"
chown $app:$app "$final_path/custom/conf/app.ini"
2020-12-06 15:23:22 +01:00
#=================================================
# GENERIC FINALISATION
#=================================================
# START SYSTEMD SERVICE
#=================================================
2020-12-29 23:53:18 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=2
2020-12-06 15:23:22 +01:00
2021-11-07 10:35:21 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
2020-12-06 15:23:22 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2020-12-29 23:53:18 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2020-12-06 15:23:22 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2018-02-08 11:42:15 +01:00
2020-12-29 23:53:18 +01:00
ynh_script_progression --message="Change of URL completed for $app" --last