2021-03-19 19:47:11 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
# 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
#=================================================
2021-03-20 13:12:10 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2021-03-19 19:47:11 +01:00
app=$YNH_APP_INSTANCE_NAME
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)
2021-03-29 19:00:07 +02:00
app_id=$(ynh_app_setting_get --app=$app --key=app_id)
2021-03-19 19:47:11 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2021-03-20 13:12:10 +01:00
ynh_script_progression --message="Validating restoration parameters..." --weight=1
2021-03-19 19:47:11 +01:00
2021-03-30 20:50:21 +02:00
#test ! -e "/var/www/$YNH_APP_ARG_APP_ID/icecoder" || ynh_die --message="You have already restored a app instance here before restore this app instance!"
2021-03-30 20:12:16 +02:00
test -e "/var/www/$YNH_APP_ARG_APP_ID" || ynh_die --message="You don't have installed a webapp before restore this app!"
2021-03-19 19:47:11 +01:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2021-03-20 13:12:10 +01:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2021-03-19 19:47:11 +01:00
ynh_restore_file --origin_path="$final_path"
#=================================================
# RESTORE USER RIGHTS
#=================================================
2021-03-29 19:00:07 +02:00
chown -R $app_id $final_path
2021-03-19 19:47:11 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-03-20 13:12:10 +01:00
ynh_script_progression --message="Restoration completed for $app" --last