1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ffsync_ynh.git synced 2024-09-03 18:26:38 +02:00
ffsync_ynh/scripts/restore

116 lines
4.1 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
2020-04-16 23:33:43 +02:00
#=================================================
2022-07-28 02:38:24 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2020-04-16 23:33:43 +02:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
2020-04-16 23:33:43 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2022-07-28 02:38:24 +02:00
ynh_clean_setup () {
ynh_clean_check_starting
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2020-04-16 23:33:43 +02:00
#=================================================
# LOAD SETTINGS
2020-04-16 23:33:43 +02:00
#=================================================
2022-07-28 02:38:24 +02:00
ynh_script_progression --message="Loading installation settings..."
2020-04-16 23:33:43 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
2022-07-28 02:38:24 +02:00
path_url=$(ynh_app_setting_get --app=$app --key=path)
2020-04-16 23:33:43 +02:00
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
#=================================================
# CHECK IF THE APP CAN BE RESTORED
2020-04-16 23:33:43 +02:00
#=================================================
2022-07-28 02:38:24 +02:00
ynh_script_progression --message="Validating restoration parameters..."
2020-04-16 23:33:43 +02:00
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
2020-04-16 23:33:43 +02:00
#=================================================
# RECREATE THE DEDICATED USER
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Recreating the dedicated system user..."
2022-07-28 02:38:24 +02:00
# Create the dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
usermod --append --groups www-data "$app"
2022-07-28 02:38:24 +02:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_script_progression --message="Restoring files..." --weight=5
ynh_restore
2020-04-16 23:33:43 +02:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
ynh_script_progression --message="Restoring user rights..."
set_permissions
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Reinstalling dependencies..." --weight=5
2020-04-21 01:27:01 +02:00
# Define and install dependencies
2020-04-16 23:33:43 +02:00
ynh_install_app_dependencies $pkg_dependencies
2020-04-16 23:33:43 +02:00
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================
ynh_script_progression --message="Restoring database..." --weight=3
2020-04-21 01:27:01 +02:00
2020-04-16 23:33:43 +02:00
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
2018-07-05 23:21:03 +02:00
2020-04-16 23:33:43 +02:00
#=================================================
2022-07-28 02:38:24 +02:00
# RESTORE SYSTEMD
2020-04-16 23:33:43 +02:00
#=================================================
2022-07-28 02:38:24 +02:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=3
2018-07-05 23:21:03 +02:00
2021-03-07 17:34:59 +01:00
ynh_restore_uwsgi_service
2020-04-21 01:27:01 +02:00
2022-07-28 02:38:24 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=3
ynh_systemd_action --service_name "uwsgi-app@$app.service" --line_match "WSGI app 0 \(mountpoint='[/[:alnum:]_-]*'\) ready in [[:digit:]]* seconds on interpreter" --log_path "/var/log/uwsgi/$app/$app.log"
2020-04-16 23:33:43 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
2022-07-28 02:38:24 +02:00
# RELOAD NGINX
2020-04-16 23:33:43 +02:00
#=================================================
2022-07-28 02:38:24 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2020-04-16 23:33:43 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2022-07-28 02:38:24 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Restoration completed for $app" --last