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
|
|
|
|
#=================================================
|
2022-03-24 21:01:11 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2021-03-19 19:47:11 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
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)
|
2022-03-26 13:57:24 +01:00
|
|
|
sub_folder=$(ynh_app_setting_get --app=$app --key=sub_folder)
|
2021-03-19 19:47:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2022-03-24 21:01:11 +01:00
|
|
|
ynh_script_progression --message="Validating restoration parameters..."
|
2021-03-19 19:47:11 +01:00
|
|
|
|
2022-03-28 08:17:46 +02:00
|
|
|
test -e "$(ynh_app_setting_get --app=$app_id --key=final_path)" || ynh_die --message="You don't have installed $app_id before installing this app"
|
2022-03-24 21:01:11 +01:00
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
2021-03-19 19:47:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2022-03-24 21:01:11 +01:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..."
|
2021-03-19 19:47:11 +01:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="$final_path"
|
|
|
|
|
2022-03-24 21:01:11 +01:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app_id:www-data "$final_path"
|
2021-03-19 19:47:11 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-24 21:01:11 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app"
|