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

122 lines
4.3 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-06-14 18:57:58 +02:00
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2019-06-19 18:03:19 +02:00
source ../settings/scripts/ynh_add_extra_apt_repos__3
source ../settings/scripts/ynh_install_php__3
source ../settings/scripts/ynh_composer__2
source ../settings/scripts/ynh_exec_as
2020-03-29 05:02:23 +02:00
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
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Loading settings..." --weight=1
app=$YNH_APP_INSTANCE_NAME
2019-06-14 18:57:58 +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
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Validating restoration parameters..." --weight=1
2019-06-14 18:57:58 +02:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
test ! -d $final_path \
2019-06-14 18:57:58 +02:00
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
2019-06-19 02:18:00 +02:00
# RECREATE THE DEDICATED USER
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
2019-06-19 02:18:00 +02:00
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# RESTORE ALL FILES
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Restoring all files..." --weight=1
2019-06-14 18:57:58 +02:00
ynh_restore
#=================================================
2019-06-14 18:57:58 +02:00
# RESTORE USER RIGHTS
#=================================================
2019-06-14 18:57:58 +02:00
# Restore permissions on app files
chown -R root: $final_path
2019-06-19 02:40:23 +02:00
chmod 2775 "$final_path/sites/default/files"
2019-08-05 03:11:07 +02:00
mkdir -p "/home/yunohost.app/$app/data"
chown -R $app: "/home/yunohost.app/$app/data"
chmod 775 "/home/yunohost.app/$app/data"
#=================================================
2019-06-14 18:57:58 +02:00
# SPECIFIC RESTORATION
#=================================================
2020-03-29 05:02:23 +02:00
# REINSTALL PHP7.3
#=================================================
2020-03-29 05:02:23 +02:00
if [ "$(lsb_release --codename --short)" = "buster" ]; then
pkg_dependencies="$pkg_dependencies $extra_pkg_dependencies"
else
ynh_print_info --message="Reinstalling PHP7.3..."
ynh_install_php --phpversion="7.3" --package="$extra_pkg_dependencies"
fi
2019-06-19 02:18:00 +02:00
#=================================================
2020-03-29 05:02:23 +02:00
# REINSTALL DEPENDENCIES
2019-06-19 02:18:00 +02:00
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=1
2019-06-19 02:18:00 +02:00
2020-03-29 05:02:23 +02:00
# Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies
2019-06-19 02:18:00 +02:00
#=================================================
2020-03-29 05:02:23 +02:00
# RESTORE THE POSTGRESQL DATABASE
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=1
2019-06-14 18:57:58 +02:00
ynh_psql_test_if_first_run
2019-06-19 02:18:00 +02:00
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
2019-06-14 18:57:58 +02:00
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
ynh_psql_execute_file_as_root ./db.sql "$db_name"
#=================================================
2019-06-14 18:57:58 +02:00
# GENERIC FINALIZATION
#=================================================
2019-06-14 18:57:58 +02:00
# RELOAD NGINX AND PHP-FPM
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Reloading nginx web server and php-fpm..." --weight=1
2020-03-29 05:02:23 +02:00
ynh_systemd_action --service_name=php7.3-fpm --action=reload
2019-06-14 18:57:58 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
2019-06-14 18:57:58 +02:00
# END OF SCRIPT
#=================================================
2020-03-29 05:02:23 +02:00
ynh_script_progression --message="Restoration completed for $app" --last