2021-03-24 22:49:07 +01: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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-09-05 14:24:10 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2022-09-04 23:58:47 +02:00
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
2021-08-19 15:58:02 +02:00
|
|
|
synapse_instance=$(ynh_app_setting_get --app=$app --key=synapse_instance)
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
2022-07-16 01:38:42 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
2022-07-16 01:38:42 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
|
|
|
|
2023-11-13 21:34:20 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2021-03-24 22:49:07 +01:00
|
|
|
|
2023-11-13 21:34:20 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R 750 "$install_dir"
|
2023-12-11 13:27:40 +01:00
|
|
|
chown -R "$app:$app" "$install_dir"
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
|
|
|
#=================================================
|
2022-09-04 23:58:47 +02:00
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
2022-09-04 23:58:47 +02:00
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=8
|
2021-04-05 15:43:02 +02:00
|
|
|
|
2023-12-11 13:27:40 +01:00
|
|
|
ynh_psql_execute_file_as_root --file="./db.sql" --database="$db_name"
|
2022-07-16 01:38:42 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
2023-12-11 13:27:40 +01:00
|
|
|
# This section has to be always above REGISTER SYNAPSE APP-SERVICE section in order to restore successfully
|
2022-09-04 23:58:47 +02:00
|
|
|
ynh_script_progression --message="Restoring the logrotate configuration..." --weight=1
|
2022-07-16 01:38:42 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
2023-11-13 21:34:20 +01:00
|
|
|
mkdir -p "/var/log/$app"
|
|
|
|
chmod -R 600 "/var/log/$app"
|
|
|
|
chmod 700 "/var/log/$app"
|
2023-12-11 13:27:40 +01:00
|
|
|
chown -R "$app:$app" "/var/log/$app"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REGISTER SYNAPSE APP-SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Registering Synapse app-service" --weight=1
|
|
|
|
|
|
|
|
$install_dir/bin/python3 -m mautrix_telegram -g -c "$install_dir/config.yaml" -r "/etc/matrix-$synapse_instance/app-service/$app.yaml"
|
|
|
|
/opt/yunohost/matrix-$synapse_instance/update_synapse_for_appservice.sh || echo "Synapse can't restart with the appservice configuration"
|
2022-07-16 01:38:42 +02:00
|
|
|
|
2023-12-01 18:41:36 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
|
|
|
systemctl enable $app.service --quiet
|
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2021-09-05 14:24:10 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2021-03-24 22:49:07 +01:00
|
|
|
|
2022-09-05 00:44:56 +02:00
|
|
|
yunohost service add $app --description="$app daemon for bridging Telegram and Matrix messages" --log="/var/log/$app/$app.log"
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-09-05 14:24:10 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2021-03-24 22:49:07 +01:00
|
|
|
|
2022-09-04 23:58:47 +02:00
|
|
|
# Start a systemd service
|
2021-03-24 22:49:07 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-09-05 14:24:10 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|