2020-05-08 20:42:27 +02: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 /usr/share/yunohost/helpers
|
2021-02-20 19:31:31 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_clean_setup () {
|
|
|
|
#### Remove this function if there's nothing to clean before calling the remove script.
|
|
|
|
true
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-05-09 19:11:18 +02:00
|
|
|
ynh_script_progression --message="Loading settings..." --weight=1
|
2020-05-08 20:42:27 +02: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)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2021-05-09 17:08:12 +02:00
|
|
|
ynh_script_progression --message="Validating restoration parameters..." --weight=1
|
2020-05-08 20:42:27 +02: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"
|
|
|
|
|
2021-02-20 19:31:31 +01:00
|
|
|
#backup & Update nginx MIME type so wasm mime type is recognized
|
|
|
|
|
|
|
|
if [ !$(grep wasm /etc/nginx/mime.types) ]; then
|
|
|
|
ynh_print_info "/etc/nginx/mime.types saved as /etc/nginx/mime.types.$app"
|
|
|
|
cp /etc/nginx/mime.types /etc/nginx/mime.types.$app
|
|
|
|
ynh_replace_string --match_string=" application/octet-stream bin exe dll;" --replace_string=" application/wasm wasm;\n\n application/octet-stream bin exe dll;" --target_file="/etc/nginx/mime.types"
|
|
|
|
ynh_store_file_checksum --file="/etc/nginx/mime.types"
|
|
|
|
fi
|
2021-05-09 11:52:48 +02:00
|
|
|
|
|
|
|
|
2020-05-08 20:42:27 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2021-05-09 17:08:12 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE USER RIGHTS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Restore permissions on app files
|
2021-05-10 23:19:36 +02:00
|
|
|
chown -R www-data: $final_path
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
|
|
|
#=================================================
|
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2021-05-09 17:08:12 +02:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=5
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
# Define and install dependencies
|
2021-02-20 19:31:31 +01:00
|
|
|
#Dependencies are not really required as this is just to unzip the 7z file
|
2021-05-09 14:04:51 +02:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2021-02-20 19:31:31 +01:00
|
|
|
#However, npm IS required to run the coffeescript
|
2021-05-09 11:52:48 +02:00
|
|
|
ynh_install_nodejs --nodejs_version=10
|
2021-05-09 11:19:10 +02:00
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_npm install -g coffeescript
|
|
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
#SETTING MULTIMEDIA DIRECTORY
|
|
|
|
#=================================================
|
2021-05-09 17:08:12 +02:00
|
|
|
ynh_script_progression --message="Setting up Multimedia directory..." --weight=5
|
2021-05-09 11:19:10 +02:00
|
|
|
|
|
|
|
ynh_multimedia_build_main_dir
|
2021-05-09 17:08:12 +02:00
|
|
|
mkdir -p $final_path/assets/cores/Game
|
|
|
|
ynh_multimedia_addfolder --source_dir="$final_path/assets/cores/Game" --dest_dir="/share/Game"
|
2021-05-09 17:36:41 +02:00
|
|
|
ynh_add_config --template="../conf/README.GAME" --destination="$final_path/assets/cores/Game/README"
|
|
|
|
chmod 666 $final_path/assets/cores/Game/README
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE CRON FILE
|
|
|
|
#=================================================
|
|
|
|
|
2021-05-09 11:52:48 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/cron.d/$app"
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2021-05-09 17:08:12 +02:00
|
|
|
ynh_script_progression --message="Reloading nginx web server..." --weight=1
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-05-09 17:08:12 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|