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

126 lines
4.6 KiB
Text
Raw Normal View History

#!/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
#=================================================
# 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
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-03 01:58:54 +02:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Validating restoration parameters..." --weight=1
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}"
test ! -d $final_path \
2019-06-14 18:57:58 +02:00
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
2020-06-03 01:58:54 +02:00
# RESTORE THE NGINX CONFIGURATION
2019-06-19 02:18:00 +02:00
#=================================================
2020-06-03 01:58:54 +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
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"
#=================================================
2019-06-14 18:57:58 +02:00
# RESTORE USER RIGHTS
#=================================================
2020-06-03 01:58:54 +02:00
ynh_script_progression --message="Restoring user rights..." --weight=1
2019-06-14 18:57:58 +02:00
# Restore permissions on app files
chown -R root: $final_path
2019-06-19 02:40:23 +02:00
chmod 2775 "$final_path/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"
#=================================================
2020-06-03 01:58:54 +02:00
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
2020-06-03 01:58:54 +02:00
ynh_script_progression --message="Restoring PHP-FPM configuration..." --weight=1
2020-06-03 01:58:54 +02:00
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
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
#=================================================
2020-03-29 05:02:23 +02:00
# RESTORE THE POSTGRESQL DATABASE
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=1
2019-06-14 18:57:58 +02:00
ynh_psql_test_if_first_run
2019-06-19 02:18:00 +02:00
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
2019-06-14 18:57:58 +02:00
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
ynh_psql_execute_file_as_root ./db.sql "$db_name"
#=================================================
2019-06-14 18:57:58 +02:00
# GENERIC FINALIZATION
#=================================================
2019-06-14 18:57:58 +02:00
# RELOAD NGINX AND PHP-FPM
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Reloading nginx web server and php-fpm..." --weight=1
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
#=================================================
2019-06-14 18:57:58 +02:00
# END OF SCRIPT
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Restoration completed for $app" --last