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

176 lines
6.4 KiB
Text
Raw Normal View History

2023-05-26 19:09:08 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2024-01-18 13:19:08 +01:00
#REMOVEME? ynh_abort_if_errors
2023-05-26 19:09:08 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading settings..."
2024-01-18 13:19:08 +01:00
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app="$app" --key=install_dir)
#REMOVEME? public_path=$(ynh_app_setting_get --app="$app" --key=public_path)
#REMOVEME? db_name=$(ynh_app_setting_get --app="$app" --key=db_name)
#REMOVEME? db_user=$db_name
#REMOVEME? db_pwd=$(ynh_app_setting_get --app="$app" --key=psqlpwd)
2023-05-26 19:09:08 +02:00
2024-01-18 13:19:08 +01:00
#REMOVEME? domain=$(ynh_app_setting_get --app="$app" --key=domain)
#REMOVEME? path=$(ynh_app_setting_get --app="$app" --key=path)
2023-05-26 19:09:08 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2024-01-18 13:19:08 +01:00
#REMOVEME? ynh_script_progression --message="Validating restoration parameters..."
2023-05-26 19:09:08 +02:00
2024-01-18 13:19:08 +01:00
#REMOVEME? test ! -d $install_dir \
|| ynh_die --message="There is already a directory: $install_dir "
2023-05-26 19:09:08 +02:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_script_progression --message="Restoring $app main directory..."
2024-01-18 13:19:08 +01:00
ynh_restore_file --origin_path="$install_dir"
2023-05-26 19:09:08 +02:00
ynh_restore_file --origin_path="$public_path"
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2024-01-18 13:19:08 +01:00
#REMOVEME? ynh_script_progression --message="Recreating the dedicated system user..."
2023-05-26 19:09:08 +02:00
# Create the dedicated user (if not existing)
2024-01-18 13:19:08 +01:00
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir" --use_shell
2023-05-26 19:09:08 +02:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
# Restore permissions on app files
chown -R "$app:www-data" "$public_path"
2024-01-18 13:19:08 +01:00
chown -R "$app:" "$install_dir"
2023-05-26 19:09:08 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2024-01-18 13:19:08 +01:00
#REMOVEME? ynh_script_progression --message="Reinstalling dependencies..." --weight=20
2023-05-26 19:09:08 +02:00
2024-01-18 13:19:08 +01:00
#REMOVEME? ynh_exec_warn_less ynh_install_app_dependencies "$pkg_dependencies"
2023-05-26 19:09:08 +02:00
#=================================================
# PYTHON VIRTUALENV
# Maybe the backup contains a other Python version
#=================================================
ynh_script_progression --message="Recreate Python virtualenv..." --weight=5
# Always recreate everything fresh with current python version
2024-01-18 13:19:08 +01:00
ynh_secure_remove "${install_dir}/venv"
2023-05-26 19:09:08 +02:00
# Skip pip because of: https://github.com/YunoHost/issues/issues/1960
2024-01-18 13:19:08 +01:00
python3 -m venv --without-pip "${install_dir}/venv"
chown -R "$app:" "$install_dir"
2023-05-26 19:09:08 +02:00
#=================================================
# PIP INSTALLATION
#=================================================
ynh_script_progression --message="Install project via pip..." --weight=45
#run source in a 'sub shell'
(
set +o nounset
2024-01-18 13:19:08 +01:00
source "${install_dir}/venv/bin/activate"
2023-05-26 19:09:08 +02:00
set -o nounset
2024-01-18 13:19:08 +01:00
ynh_exec_as $app $install_dir/venv/bin/python3 -m ensurepip
ynh_exec_as $app $install_dir/venv/bin/pip3 install --upgrade wheel pip setuptools
ynh_exec_as $app $install_dir/venv/bin/pip3 install --no-deps -r "$install_dir/requirements.txt"
2023-05-26 19:09:08 +02:00
)
#=================================================
# RESTORE THE PostgreSQL DATABASE
#=================================================
2024-01-18 13:19:08 +01:00
#REMOVEME? ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=5
2023-05-26 19:09:08 +02:00
2024-01-18 13:19:08 +01:00
#REMOVEME? ynh_psql_test_if_first_run
#REMOVEME? ynh_psql_setup_db --db_user="$db_user" --db_name="$db_name" --db_pwd="$db_pwd"
2023-05-26 19:09:08 +02:00
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
#=================================================
# RESTORE SYSTEMD
#=================================================
ynh_script_progression --message="Restoring the systemd configuration..."
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..."
2023-05-31 18:38:14 +02:00
yunohost service add $app --description="Digital signage system for high schools" --log="${log_file}"
2023-05-26 19:09:08 +02:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
mkdir -p "$log_path"
touch "${log_file}"
chown -R "$app:" "$log_path"
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions to app files
chown -R "$app:" "$log_path"
chown -R "$app:www-data" "$public_path"
2024-01-18 13:19:08 +01:00
chown -R "$app:" "$install_dir"
2023-05-26 19:09:08 +02:00
chmod o-rwx "$log_path"
chmod o-rwx "$public_path"
2024-01-18 13:19:08 +01:00
chmod o-rwx "$install_dir"
2023-05-26 19:09:08 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# START PYINVENTORY
#=================================================
ynh_script_progression --message="Starting systemd service '$app'..." --weight=5
ynh_systemd_action --service_name="$app" --action="start"
#=================================================
# RELOAD NGINX
#=================================================
2023-05-31 18:46:06 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2023-05-26 19:09:08 +02:00
ynh_systemd_action --service_name="nginx" --action="reload"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Restoration completed for $app" --last