2016-09-11 10:16:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-02-17 19:28:37 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2019-02-17 19:28:37 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2016-09-11 10:16:37 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-10-17 19:45:45 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path_url=$(ynh_app_setting_get $app path)
|
|
|
|
is_public=$(ynh_app_setting_get $app is_public)
|
|
|
|
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
|
|
|
|
#=================================================
|
|
|
|
|
2017-09-11 22:00:57 +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 "
|
2017-06-03 18:13:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-02-17 19:28:37 +01:00
|
|
|
# STANDARD RESTORATION STEPS
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
2019-02-17 19:28:37 +01:00
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-06-03 18:13:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-02-17 19:28:37 +01:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
ynh_restore_file "$final_path"
|
2017-11-19 19:10:47 +01:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
2019-02-17 19:28:37 +01:00
|
|
|
# RESTORE THE MYSQL DATABASE
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
|
2019-02-17 19:28:37 +01:00
|
|
|
ynh_mysql_setup_db $db_name $db_name $db_pwd
|
2017-06-03 18:13:29 +02:00
|
|
|
ynh_mysql_connect_as $db_name $db_pwd $db_name < ./db.sql
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
2019-02-17 19:28:37 +01:00
|
|
|
# RECREATE THE DEDICATED USER
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2019-02-17 19:28:37 +01:00
|
|
|
# Create the dedicated user (if not existing)
|
|
|
|
ynh_system_user_create $app
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
2019-02-17 19:28:37 +01:00
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2019-02-17 19:28:37 +01:00
|
|
|
ynh_restore_file "/etc/php/7.0/fpm/pool.d/$app.conf"
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-18 18:24:10 +02:00
|
|
|
#=================================================
|
2019-02-17 19:28:37 +01:00
|
|
|
# RESTORE THE FAIL2BAN CONFIGURATION
|
2017-06-18 18:24:10 +02:00
|
|
|
#=================================================
|
2019-02-17 19:30:01 +01:00
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
ynh_restore_file "/etc/fail2ban/jail.d/$app.conf"
|
|
|
|
ynh_restore_file "/etc/fail2ban/filter.d/$app.conf"
|
2018-03-08 19:08:15 +01:00
|
|
|
|
|
|
|
touch "/var/log/${app}FailedLogins.log"
|
|
|
|
chown $app: "/var/log/${app}FailedLogins.log"
|
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
systemctl restart fail2ban
|
2017-06-18 18:24:10 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
2019-02-17 19:28:37 +01:00
|
|
|
# SPECIFIC RESTORATION
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# The data directory will be restored only if it exists in the backup archive
|
|
|
|
# So only if it was backup previously.
|
|
|
|
if [ -d "$YNH_BACKUP_DIR/apps/$app/backup/home/yunohost.app/${app}/upload" ]
|
|
|
|
then
|
|
|
|
ynh_restore_file "/home/yunohost.app/${app}/upload"
|
|
|
|
else
|
|
|
|
# Create app folders
|
|
|
|
mkdir -p "/home/yunohost.app/${app}/upload"
|
|
|
|
fi
|
|
|
|
# Create temporary data folder
|
|
|
|
mkdir -p /home/yunohost.app/${app}/_data
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE USER RIGHTS
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2019-02-17 19:28:37 +01:00
|
|
|
chown -R $app: $final_path
|
|
|
|
chown -R $app: /home/yunohost.app/${app}
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2017-02-08 18:32:46 +01:00
|
|
|
|
2019-02-17 19:30:01 +01:00
|
|
|
systemctl reload php7.0-fpm
|
2017-09-11 22:00:57 +02:00
|
|
|
systemctl reload nginx
|
2019-02-17 19:28:37 +01:00
|
|
|
|