1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tracim_ynh.git synced 2024-10-01 13:34:52 +02:00
tracim_ynh/scripts/change_url

150 lines
4.9 KiB
Text
Raw Normal View History

2022-04-06 20:56:59 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2022-04-11 16:00:33 +02:00
source ynh_supervisor
2022-04-06 20:56:59 +02:00
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
2022-04-11 16:00:33 +02:00
new_path="/"
2022-04-06 20:56:59 +02:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# LOAD SETTINGS
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Loading installation settings..."
2022-04-06 20:56:59 +02:00
# Needed for helper "ynh_add_nginx_config"
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
# Add settings here as needed by your application
2022-04-11 16:00:33 +02:00
language=$(ynh_app_setting_get --app=$app --key=language)
admin=$(ynh_app_setting_get --app=$app --key=admin)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
2022-04-12 19:29:11 +02:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2022-04-11 16:00:33 +02:00
api_key=$(ynh_app_setting_get --app=$app --key=api_key)
session_secret=$(ynh_app_setting_get --app=$app --key=session_secret)
website_title=$(ynh_app_setting_get --app=$app --key=website_title)
2022-04-13 19:31:55 +02:00
redis_db=$(ynh_app_setting_get --app=$app --key=redis_db)
2022-04-06 20:56:59 +02:00
#=================================================
# BACKUP BEFORE CHANGE URL THEN ACTIVE TRAP
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Backing up the app before changing its URL (may take a while)..."
2022-04-06 20:56:59 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2022-04-08 03:47:14 +02:00
ynh_clean_check_starting
2022-04-06 20:56:59 +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"
# 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
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Updating NGINX web server configuration..."
2022-04-06 20:56:59 +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
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
#=================================================
# SPECIFIC MODIFICATIONS
#=================================================
2022-04-11 16:00:33 +02:00
# UPDATE A CONFIG FILE
2022-04-06 20:56:59 +02:00
#=================================================
2022-04-11 16:00:33 +02:00
ynh_script_progression --message="Updating a configuration file..."
domain=$new_domain
path_url=$new_path
ynh_add_config --template="../conf/development.ini.sample" --destination="$final_path/backend/development.ini"
chmod 400 "$final_path/backend/development.ini"
chown $app:$app "$final_path/backend/development.ini"
ynh_add_config --template="../conf/configEnv.json.sample" --destination="$final_path/frontend/configEnv.json"
chmod 400 "$final_path/frontend/configEnv.json"
chown $app:$app "$final_path/frontend/configEnv.json"
2022-04-06 20:56:59 +02:00
#=================================================
# GENERIC FINALISATION
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Starting a systemd service..."
2022-04-06 20:56:59 +02:00
2022-04-08 03:47:14 +02:00
# Start a systemd service
2022-04-13 00:11:54 +02:00
ynh_systemd_action --service_name="uwsgi" --action="restart" --log_path="/var/log/uwsgi/app/$app-web.log" --line_match="spawned uWSGI"
2022-04-06 20:56:59 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2022-04-06 20:56:59 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Change of URL completed for $app"