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

124 lines
3.9 KiB
Text
Raw Normal View History

2018-08-27 22:53:07 +02: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
#=================================================
2019-08-24 12:54:18 +02:00
ynh_script_progression --message="Loading installation settings..." --time --weight=1
2018-08-27 22:53:07 +02:00
# Needed for helper "ynh_add_nginx_config"
2019-08-24 12:54:18 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2018-08-27 22:53:07 +02:00
# Add settings here as needed by your application
2019-08-24 12:54:18 +02: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=db_pwd)
2018-08-27 22:53:07 +02: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
2019-08-24 12:54:18 +02:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --time --weight=1
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
2018-08-27 22:53:07 +02:00
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2019-08-24 12:54:18 +02:00
ynh_script_progression --message="Updating nginx web server configuration..." --time --weight=1
2018-08-27 22:53:07 +02: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 ]
then
# Make a backup of the original nginx config file if modified
2019-08-24 12:54:18 +02:00
ynh_backup_if_checksum_is_different --file="$nginx_conf_path"
2018-08-27 22:53:07 +02:00
# Set global variables for nginx helper
domain="$old_domain"
path_url="$new_path"
# Bug in Nginx with locations and aliases (see http://stackoverflow.com/a/35102259 )
if [ $path_url = "/" ]; then
2019-08-24 12:54:18 +02:00
ynh_replace_string "__PATH_HACK__" "" "../conf/nginx.conf"
2018-08-27 22:53:07 +02:00
else
2019-08-24 12:54:18 +02:00
ynh_replace_string "__PATH_HACK__" "$path_url" "../conf/nginx.conf"
2018-08-27 22:53:07 +02:00
fi
# 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
2019-08-24 12:54:18 +02:00
ynh_delete_file_checksum --file="$nginx_conf_path"
2018-08-27 22:53:07 +02:00
mv $nginx_conf_path /etc/nginx/conf.d/$new_domain.d/$app.conf
# Store file checksum for the new config file location
2019-08-24 12:54:18 +02:00
ynh_store_file_checksum --file="/etc/nginx/conf.d/$new_domain.d/$app.conf"
2018-08-27 22:53:07 +02:00
fi
#=================================================
# SPECIFIC MODIFICATIONS
#=================================================
2019-08-24 12:54:18 +02:00
# ...
2018-08-27 22:53:07 +02:00
#=================================================
#=================================================
# GENERIC FINALISATION
2019-08-24 12:54:18 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --time --weight=1
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
2018-08-27 22:53:07 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2019-08-24 12:54:18 +02:00
ynh_script_progression --message="Reloading nginx web server..." --time --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2018-08-27 22:53:07 +02:00
2019-08-24 12:54:18 +02:00
ynh_script_progression --message="Change of URL completed for $app" --time --last