1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/paperless-ngx_ynh.git synced 2024-09-03 19:56:33 +02:00
paperless-ngx_ynh/scripts/restore

171 lines
6.5 KiB
Text
Raw Normal View History

2022-03-29 11:08:51 +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 ../settings/scripts/_common.sh
2022-12-30 12:24:18 +01:00
source ../settings/scripts/ynh_redis
2022-03-29 11:08:51 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading additionnal settings..." --weight=1
2022-12-30 12:24:18 +01:00
redis_db=$(ynh_redis_get_free_db)
ynh_app_setting_set --app=$app --key=redis_db --value=$redis_db
2022-03-29 11:08:51 +02:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2022-03-29 11:08:51 +02:00
ynh_restore_file --origin_path="$install_dir"
2022-03-29 11:08:51 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
2022-03-29 11:08:51 +02:00
#=================================================
# RESTORE THE DATA DIRECTORY
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Restoring the data directory..." --weight=1
2022-03-29 11:08:51 +02:00
ynh_restore_file --origin_path="$data_dir" --not_mandatory
2022-03-29 11:08:51 +02:00
mkdir -p "$data_dir/consume"
mkdir -p "$data_dir/data"
mkdir -p "$data_dir/media"
2022-12-30 12:24:18 +01:00
chmod 750 "$data_dir"
chmod -R o-rwx "$data_dir"
chown -R $app:$app "$data_dir"
2022-12-30 12:24:18 +01:00
#=================================================
# ADD A CONFIGURATION
#=================================================
ynh_script_progression --message="Adding a configuration file..." --weight=1
ynh_add_config --template="../settings/conf/paperless.conf.example" --destination="$install_dir/paperless.conf"
2022-12-30 12:24:18 +01:00
chmod 400 "$install_dir/paperless.conf"
chown $app:$app "$install_dir/paperless.conf"
2022-03-29 11:08:51 +02:00
#=================================================
# RESTORE FAIL2BAN CONFIGURATION
#=================================================
2022-12-30 12:24:18 +01:00
#ynh_script_progression --message="Restoring the Fail2Ban configuration..." --weight=1
2022-03-29 11:08:51 +02:00
2022-12-30 12:24:18 +01:00
#ynh_restore_file --origin_path="/etc/fail2ban/jail.d/$app.conf"
#ynh_restore_file --origin_path="/etc/fail2ban/filter.d/$app.conf"
#ynh_systemd_action --action=restart --service_name=fail2ban
2022-03-29 11:08:51 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
2022-12-30 12:24:18 +01:00
#=================================================
# INSTALL PYTHON DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing Python dependencies..."
pushd $install_dir
ynh_secure_remove --file="$install_dir/venv"
2022-12-30 12:24:18 +01:00
python3 -m venv venv
chown -R "$app:" "$install_dir"
2022-12-30 12:24:18 +01:00
(
source "$install_dir/venv/bin/activate"
ynh_exec_as $app $install_dir/venv/bin/pip3 install --upgrade pip setuptools wheel
ynh_exec_as $app $install_dir/venv/bin/pip3 install -r "$install_dir/requirements.txt"
2022-12-30 12:24:18 +01:00
deactivate
)
popd
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2022-03-29 11:08:51 +02:00
#=================================================
2022-03-29 17:50:14 +02:00
# RESTORE THE POSTGRESQL DATABASE
2022-03-29 11:08:51 +02:00
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Restoring the PostgresSQL database..." --weight=1
2022-03-29 11:08:51 +02:00
2022-03-29 17:50:14 +02:00
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
2022-03-29 11:08:51 +02:00
#=================================================
# RESTORE VARIOUS FILES
#=================================================
2022-12-30 12:24:18 +01:00
#ynh_script_progression --message="Restoring various files..." --weight=1
2022-03-29 11:08:51 +02:00
2022-12-30 12:24:18 +01:00
#ynh_restore_file --origin_path="/etc/$app/"
2022-03-29 11:08:51 +02:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
2022-03-29 11:08:51 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2022-12-30 19:30:56 +01:00
ynh_restore_file --origin_path="/etc/systemd/system/$app-consumer.service"
ynh_restore_file --origin_path="/etc/systemd/system/$app-scheduler.service"
ynh_restore_file --origin_path="/etc/systemd/system/$app-task-queue.service"
2022-12-30 12:24:18 +01:00
systemctl enable "$app.service" --quiet
2022-12-30 19:30:56 +01:00
systemctl enable "$app-consumer.service" --quiet
systemctl enable "$app-scheduler.service" --quiet
systemctl enable "$app-task-queue.service" --quiet
2022-03-29 11:08:51 +02:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Restoring the logrotate configuration..." --weight=1
mkdir -p "/var/log/$app"
chown -R $app: "/var/log/$app"
2022-03-29 11:08:51 +02:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-03-29 11:08:51 +02:00
2022-12-30 12:24:18 +01:00
yunohost service add "$app" --log="/var/log/$app/$app.log"
2022-12-30 19:30:56 +01:00
yunohost service add "$app-consumer" --log="/var/log/$app/$app-consumer.log"
yunohost service add "$app-scheduler" --log="/var/log/$app/$app-scheduler.log"
yunohost service add "$app-task-queue" --log="/var/log/$app/$app-task-queue.log"
2022-03-29 11:08:51 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-03-29 11:08:51 +02:00
2022-12-30 12:24:18 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2022-12-30 19:30:56 +01:00
ynh_systemd_action --service_name="$app-consumer" --action="start" --log_path="/var/log/$app/$app-consumer.log"
ynh_systemd_action --service_name="$app-scheduler" --action="start" --log_path="/var/log/$app/$app-scheduler.log"
ynh_systemd_action --service_name="$app-task-queue" --action="start" --log_path="/var/log/$app/$app-task-queue.log"
2022-03-29 11:08:51 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2022-03-29 11:08:51 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Restoration completed for $app" --last