2018-04-29 13:00:03 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-06-14 18:57:58 +02:00
|
|
|
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
|
|
source ../settings/scripts/_common.sh
|
2019-06-19 18:03:19 +02:00
|
|
|
source ../settings/scripts/ynh_composer__2
|
|
|
|
source ../settings/scripts/ynh_exec_as
|
2020-03-29 05:02:23 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-03-29 05:02:23 +02:00
|
|
|
ynh_script_progression --message="Loading settings..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-06-14 18:57:58 +02:00
|
|
|
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)
|
|
|
|
db_user=$db_name
|
2020-06-04 00:54:26 +02:00
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
|
2020-06-03 01:58:54 +02:00
|
|
|
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2020-03-29 05:02:23 +02:00
|
|
|
ynh_script_progression --message="Validating restoration parameters..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
2019-06-14 18:57:58 +02:00
|
|
|
ynh_webpath_available --domain=$domain --path_url=$path_url \
|
|
|
|
|| ynh_die --message="Path not available: ${domain}${path_url}"
|
2018-04-29 13:00:03 +02:00
|
|
|
test ! -d $final_path \
|
2019-06-14 18:57:58 +02:00
|
|
|
|| ynh_die --message="There is already a directory: $final_path "
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
2020-06-03 01:58:54 +02:00
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
2019-06-19 02:18:00 +02:00
|
|
|
#=================================================
|
2020-10-01 22:37:20 +02:00
|
|
|
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
|
2019-06-19 02:18:00 +02:00
|
|
|
|
2020-06-03 01:58:54 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="$final_path"
|
2019-06-19 02:18:00 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-06-03 01:58:54 +02:00
|
|
|
# RECREATE THE DEDICATED USER
|
2019-06-19 02:18:00 +02:00
|
|
|
#=================================================
|
2020-06-03 01:58:54 +02:00
|
|
|
ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
2020-06-03 01:58:54 +02:00
|
|
|
# Create the dedicated user (if not existing)
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-06-14 18:57:58 +02:00
|
|
|
# RESTORE USER RIGHTS
|
2018-04-29 13:00:03 +02:00
|
|
|
#=================================================
|
2020-06-03 01:58:54 +02:00
|
|
|
ynh_script_progression --message="Restoring user rights..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
2019-06-14 18:57:58 +02:00
|
|
|
# Restore permissions on app files
|
|
|
|
chown -R root: $final_path
|
2020-10-01 22:37:20 +02:00
|
|
|
chmod 2775 "$final_path/app/sites/default/files"
|
2019-08-05 03:11:07 +02:00
|
|
|
|
|
|
|
mkdir -p "/home/yunohost.app/$app/data"
|
|
|
|
chown -R $app: "/home/yunohost.app/$app/data"
|
|
|
|
chmod 775 "/home/yunohost.app/$app/data"
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-06-03 01:58:54 +02:00
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
2018-04-29 13:00:03 +02:00
|
|
|
#=================================================
|
2020-06-03 01:58:54 +02:00
|
|
|
ynh_script_progression --message="Restoring PHP-FPM configuration..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
2020-06-04 22:59:34 +02:00
|
|
|
# Restore the file first, so it can have a backup if different
|
2020-06-03 01:58:54 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
2018-04-29 13:00:03 +02:00
|
|
|
|
2020-06-04 22:59:34 +02:00
|
|
|
# Recreate a dedicated php-fpm config
|
|
|
|
ynh_add_fpm_config --usage=low --footprint=low --package="$extra_php_dependencies"
|
2020-06-04 14:42:34 +02:00
|
|
|
|
2020-06-03 01:58:54 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
2019-06-19 02:18:00 +02:00
|
|
|
#=================================================
|
2020-03-29 05:02:23 +02:00
|
|
|
# REINSTALL DEPENDENCIES
|
2019-06-19 02:18:00 +02:00
|
|
|
#=================================================
|
2020-03-29 05:02:23 +02:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=1
|
2019-06-19 02:18:00 +02:00
|
|
|
|
2020-03-29 05:02:23 +02:00
|
|
|
# Define and install dependencies
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2019-06-19 02:18:00 +02:00
|
|
|
|
2018-04-29 13:00:03 +02:00
|
|
|
#=================================================
|
2020-03-29 05:02:23 +02:00
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
2018-04-29 13:00:03 +02:00
|
|
|
#=================================================
|
2020-06-03 13:43:21 +02:00
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=2
|
2018-04-29 13:00:03 +02:00
|
|
|
|
2019-06-14 18:57:58 +02:00
|
|
|
ynh_psql_test_if_first_run
|
|
|
|
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
|
2020-06-04 00:54:26 +02:00
|
|
|
ynh_psql_execute_file_as_root --file="./db.sql" --database="$db_name"
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-06-14 18:57:58 +02:00
|
|
|
# GENERIC FINALIZATION
|
2018-04-29 13:00:03 +02:00
|
|
|
#=================================================
|
2019-06-14 18:57:58 +02:00
|
|
|
# RELOAD NGINX AND PHP-FPM
|
2018-04-29 13:00:03 +02:00
|
|
|
#=================================================
|
2020-10-01 22:37:20 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
2020-06-03 01:58:54 +02:00
|
|
|
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
|
2019-06-14 18:57:58 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-06-14 18:57:58 +02:00
|
|
|
# END OF SCRIPT
|
2018-04-29 13:00:03 +02:00
|
|
|
#=================================================
|
|
|
|
|
2020-03-29 05:02:23 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|