1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nodebb_ynh.git synced 2024-09-03 19:46:29 +02:00
nodebb_ynh/scripts/restore

121 lines
4 KiB
Text
Raw Normal View History

2017-08-17 15:17:45 +02:00
#!/bin/bash
2018-03-11 14:15:23 +01:00
#=================================================
# GENERIC START
2017-08-17 15:17:45 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-04-06 15:54:50 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2017-08-17 15:17:45 +02:00
source /usr/share/yunohost/helpers
2018-03-11 14:15:23 +01:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2021-04-06 15:54:50 +02:00
ynh_clean_setup () {
#### Remove this function if there's nothing to clean before calling the remove script.
true
}
2018-03-11 14:15:23 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-08-17 15:17:45 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2021-04-06 15:54:50 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2017-08-17 15:17:45 +02:00
app=$YNH_APP_INSTANCE_NAME
2021-04-06 15:54:50 +02:00
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)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
2017-08-17 15:17:45 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2021-04-06 15:54:50 +02:00
ynh_script_progression --message="Validating restoration parameters..." --time --weight=1
2017-08-17 15:17:45 +02:00
2021-04-06 15:54:50 +02:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
2017-08-17 15:17:45 +02:00
test ! -d $final_path \
2021-04-06 15:54:50 +02:00
|| ynh_die --message="There is already a directory: $final_path "
2017-08-17 15:17:45 +02:00
2018-03-11 14:15:23 +01:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2021-04-06 15:54:50 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2017-08-17 15:17:45 +02:00
#=================================================
2018-03-11 14:15:23 +01:00
# RESTORE THE APP MAIN DIR
2017-08-17 15:17:45 +02:00
#=================================================
2021-04-06 15:54:50 +02:00
ynh_script_progression --message="Restoring the app main directory..." --time --weight=1
2018-03-11 14:15:23 +01:00
2021-04-06 15:54:50 +02:00
ynh_restore_file --origin_path="$final_path"
2018-03-11 14:15:23 +01:00
#=================================================
# RECREATE THE DEDICATED USER
2017-08-17 15:17:45 +02:00
#=================================================
2021-04-06 15:54:50 +02:00
ynh_script_progression --message="Recreating the dedicated system user..." --time --weight=1
2017-08-17 15:17:45 +02:00
2018-03-11 14:15:23 +01:00
# Create the dedicated user (if not existing)
2021-04-06 15:54:50 +02:00
ynh_system_user_create --username=$app
2017-08-17 15:17:45 +02:00
#=================================================
2018-03-11 14:15:23 +01:00
# RESTORE USER RIGHTS
2017-08-17 15:17:45 +02:00
#=================================================
2018-03-11 14:15:23 +01:00
# Restore permissions on app files
chown -R $app:$app $final_path
2017-08-17 15:17:45 +02:00
#=================================================
2018-03-11 14:15:23 +01:00
# RESTORE THE MYSQL DATABASE
2017-08-17 15:17:45 +02:00
#=================================================
2018-03-11 14:15:23 +01:00
pushd $final_path
2021-04-06 15:56:28 +02:00
datebackup=$(ynh_app_setting_get $app datebackup)
mongorestore mongo_backup$datebackup/
ynh_secure_remove mongo_backup$datebackup/
2018-03-11 14:15:23 +01:00
popd
2017-08-17 15:17:45 +02:00
#=================================================
2018-03-11 14:15:23 +01:00
# ADVERTISE SERVICE IN ADMIN PANEL
2017-08-17 15:17:45 +02:00
#=================================================
2018-03-11 14:15:23 +01:00
yunohost service add $app --log "/var/log/$app/APP.log"
2017-08-17 15:17:45 +02:00
#=================================================
# INSTALL NODEJS
#=================================================
2018-03-11 14:15:23 +01:00
2017-08-17 15:17:45 +02:00
ynh_install_nodejs $NODEJS_VERSION
#=================================================
2018-03-11 14:15:23 +01:00
# RESTORE SYSTEMD
2017-08-17 15:17:45 +02:00
#=================================================
2018-03-11 14:15:23 +01:00
ynh_restore_file "/etc/systemd/system/$app.service"
systemctl enable $app.service
systemctl start $app
#=================================================
2021-04-06 15:54:50 +02:00
# GENERIC FINALIZATION
2018-03-11 14:15:23 +01:00
#=================================================
2021-04-06 15:54:50 +02:00
# RELOAD NGINX AND PHP-FPM
#=================================================
ynh_script_progression --message="Reloading NGINX web server..." --time --weight=1
2018-03-11 14:15:23 +01:00
2021-04-06 15:54:50 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2018-03-11 14:15:23 +01:00
2017-08-17 15:17:45 +02:00
#=================================================
2021-04-06 15:54:50 +02:00
# END OF SCRIPT
2017-08-17 15:17:45 +02:00
#=================================================
2021-04-06 15:54:50 +02:00
ynh_script_progression --message="Restoration completed for $app" --time --last