2021-08-15 21:48:06 +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
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2022-03-14 03:07:20 +01:00
|
|
|
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
|
2021-08-15 21:48:06 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2022-03-14 03:07:20 +01:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
2021-08-15 21:48:06 +02:00
|
|
|
|
2024-01-08 17:50:43 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2021-08-15 21:48:06 +02:00
|
|
|
|
|
|
|
# FIXME: this should be managed by the core in the future
|
|
|
|
# Here, as a packager, you may have to tweak the ownerhsip/permissions
|
|
|
|
# such that the appropriate users (e.g. maybe www-data) can access
|
|
|
|
# files in some cases.
|
|
|
|
# But FOR THE LOVE OF GOD, do not allow r/x for "others" on the entire folder -
|
|
|
|
# this will be treated as a security issue.
|
2024-01-08 17:50:43 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2021-08-15 21:48:06 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
2022-03-14 03:07:20 +01:00
|
|
|
ynh_script_progression --message="Restoring the data directory..." --weight=5
|
2021-08-15 21:48:06 +02:00
|
|
|
|
2024-01-08 17:50:43 +01:00
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
2021-08-15 21:48:06 +02:00
|
|
|
|
2024-01-08 17:50:43 +01:00
|
|
|
mkdir -p "$data_dir"
|
2021-08-15 21:48:06 +02:00
|
|
|
|
|
|
|
# FIXME: this should be managed by the core in the future
|
|
|
|
# Here, as a packager, you may have to tweak the ownerhsip/permissions
|
|
|
|
# such that the appropriate users (e.g. maybe www-data) can access
|
|
|
|
# files in some cases.
|
|
|
|
# But FOR THE LOVE OF GOD, do not allow r/x for "others" on the entire folder -
|
|
|
|
# this will be treated as a security issue.
|
2024-01-08 17:50:43 +01:00
|
|
|
chmod 750 "$data_dir"
|
|
|
|
chmod -R o-rwx "$data_dir"
|
|
|
|
chown -R "$app:www-data" "$data_dir"
|
2021-08-15 21:48:06 +02:00
|
|
|
|
2024-04-17 18:41:30 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..."
|
|
|
|
|
|
|
|
ynh_psql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" < ./db.sql
|
|
|
|
|
2023-09-02 09:05:07 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
|
|
|
|
|
|
|
# detect_arch comes from _common.sh / personnal helpers
|
2023-09-02 19:41:15 +02:00
|
|
|
architecture="$(detect_arch)"
|
2023-09-02 09:05:07 +02:00
|
|
|
|
2023-09-05 17:05:06 +02:00
|
|
|
# compare if the system arch is different from the binary arch
|
2023-09-02 19:41:15 +02:00
|
|
|
# if so, download the correct binary
|
2024-01-08 17:50:43 +01:00
|
|
|
if [ "$architecture" != "$(file "$install_dir"/gotosocial | cut -d ',' -f 2 | tr -d ' ')" ]
|
2023-09-02 19:41:15 +02:00
|
|
|
then
|
|
|
|
ynh_script_progression --message="Migrating binary architecture..."
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2024-03-11 18:23:55 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace=1 --keep="config.yaml"
|
2023-09-02 19:41:15 +02:00
|
|
|
fi
|
2023-09-02 09:05:07 +02:00
|
|
|
|
|
|
|
# FIXME: this should be managed by the core in the future
|
|
|
|
# Here, as a packager, you may have to tweak the ownerhsip/permissions
|
|
|
|
# such that the appropriate users (e.g. maybe www-data) can access
|
|
|
|
# files in some cases.
|
|
|
|
# But FOR THE LOVE OF GOD, do not allow r/x for "others" on the entire folder _
|
|
|
|
# this will be treated as a security issue.
|
2024-01-08 17:50:43 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2023-09-02 09:05:07 +02:00
|
|
|
|
2021-08-15 21:48:06 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE VARIOUS FILES
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-28 20:00:13 +02:00
|
|
|
mkdir -p "/var/log/$app"
|
2022-03-15 03:29:42 +01:00
|
|
|
|
2021-08-15 21:48:06 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEMD
|
|
|
|
#=================================================
|
2022-03-14 03:07:20 +01:00
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
|
2021-08-15 21:48:06 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
2022-03-28 20:00:13 +02:00
|
|
|
systemctl enable "$app.service" --quiet
|
2021-08-15 21:48:06 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2022-03-14 03:07:20 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2021-08-15 21:48:06 +02:00
|
|
|
|
2022-03-28 20:00:13 +02:00
|
|
|
yunohost service add "$app" --description="Gotosocial server" --log="/var/log/$app/$app.log"
|
2021-08-15 21:48:06 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2022-03-14 03:07:20 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2021-08-15 21:48:06 +02:00
|
|
|
|
2022-03-28 20:00:13 +02:00
|
|
|
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
|
2021-08-15 21:48:06 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
2022-03-14 03:07:20 +01:00
|
|
|
ynh_script_progression --message="Restoring the logrotate configuration..." --weight=1
|
2021-08-15 21:48:06 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
|
|
|
|
2023-09-10 22:07:43 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE FAIL2BAN CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2021-08-15 21:48:06 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2022-03-14 03:08:20 +01:00
|
|
|
# RELOAD NGINX
|
2021-08-15 21:48:06 +02:00
|
|
|
#=================================================
|
2022-03-14 03:08:20 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2021-08-15 21:48:06 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-14 03:07:20 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|