2016-06-28 16:29:58 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-10-08 19:03:08 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-02-25 19:36:03 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-10-08 19:03:08 +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
|
|
|
|
#=================================================
|
2019-02-25 19:38:00 +01:00
|
|
|
ynh_print_info "Loading settings..."
|
2017-10-08 19:03:08 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path_url=$(ynh_app_setting_get $app path)
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
db_name=$(ynh_app_setting_get $app db_name)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2019-02-25 19:38:00 +01:00
|
|
|
ynh_print_info "Validating restoration parameters..."
|
2017-10-08 19:03:08 +02:00
|
|
|
|
|
|
|
ynh_webpath_available $domain $path_url \
|
|
|
|
|| ynh_die "Path not available: ${domain}${path_url}"
|
|
|
|
test ! -d $final_path \
|
|
|
|
|| ynh_die "There is already a directory: $final_path "
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2019-02-25 19:38:00 +01:00
|
|
|
ynh_print_info "Restoring the app main directory..."
|
2017-10-08 19:03:08 +02:00
|
|
|
|
|
|
|
ynh_restore_file "$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2019-02-25 19:38:00 +01:00
|
|
|
ynh_print_info "Restoring the MySQL database..."
|
2017-10-08 19:03:08 +02:00
|
|
|
|
|
|
|
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
|
|
|
|
ynh_mysql_setup_db $db_name $db_name $db_pwd
|
|
|
|
ynh_mysql_connect_as $db_name $db_pwd $db_name < ./db.sql
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RECREATE THE DEDICATED USER
|
|
|
|
#=================================================
|
2019-02-25 19:38:00 +01:00
|
|
|
ynh_print_info "Recreating the dedicated system user..."
|
2017-10-08 19:03:08 +02:00
|
|
|
|
|
|
|
# Create the dedicated user (if not existing)
|
|
|
|
ynh_system_user_create $app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE USER RIGHTS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Restore permissions on app files
|
|
|
|
chown -R $app: $final_path
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2019-02-25 19:39:14 +01:00
|
|
|
ynh_restore_file "/etc/php/7.0/fpm/pool.d/$app.conf"
|
2017-10-08 19:03:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2019-02-25 19:38:00 +01:00
|
|
|
ynh_print_info "Reloading nginx web server and php-fpm..."
|
2017-10-08 19:03:08 +02:00
|
|
|
|
2019-02-25 19:39:14 +01:00
|
|
|
systemctl reload php7.0-fpm
|
2017-10-08 19:03:08 +02:00
|
|
|
systemctl reload nginx
|
2019-02-25 19:38:00 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_print_info "Restoration completed for $app"
|