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

196 lines
7.1 KiB
Text
Raw Normal View History

2019-06-06 06:04:22 +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
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
2019-08-06 21:18:00 +02:00
ynh_clean_check_starting
2019-06-06 06:04:22 +02:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2022-02-03 03:00:20 +01:00
ynh_script_progression --message="Loading installation settings..."
2019-06-06 06:04:22 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2019-07-14 01:17:46 +02:00
focus_user=$(ynh_app_setting_get --app=$app --key=focus_user)
focus_password=$(ynh_app_setting_get --app=$app --key=focus_password)
2020-06-18 15:09:44 +02:00
focus_secret=$(ynh_app_setting_get --app=$app --key=focus_secret)
videobridge_user=$(ynh_app_setting_get --app=$app --key=videobridge_user)
videobridge_secret=$(ynh_app_setting_get --app=$app --key=videobridge_secret)
2019-07-14 01:17:46 +02:00
port=$(ynh_app_setting_get --app=$app --key=port)
port_videobridge=$(ynh_app_setting_get --app=$app --key=port_videobridge)
port_component=$(ynh_app_setting_get --app=$app --key=port_component)
2019-06-06 06:04:22 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2020-06-18 02:03:31 +02:00
ynh_script_progression --message="Validating restoration parameters..."
2019-06-06 06:04:22 +02:00
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2022-02-03 03:00:20 +01:00
ynh_script_progression --message="Restoring the NGINX web server configuration..."
2019-06-06 06:04:22 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2020-06-18 02:03:31 +02:00
ynh_script_progression --message="Recreating the dedicated system user..."
2019-06-06 06:04:22 +02:00
# Create the dedicated user (if not existing)
2022-02-03 03:00:20 +01:00
ynh_system_user_create --username=$app --home_dir="$final_path"
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-02-03 03:00:20 +01:00
ynh_script_progression --message="Restoring the app main directory..."
ynh_restore_file --origin_path="$final_path"
2019-06-06 06:04:22 +02:00
chown -R root: $final_path
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2020-06-18 02:03:31 +02:00
ynh_script_progression --message="Reinstalling dependencies..."
2019-06-06 06:04:22 +02:00
# Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies
2022-02-03 03:00:20 +01:00
if ! yunohost app list | grep -q "prosody"
then
2022-02-06 15:30:08 +01:00
yunohost tools update
yunohost app install prosody
2022-02-06 01:57:11 +01:00
else
2022-02-06 15:30:08 +01:00
yunohost tools update
yunohost app upgrade prosody
2022-02-03 03:00:20 +01:00
fi
2019-06-06 06:04:22 +02:00
2022-02-06 01:57:11 +01:00
ynh_app_setting_set --app=$app --key=require_prosody --value="1"
2019-07-14 01:17:46 +02:00
#=================================================
# CONFIGURE FIREWALL
#=================================================
2020-06-18 02:03:31 +02:00
ynh_script_progression --message="Configuring firewall..."
2019-07-14 01:17:46 +02:00
# Open this port
ynh_exec_warn_less yunohost firewall allow --no-upnp TCP $port
ynh_exec_warn_less yunohost firewall allow --no-upnp UDP $port_videobridge
#=================================================
2022-02-03 03:00:20 +01:00
# CONFIGURE PROSODY
2019-07-14 01:17:46 +02:00
#=================================================
2022-02-03 03:00:20 +01:00
ynh_script_progression --message="Configuring prosody..."
ynh_restore_file --origin_path="/etc/prosody/conf.avail/$domain.cfg.lua"
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
#=================================================
2020-06-18 02:03:31 +02:00
ynh_script_progression --message="Restoring the app config..."
2020-04-11 21:55:05 +02:00
ynh_restore_file --origin_path="/etc/$app"
#=================================================
# CREATE LOG DIR
#=================================================
2020-06-18 02:03:31 +02:00
ynh_script_progression --message="Creating log dir..."
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
#=================================================
2020-06-18 02:03:31 +02:00
ynh_script_progression --message="Restoring the systemd configuration..."
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"
systemctl enable $app-videobridge.service
ynh_restore_file --origin_path="/etc/systemd/system/$app-jicofo.service"
systemctl enable $app-jicofo.service
2019-06-06 06:04:22 +02:00
2022-02-03 03:00:20 +01:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the logrotate configuration..."
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
#=================================================
2020-06-18 02:03:31 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
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
#=================================================
2020-06-18 02:03:31 +02:00
ynh_script_progression --message="Starting a systemd service..."
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-02-03 03:00:20 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2019-06-06 06:04:22 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2020-06-18 02:03:31 +02:00
ynh_script_progression --message="Restoration completed for $app"