2017-10-30 17:52:57 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
2019-11-01 22:04:11 +01:00
# IMPORT GENERIC HELPERS
2017-10-30 17:52:57 +01:00
source /usr/share/yunohost/helpers
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2019-11-01 22:04:11 +01:00
# Import common cmd
source ../settings/scripts/experimental_helper.sh
source ../settings/scripts/_common.sh
2017-10-30 17:52:57 +01:00
2019-11-01 22:04:11 +01:00
# LOAD SETTINGS
ynh_script_progression --message="Loading settings..."
domain=$(ynh_app_setting_get --app $app --key domain)
path_url=$(ynh_app_setting_get --app $app --key path)
final_path=$(ynh_app_setting_get --app $app --key final_path)
db_name=$(ynh_app_setting_get --app $app --key db_name)
2017-10-30 17:52:57 +01:00
# CHECK IF THE APP CAN BE RESTORED
2019-11-01 22:04:11 +01:00
ynh_webpath_available --domain $domain --path_url $path_url || ynh_die --message "$domain/$path_url is not available, please use an other domain or path."
2017-10-30 17:52:57 +01:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
2018-09-05 22:35:25 +02:00
# Restore all config and data
2019-11-01 22:04:11 +01:00
ynh_script_progression --message="Restoring files..." --weight=5
2018-09-05 22:35:25 +02:00
ynh_restore
2017-10-30 17:52:57 +01:00
# RESTORE THE MYSQL DATABASE
2019-11-01 22:04:11 +01:00
ynh_script_progression --message="Restoring database..." --weight=3
db_pwd=$(ynh_app_setting_get --app $app --key mysqlpwd)
ynh_mysql_setup_db --db_user "$db_name" --db_name "$db_name" --db_pwd "$db_pwd"
ynh_mysql_connect_as --user "$db_name" --password "$db_pwd" --database "$db_name" < ./db.sql
2017-10-30 17:52:57 +01:00
# RECREATE THE DEDICATED USER
2019-11-01 22:04:11 +01:00
ynh_script_progression --message="Recreating the dedicated system user..."
ynh_system_user_create --username "$app"
usermod --append --groups www-data "$app"
2017-10-30 17:52:57 +01:00
# REINSTALL DEPENDENCIES
2019-11-01 22:04:11 +01:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=5
2019-05-08 15:02:14 +02:00
ynh_install_app_dependencies $dependances
2017-10-30 17:52:57 +01:00
2018-09-05 22:35:25 +02:00
# set authorizations
2019-11-01 22:04:11 +01:00
ynh_script_progression --message="Protecting directory..."
set_permissions
2018-07-05 23:21:03 +02:00
2019-11-01 22:04:11 +01:00
# ADVERTISE SERVICE IN ADMIN PANEL
yunohost service add "uwsgi-app@$app.service" --log "/var/log/uwsgi/app/$app"
2017-10-30 17:52:57 +01:00
2019-11-01 22:04:11 +01:00
ynh_script_progression --message="Reloading services..." --weight=3
2018-07-05 23:21:03 +02:00
2020-04-11 11:20:55 +02:00
ynh_check_global_uwsgi_config
2018-07-05 23:21:03 +02:00
systemctl enable "uwsgi-app@$app.service"
2017-10-30 17:52:57 +01:00
2019-11-01 22:04:11 +01:00
# RELOAD NGINX AND UWSGI
2018-07-05 23:21:03 +02:00
systemctl start "uwsgi-app@$app.service"
2017-10-30 17:52:57 +01:00
systemctl reload nginx
2019-11-01 22:04:11 +01:00
ynh_script_progression --message="Restoration completed for $app" --last