1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jitsi_ynh.git synced 2024-09-03 19:35:57 +02:00
jitsi_ynh/scripts/restore

200 lines
7.9 KiB
Text
Raw Normal View History

2019-06-06 06:04:22 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2022-06-09 01:19:53 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-06-06 06:04:22 +02:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2024-01-09 19:10:09 +01:00
#REMOVEME? ynh_clean_setup () {
2022-10-14 03:49:09 +02:00
true
2019-06-06 06:04:22 +02:00
}
# Exit if an error occurs during the execution of the script
2024-01-09 19:10:09 +01:00
#REMOVEME? ynh_abort_if_errors
2019-06-06 06:04:22 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Loading settings..." --weight=1
2019-06-06 06:04:22 +02:00
2024-01-09 19:10:09 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2019-06-06 06:04:22 +02:00
2024-01-09 19:10:09 +01:00
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
2019-06-06 06:04:22 +02:00
2024-01-09 19:10:09 +01:00
#REMOVEME? focus_user=$(ynh_app_setting_get --app=$app --key=focus_user)
#REMOVEME? focus_password=$(ynh_app_setting_get --app=$app --key=focus_password)
#REMOVEME? focus_secret=$(ynh_app_setting_get --app=$app --key=focus_secret)
2020-06-18 15:09:44 +02:00
2024-01-09 19:10:09 +01:00
#REMOVEME? videobridge_user=$(ynh_app_setting_get --app=$app --key=videobridge_user)
#REMOVEME? videobridge_secret=$(ynh_app_setting_get --app=$app --key=videobridge_secret)
2019-07-14 01:17:46 +02:00
2024-01-09 19:10:09 +01:00
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
#REMOVEME? port_videobridge=$(ynh_app_setting_get --app=$app --key=port_videobridge)
#REMOVEME? port_component=$(ynh_app_setting_get --app=$app --key=port_component)
2019-07-14 01:17:46 +02:00
2019-06-06 06:04:22 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2024-01-09 19:10:09 +01:00
#REMOVEME? ynh_script_progression --message="Validating restoration parameters..." --weight=1
2019-06-06 06:04:22 +02:00
2024-01-09 19:10:09 +01:00
#REMOVEME? test ! -d $install_dir \
|| ynh_die --message="There is already a directory: $install_dir "
2019-06-06 06:04:22 +02:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2024-01-09 19:10:09 +01:00
#REMOVEME? ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
2019-06-06 06:04:22 +02:00
# Create the dedicated user (if not existing)
2024-01-09 19:10:09 +01:00
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
2022-02-08 22:42:11 +01:00
gpasswd --add www-data $app
2019-06-06 06:04:22 +02:00
#=================================================
2022-02-03 03:00:20 +01:00
# RESTORE THE APP MAIN DIR
2019-06-06 06:04:22 +02:00
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2022-02-03 03:00:20 +01:00
2024-01-09 19:10:09 +01:00
ynh_restore_file --origin_path="$install_dir"
2019-06-06 06:04:22 +02:00
2024-01-09 19:10:09 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
2019-06-06 06:04:22 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2024-01-09 19:10:09 +01:00
#REMOVEME? ynh_script_progression --message="Reinstalling dependencies..." --weight=1
2019-06-06 06:04:22 +02:00
# Define and install dependencies
2022-06-09 01:19:53 +02:00
ynh_install_apps --apps="$ynh_app_dependencies"
2024-01-09 19:10:09 +01:00
#REMOVEME? ynh_install_app_dependencies $pkg_dependencies
2019-06-06 06:04:22 +02:00
2022-06-09 01:19:53 +02:00
if [ $YNH_ARCH == "armhf" ]
2022-02-03 03:00:20 +01:00
then
2024-01-09 19:10:09 +01:00
#REMOVEME? ynh_script_progression --message="Installing specific arm dependencies..." --weight=1
#REMOVEME? ynh_install_extra_app_dependencies --repo="deb http://security.debian.org/debian-security stretch/updates main" --package="$pkg_extra_depedencies_arm" --key="https://ftp-master.debian.org/keys/archive-key-9-security.asc"
2022-02-03 03:00:20 +01:00
fi
2019-06-06 06:04:22 +02:00
2022-02-09 08:19:20 +01:00
gpasswd --add prosody $app
2022-02-06 01:57:11 +01:00
2022-06-09 01:19:53 +02:00
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
2022-06-09 01:19:53 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-07-14 01:17:46 +02:00
#=================================================
# CONFIGURE FIREWALL
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Configuring firewall..." --weight=1
2019-07-14 01:17:46 +02:00
# Open this port
2022-02-12 23:52:11 +01:00
ynh_exec_warn_less yunohost firewall allow TCP $port
ynh_exec_warn_less yunohost firewall allow UDP $port_videobridge
2019-07-14 01:17:46 +02:00
#=================================================
2022-02-03 03:00:20 +01:00
# CONFIGURE PROSODY
2019-07-14 01:17:46 +02:00
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Configuring prosody..." --weight=1
2022-02-03 03:00:20 +01:00
ynh_restore_file --origin_path="/etc/prosody/conf.avail/$domain.cfg.lua"
2022-02-08 22:42:11 +01:00
chmod 644 "/etc/prosody/conf.avail/$domain.cfg.lua"
2022-02-03 03:00:20 +01:00
ln -s "/etc/prosody/conf.avail/$domain.cfg.lua" "/etc/prosody/conf.d/$domain.cfg.lua"
ln -sf /var/lib/prosody/$domain.key /etc/prosody/certs/$domain.key
ln -sf /var/lib/prosody/$domain.crt /etc/prosody/certs/$domain.crt
ln -sf "/var/lib/prosody/auth.$domain.key" "/etc/prosody/certs/auth.$domain.key"
ln -sf "/var/lib/prosody/auth.$domain.crt" "/etc/prosody/certs/auth.$domain.crt"
ln -sf "/var/lib/prosody/auth.$domain.crt" "/usr/local/share/ca-certificates/auth.$domain.crt"
2019-07-14 01:17:46 +02:00
2022-02-03 03:00:20 +01:00
update-ca-certificates -f
2019-07-14 01:17:46 +02:00
2022-02-03 03:00:20 +01:00
ynh_systemd_action --service_name="prosody" --action="restart"
2019-07-14 01:17:46 +02:00
2022-02-03 03:00:20 +01:00
prosodyctl register "$focus_user" "auth.$domain" "$focus_password"
2019-08-25 15:45:36 +02:00
2022-02-03 03:00:20 +01:00
prosodyctl register "$videobridge_user" "auth.$domain" "$videobridge_secret"
2019-07-14 01:17:46 +02:00
2022-02-03 03:00:20 +01:00
prosodyctl mod_roster_command subscribe $focus_user.$domain $focus_user@auth.$domain
2019-07-14 01:17:46 +02:00
2020-04-11 21:55:05 +02:00
#=================================================
# RESTORE THE APP CONFIG
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Restoring the app config..." --weight=1
2020-04-11 21:55:05 +02:00
ynh_restore_file --origin_path="/etc/$app"
2022-02-08 22:42:11 +01:00
chmod 644 "/etc/$app/meet/$domain-config.js"
2020-04-11 21:55:05 +02:00
#=================================================
# CREATE LOG DIR
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Creating log dir..." --weight=1
2020-04-11 21:55:05 +02:00
mkdir -p "/var/log/$app"
chown -R $app: /var/log/$app
2019-06-06 06:04:22 +02:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
2019-06-06 06:04:22 +02:00
2019-07-13 14:18:06 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app-videobridge.service"
2022-02-06 15:45:58 +01:00
systemctl enable $app-videobridge.service --quiet
2019-07-13 14:18:06 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app-jicofo.service"
2022-02-06 15:45:58 +01:00
systemctl enable $app-jicofo.service --quiet
2019-06-06 06:04:22 +02:00
2022-02-03 03:00:20 +01:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Restoring the logrotate configuration..." --weight=1
2022-02-03 03:00:20 +01:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2019-06-06 06:04:22 +02:00
#=================================================
2020-01-15 21:40:17 +01:00
# INTEGRATE SERVICE IN YUNOHOST
2019-06-06 06:04:22 +02:00
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2019-06-06 06:04:22 +02:00
2022-02-06 15:37:16 +01:00
yunohost service add $app-videobridge --log "/var/log/$app/$app-videobridge.log" --needs_exposed_ports $port $port_videobridge
2022-02-06 15:45:20 +01:00
yunohost service add $app-jicofo --log "/var/log/$app/$app-jicofo.log"
2019-06-06 06:04:22 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2019-06-06 06:04:22 +02:00
2019-07-13 14:18:06 +02:00
ynh_systemd_action --service_name=$app-jicofo --action="start" --log_path="/var/log/$app/$app-jicofo.log"
ynh_systemd_action --service_name=$app-videobridge --action="start" --log_path="/var/log/$app/$app-videobridge.log"
2019-06-06 06:04:22 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2019-06-06 06:04:22 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Restoration completed for $app" --last