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

93 lines
3.2 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
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
#=================================================
2019-06-14 18:57:58 +02:00
ynh_script_progression --message="Loading settings..." --time --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
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2019-06-14 18:57:58 +02:00
ynh_script_progression --message="Validating restoration parameters..." --time --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
#=================================================
2019-06-14 18:57:58 +02:00
ynh_script_progression --message="Restoring all files..." --time --weight=1
2019-06-14 18:57:58 +02:00
ynh_restore
#=================================================
2019-06-14 18:57:58 +02:00
# RESTORE USER RIGHTS
#=================================================
2019-06-14 18:57:58 +02:00
# Restore permissions on app files
chown -R root: $final_path
#=================================================
2019-06-14 18:57:58 +02:00
# SPECIFIC RESTORATION
#=================================================
2019-06-14 18:57:58 +02:00
# REINSTALL DEPENDENCIES
#=================================================
2019-06-14 18:57:58 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --time --weight=1
2019-06-14 18:57:58 +02:00
# Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies
#=================================================
2019-06-14 18:57:58 +02:00
# RESTORE THE DATABASE
#=================================================
2019-06-14 18:57:58 +02:00
ynh_script_progression --message="Restoring the database..." --time --weight=1
2019-06-14 18:57:58 +02:00
ynh_psql_test_if_first_run
2019-06-14 18:57:58 +02:00
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
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
#=================================================
2019-06-14 18:57:58 +02:00
ynh_script_progression --message="Reloading nginx web server and php-fpm..." --time --weight=1
2019-06-14 18:57:58 +02:00
ynh_systemd_action --service_name=php7.0-fpm --action=reload
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
2019-06-14 18:57:58 +02:00
# END OF SCRIPT
#=================================================
2019-06-14 18:57:58 +02:00
ynh_script_progression --message="Restoration completed for $app" --time --last