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
|
2022-06-09 01:19:53 +02:00
|
|
|
source ../settings/scripts/ynh_apps
|
2019-06-06 06:04:22 +02:00
|
|
|
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
|
|
|
|
#=================================================
|
|
|
|
# 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"
|
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-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
|
|
|
|
2022-02-08 22:42:11 +01:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:$app "$final_path"
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
2022-06-09 01:19:53 +02:00
|
|
|
ynh_install_apps --apps="$ynh_app_dependencies"
|
2019-06-06 06:04:22 +02:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
|
2022-06-09 01:19:53 +02:00
|
|
|
if [ $YNH_ARCH == "armhf" ]
|
2022-02-03 03:00:20 +01:00
|
|
|
then
|
2022-06-09 01:19:53 +02:00
|
|
|
ynh_script_progression --message="Installing specific arm dependencies..."
|
|
|
|
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
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..."
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
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
|
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-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"
|
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
|
|
|
|
#=================================================
|
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"
|
|
|
|
|
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
|
|
|
|
#=================================================
|
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"
|
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
|
|
|
|
#=================================================
|
|
|
|
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"
|
2020-06-19 04:34:21 +02:00
|
|
|
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"
|