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/upgrade

327 lines
14 KiB
Text
Raw Normal View History

2019-06-06 06:04:22 +02:00
#!/bin/bash
2015-01-14 10:55:14 +01:00
2019-06-06 06:04:22 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2015-01-14 10:55:14 +01:00
2019-06-06 06:04:22 +02:00
source _common.sh
source /usr/share/yunohost/helpers
2015-01-14 10:55:14 +01:00
2019-06-06 06:04:22 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
ynh_print_info --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)
videobridge_secret=$(ynh_app_setting_get --app=$app --key=videobridge_secret)
focus_secret=$(ynh_app_setting_get --app=$app --key=focus_secret)
2020-01-20 03:18:23 +01:00
port=$(ynh_app_setting_get --app=$app --key=port)
2019-07-14 01:17:46 +02:00
port_component=$(ynh_app_setting_get --app=$app --key=port_component)
focus_user=$(ynh_app_setting_get --app=$app --key=focus_user)
focus_password=$(ynh_app_setting_get --app=$app --key=focus_password)
2019-06-06 06:04:22 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2019-08-25 03:40:54 +02:00
current_version=$(ynh_read_manifest --manifest="/etc/yunohost/apps/$app/manifest.json" --manifest_key="version" || echo 1.0)
2019-06-06 06:04:22 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_print_info --message="Ensuring downward compatibility..."
2019-06-06 06:04:22 +02:00
# If final_path doesn't exist, create it
if [ -z "$final_path" ]; then
final_path=/var/www/$app
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
fi
2019-08-25 03:40:54 +02:00
if ynh_version_gt "1.0.3387~ynh2" "${current_version}" ; then
# Add Metronome domain conf template
metronome_conf="/usr/share/yunohost/templates/jitsi/$domain.cfg.lua"
mkdir -p /usr/share/yunohost/templates/jitsi/
cp ../conf/metronome.cfg.lua $metronome_conf
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$metronome_conf"
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="$metronome_conf"
ynh_replace_string --match_string="__FOCUS_SECRET__" --replace_string="$focus_secret" --target_file="$metronome_conf"
ynh_replace_string --match_string="__PORT_COMPONENT__" --replace_string="$port_component" --target_file="$metronome_conf"
touch "/usr/share/yunohost/templates/jitsi/auth.$domain.cfg.lua"
touch "/usr/share/yunohost/templates/jitsi/conference.$domain.cfg.lua"
touch "/usr/share/yunohost/templates/jitsi/jitsi-videobridge.$domain.cfg.lua"
touch "/usr/share/yunohost/templates/jitsi/focus.$domain.cfg.lua"
2019-08-25 15:45:36 +02:00
# Add Metronome hook
cp -R ../conf/metronome_regen_conf.hook /usr/share/yunohost/hooks/conf_regen/50-metronome_$app
2020-04-13 17:16:38 +02:00
yunohost tools regen-conf metronome --force
2019-08-25 03:40:54 +02:00
fi
2020-04-10 05:21:33 +02:00
if ynh_version_gt "1.0.3969~ynh1" "${current_version}" ; then
# Remove not needed domains
yunohost domain remove conference.$domain
yunohost domain remove jitsi-videobridge.$domain
yunohost domain remove focus.$domain
# Remove Previously installed Metronome modules
ynh_secure_remove --file="/usr/lib/metronome/modules/mod_carbons.lua"
ynh_secure_remove --file="/usr/lib/metronome/modules/mod_http_altconnect.lua"
ynh_secure_remove --file="/usr/lib/metronome/modules/mod_smacks.lua"
# Remove nodejs
ynh_remove_nodejs
fi
2020-03-31 19:47:39 +02:00
# Closing port_component
if yunohost firewall list | grep -q "\- $port_component$"
then
ynh_print_info --message="Closing port $port_component..."
ynh_exec_warn_less yunohost firewall disallow TCP $port_component
fi
2020-04-10 05:21:33 +02:00
2019-06-06 06:04:22 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_print_info --message="Backing up the app before upgrading (may take a while)..."
2019-06-06 06:04:22 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# restore it if the upgrade fails
ynh_restore_upgradebackup
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
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_print_info --message="Stopping 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-videobridge --action="stop" --log_path="/var/log/$app/$app-videobridge.log"
ynh_systemd_action --service_name=$app-jicofo --action="stop" --log_path="/var/log/$app/$app-jicofo.log"
2019-06-06 06:04:22 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_print_info --message="Upgrading source files..."
2019-06-06 06:04:22 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2020-04-10 05:21:33 +02:00
declare -A packages
packages[jicofo]="jicofo"
packages[jitsi-meet-prosody]="jitsi-meet/prosody-plugins"
packages[jitsi-meet-web]="jitsi-meet"
packages[jitsi-videobridge]="jitsi-videobridge"
for package in "${!packages[@]}"
do
ynh_secure_remove --file="$final_path/${package}"
ynh_setup_source --dest_dir="$final_path/${package}_temp" --source_id=$package
pushd "$final_path/${package}_temp"
ar x $package.deb data.tar.xz
tar xf data.tar.xz
popd
mv "$final_path/${package}_temp/usr/share/${packages[$package]}/" "$final_path/${package}/"
ynh_secure_remove --file="$final_path/${package}_temp"
done
2020-04-13 21:08:04 +02:00
# Adapt prosody module to metronome
for file in $final_path/jitsi-meet-prosody/*.lua
do
ynh_replace_string --match_string="prosody" --replace_string="metronome" --target_file="$file"
ynh_replace_string --match_string="Prosody" --replace_string="Metronome" --target_file="$file"
done
for directory in $final_path/jitsi-meet-prosody/*/; do
for file in $directory/*.lua
do
ynh_replace_string --match_string="prosody" --replace_string="metronome" --target_file="$file"
ynh_replace_string --match_string="Prosody" --replace_string="Metronome" --target_file="$file"
done
done
2019-06-06 06:04:22 +02:00
fi
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_print_info --message="Upgrading nginx web server configuration..."
2019-06-06 06:04:22 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
ynh_print_info --message="Upgrading dependencies..."
2019-06-06 06:04:22 +02:00
ynh_install_app_dependencies $pkg_dependencies
2020-04-10 05:21:33 +02:00
#ynh_install_nodejs --nodejs_version=10
2019-06-06 06:04:22 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_print_info --message="Making sure dedicated system user exists..."
2019-06-06 06:04:22 +02:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir=$final_path
#=================================================
# SPECIFIC UPGRADE
#=================================================
2020-04-11 21:55:05 +02:00
# CONFIGURE JITSI-VIDEOBRIDGE
2019-06-06 06:04:22 +02:00
#=================================================
2020-04-11 21:55:05 +02:00
ynh_print_info --message="Configuring Jitsi-Videobridge..."
2019-06-06 06:04:22 +02:00
2019-07-14 01:17:46 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2020-03-31 19:56:56 +02:00
public_ipv4="$(curl ip.yunohost.org)" || true
private_ipv4="$(ip route get 1 | sed -n 's/^.*src \([0-9.]*\) .*$/\1/p')" || true
2020-04-11 21:55:05 +02:00
jitsi_videobridge_sip_communicator_conf="/etc/$app/videobridge/sip-communicator.properties"
ynh_backup_if_checksum_is_different --file="$jitsi_videobridge_sip_communicator_conf"
cp -f ../conf/jitsi_videobridge-sip-communicator.properties "$jitsi_videobridge_sip_communicator_conf"
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="$jitsi_videobridge_sip_communicator_conf"
ynh_replace_string --match_string="__PRIVATE_IPV4__" --replace_string="$private_ipv4" --target_file="$jitsi_videobridge_sip_communicator_conf"
ynh_replace_string --match_string="__PUBLIC_IPV4__" --replace_string="$public_ipv4" --target_file="$jitsi_videobridge_sip_communicator_conf"
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$jitsi_videobridge_sip_communicator_conf"
2020-04-13 17:16:38 +02:00
ynh_replace_string --match_string="__VIDEOBRIDGE_USER__" --replace_string="$videobridge_user" --target_file="$jitsi_videobridge_sip_communicator_conf"
ynh_replace_string --match_string="__VIDEOBRIDGE_SECRET__" --replace_string="$videobridge_secret" --target_file="$jitsi_videobridge_sip_communicator_conf"
2020-04-11 21:55:05 +02:00
ynh_replace_string --match_string="__MUC_NICKNAME__" --replace_string="$muc_nickname" --target_file="$jitsi_videobridge_sip_communicator_conf"
ynh_store_file_checksum --file="$jitsi_videobridge_sip_communicator_conf"
jitsi_videobridge_conf="/etc/$app/videobridge/config"
ynh_backup_if_checksum_is_different --file="$jitsi_videobridge_conf"
cp ../conf/jitsi-videobridge.config "$jitsi_videobridge_conf"
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$jitsi_videobridge_conf"
ynh_replace_string --match_string="__PORT_COMPONENT__" --replace_string="$port_component" --target_file="$jitsi_videobridge_conf"
ynh_replace_string --match_string="__VIDEOBRIDGE_SECRET__" --replace_string="$videobridge_secret" --target_file="$jitsi_videobridge_conf"
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="$jitsi_videobridge_conf"
ynh_store_file_checksum --file="$jitsi_videobridge_conf"
jitsi_videobridge_logging_conf="/etc/$app/videobridge/logging.properties"
ynh_backup_if_checksum_is_different --file="$jitsi_videobridge_logging_conf"
cp ../conf/jitsi-videobridge-logging.properties "$jitsi_videobridge_logging_conf"
ynh_store_file_checksum --file="$jitsi_videobridge_logging_conf"
2019-07-14 01:17:46 +02:00
fi
2019-06-06 06:04:22 +02:00
#=================================================
2020-04-11 21:55:05 +02:00
# CONFIGURE JITSI-JICOFO
2019-06-06 06:04:22 +02:00
#=================================================
2020-04-11 21:55:05 +02:00
ynh_print_info --message="configuring Jitsi-Jicofo..."
2019-07-14 01:17:46 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2020-04-11 21:55:05 +02:00
jitsi_jicofo_sip_communicator_conf="/etc/$app/jicofo/sip-communicator.properties"
ynh_backup_if_checksum_is_different --file="$jitsi_jicofo_sip_communicator_conf"
cp ../conf/jitsi-jicofo-sip-communicator.properties "$jitsi_jicofo_sip_communicator_conf"
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$jitsi_jicofo_sip_communicator_conf"
ynh_store_file_checksum --file="$jitsi_jicofo_sip_communicator_conf"
jitsi_jicofo_conf="/etc/$app/jicofo/config"
ynh_backup_if_checksum_is_different --file="$jitsi_jicofo_conf"
cp ../conf/jitsi-jicofo.config "$jitsi_jicofo_conf"
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$jitsi_jicofo_conf"
ynh_replace_string --match_string="__PORT_COMPONENT__" --replace_string="$port_component" --target_file="$jitsi_jicofo_conf"
ynh_replace_string --match_string="__FOCUS_SECRET__" --replace_string="$focus_secret" --target_file="$jitsi_jicofo_conf"
ynh_replace_string --match_string="__FOCUS_USER__" --replace_string="$focus_user" --target_file="$jitsi_jicofo_conf"
ynh_replace_string --match_string="__FOCUS_PASSWORD__" --replace_string="$focus_password" --target_file="$jitsi_jicofo_conf"
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="$jitsi_jicofo_conf"
ynh_store_file_checksum --file="$jitsi_jicofo_conf"
jitsi_jicofo_logging_conf="/etc/$app/jicofo/logging.properties"
ynh_backup_if_checksum_is_different --file="$jitsi_jicofo_logging_conf"
cp ../conf/jitsi-jicofo-logging.properties "$jitsi_jicofo_logging_conf"
ynh_store_file_checksum --file="$jitsi_jicofo_logging_conf"
2019-07-14 01:17:46 +02:00
fi
2019-06-06 06:04:22 +02:00
#=================================================
2020-04-11 21:55:05 +02:00
# CONFIGURE JITSI-MEET
2019-06-06 06:04:22 +02:00
#=================================================
2020-04-11 21:55:05 +02:00
ynh_print_info --message="Configuring Jitsi-Meet..."
2019-06-06 06:04:22 +02:00
2019-07-14 01:17:46 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2020-04-11 21:55:05 +02:00
jitsi_meet_conf="/etc/$app/meet/config.js"
ynh_backup_if_checksum_is_different --file="$jitsi_meet_conf"
cp ../conf/config.js "$jitsi_meet_conf"
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$jitsi_meet_conf"
ynh_store_file_checksum --file="$jitsi_meet_conf"
2019-07-14 01:17:46 +02:00
fi
2019-06-06 06:04:22 +02:00
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_print_info --message="Upgrading logrotate configuration..."
2019-06-06 06:04:22 +02:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_print_info --message="Upgrading systemd configuration..."
2019-06-06 06:04:22 +02:00
# Create a dedicated systemd config
2019-07-13 14:18:06 +02:00
ynh_add_systemd_config --service=$app-videobridge --template="jitsi-videobridge.service"
ynh_add_systemd_config --service=$app-jicofo --template="jitsi-jicofo.service"
2019-06-06 06:04:22 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2020-01-15 21:40:17 +01:00
ynh_print_info --message="Securing files and directories..."
2019-06-06 06:04:22 +02:00
# Set permissions on app files
chown -R root: $final_path
2020-04-11 21:55:05 +02:00
chown -R $app: /etc/$app
2019-06-06 06:04:22 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
ynh_print_info --message="Upgrading SSOwat configuration..."
2019-06-06 06:04:22 +02:00
# Make app public
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_print_info --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-videobridge --action="start" --log_path="/var/log/$app/$app-videobridge.log"
ynh_systemd_action --service_name=$app-jicofo --action="start" --log_path="/var/log/$app/$app-jicofo.log"
2019-06-06 06:04:22 +02:00
#=================================================
# RELOAD NGINX
#=================================================
ynh_print_info --message="Reloading nginx web server..."
2019-06-06 06:04:22 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info --message="Upgrade of $app completed"