quick-jibri-installer/jitsi-updater.sh

202 lines
7.0 KiB
Bash
Raw Normal View History

2019-02-25 04:10:26 +00:00
#!/bin/bash
2020-04-11 09:58:50 +00:00
# Jitsi Meet recurring upgrader and customization keeper
# for Debian/*buntu binaries.
# 2020 - SwITNet Ltd
2019-02-25 04:10:26 +00:00
# GNU GPLv3 or later.
Blue='\e[0;34m'
Purple='\e[0;35m'
2020-04-11 13:02:49 +00:00
Green='\e[0;32m'
Yellow='\e[0;33m'
2019-02-25 04:10:26 +00:00
Color_Off='\e[0m'
#Check if user is root
if ! [ $(id -u) = 0 ]; then
echo "You need to be root or have sudo privileges!"
exit 0
fi
if [ ! -f jm-bm.sh ]; then
echo "Please check that you are running the jitsi updater while being on the project folder"
echo "other wise the updater might have errors or be incomplete. Exiting..."
exit
fi
2020-04-15 05:22:38 +00:00
support="https://switnet.net/support"
apt_repo="/etc/apt/sources.list.d"
LOC_REC="TBD"
ENABLE_BLESSM="TBD"
CHD_LTST="$(curl -sL https://chromedriver.storage.googleapis.com/LATEST_RELEASE)"
2021-02-18 08:00:36 +00:00
CHD_LTST_2D="$(echo $CHD_LTST|cut -d "." -f 1,2)"
2020-04-15 05:22:38 +00:00
CHDB="$(whereis chromedriver | awk '{print$2}')"
DOMAIN="$(ls /etc/prosody/conf.d/ | grep -v localhost | awk -F'.cfg' '{print $1}' | awk '!NF || !seen[$0]++')"
2020-08-07 21:39:46 +00:00
NC_DOMAIN="TBD"
JITSI_MEET_PROXY="/etc/nginx/modules-enabled/60-jitsi-meet.conf"
if [ -f $JITSI_MEET_PROXY ];then
PREAD_PROXY=$(grep -nr "preread_server_name" $JITSI_MEET_PROXY | cut -d ":" -f1)
fi
2020-04-15 05:22:38 +00:00
INT_CONF="/usr/share/jitsi-meet/interface_config.js"
INT_CONF_ETC="/etc/jitsi/meet/$DOMAIN-interface_config.js"
jibri_packages="$(grep Package /var/lib/apt/lists/download.jitsi.org_*_Packages |sort -u|awk '{print $2}'|sed 's|jigasi||')"
2020-04-15 05:22:38 +00:00
AVATAR="$(grep -r avatar /etc/nginx/sites-*/ 2>/dev/null)"
2019-02-25 04:10:26 +00:00
if [ -f $apt_repo/google-chrome.list ]; then
google_package=$(grep Package /var/lib/apt/lists/dl.google.com_linux_chrome_deb_dists_stable_main_binary-amd64_Packages | sort -u | cut -d ' ' -f2)
2019-02-25 04:10:26 +00:00
else
echo "Seems no Google repo installed"
fi
if [ -z $CHDB ]; then
echo "Seems no chromedriver installed"
2019-02-25 04:10:26 +00:00
else
2021-02-18 08:21:59 +00:00
CHD_VER_LOCAL="$($CHDB -v | awk '{print $2}')"
CHD_VER_2D="$(echo $CHD_VER_LOCAL|cut -d "." -f 1,2)"
2019-02-25 04:10:26 +00:00
fi
# True if $1 is greater than $2
2019-02-25 04:10:26 +00:00
version_gt() { test "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1"; }
check_jibri() {
if [ "$(dpkg-query -W -f='${Status}' "jibri" 2>/dev/null | grep -c "ok installed")" == "1" ]
then
2020-04-13 17:45:35 +00:00
systemctl restart jibri
systemctl restart jibri-icewm
systemctl restart jibri-xorg
2019-02-25 04:10:26 +00:00
else
echo "Jibri service not installed"
fi
}
# Restarting services
restart_services() {
2020-04-13 17:45:35 +00:00
systemctl restart jitsi-videobridge2
systemctl restart jicofo
2019-02-25 04:10:26 +00:00
check_jibri
2020-04-13 17:45:35 +00:00
systemctl restart prosody
2019-02-25 04:10:26 +00:00
}
update_jitsi_repo() {
apt-get update -o Dir::Etc::sourcelist="sources.list.d/jitsi-$1.list" \
-o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0"
apt-get install -qq --only-upgrade $jibri_packages
}
update_google_repo() {
if [ -f $apt_repo/google-chrome.list ]; then
apt-get update -o Dir::Etc::sourcelist="sources.list.d/google-chrome.list" \
-o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0"
apt-get install -qq --only-upgrade $google_package
else
echo "No Google repository found"
fi
}
GOOGL_VER_2D="$(/usr/bin/google-chrome --version|awk '{print$3}'|cut -d "." -f 1,2)"
upgrade_cd() {
if [ ! -z $GOOGL_VER_2D ]; then
2021-02-18 08:00:36 +00:00
if version_gt "$GOOGL_VER_2D" "$CHD_VER_2D" && \
[ "$GOOGL_VER_2D" = "$CHD_LTST_2D" ]; then
echo "Upgrading Chromedriver to Google Chromes version"
2021-02-18 08:21:59 +00:00
wget -q https://chromedriver.storage.googleapis.com/$CHD_LTST/chromedriver_linux64.zip \
-O /tmp/chromedriver_linux64.zip
unzip /tmp/chromedriver_linux64.zip -d /usr/local/bin/
chown root:root $CHDB
chmod 0755 $CHDB
rm -rf /tpm/chromedriver_linux64.zip
chromedriver -v
else
echo "No need to upgrade Chromedriver"
2021-02-18 08:21:59 +00:00
printf "Current version: ${Green} $CHD_VER_2D ${Color_Off}\n"
fi
else
printf "${Yellow} -> No Google Chrome versión to match, leaving untouched.${Color_Off}\n"
fi
}
2019-02-25 04:10:26 +00:00
check_lst_cd() {
printf "${Purple}Checking for the latest Chromedriver${Color_Off}\n"
if [ -f $CHDB ]; then
2021-02-18 08:21:59 +00:00
printf "Current installed Chromedriver: ${Yellow} $CHD_VER_2D ${Color_Off}\n"
2021-02-18 08:00:36 +00:00
printf "Current installed Google Chrome: ${Green} $GOOGL_VER_2D ${Color_Off}\n"
2019-02-25 04:10:26 +00:00
upgrade_cd
else
printf "${Yellow} -> Seems there is no Chromedriver installed${Color_Off}\n"
fi
}
2021-02-18 08:00:36 +00:00
printf "${Blue}Update & upgrade Jitsi and components${Color_Off}\n"
2019-02-25 04:10:26 +00:00
if [ -f $apt_repo/jitsi-unstable.list ]; then
update_jitsi_repo unstable
update_google_repo
check_lst_cd
elif [ -f $apt_repo/jitsi-stable.list ]; then
update_jitsi_repo stable
update_google_repo
check_lst_cd
else
echo "Please check your repositories, something is not right."
exit 1
fi
2020-04-11 09:58:50 +00:00
# Any customization, image, name or link change for any purpose should
# be documented here so new updates won't remove those changes.
# We divide them on UI changes and branding changes, feel free to adapt
# to your needs.
#
2020-08-15 07:16:54 +00:00
# Please keep in mind that fees for support customization changes may
# apply.
2019-02-25 04:10:26 +00:00
########################################################################
2020-04-11 09:58:50 +00:00
# User interface changes #
2019-02-25 04:10:26 +00:00
########################################################################
if [ -f "$INT_CONF_ETC" ]; then
echo "Static interface_config.js exists, skipping modification..."
2019-02-25 04:10:26 +00:00
else
echo "This setup doesn't have a static interface_config.js, checking changes..."
printf "${Purple}========== Setting Static Avatar ==========${Color_Off}\n"
if [[ -z "$AVATAR" ]]; then
echo "Moving on..."
else
echo "Setting Static Avatar"
sed -i "/RANDOM_AVATAR_URL_PREFIX/ s|false|\'http://$DOMAIN/avatar/\'|" $INT_CONF
sed -i "/RANDOM_AVATAR_URL_SUFFIX/ s|false|\'.png\'|" $INT_CONF
fi
printf "${Purple}========== Setting Support Link ==========${Color_Off}\n"
if [[ -z $support ]]; then
echo "Moving on..."
else
echo "Setting Support custom link"
sed -i "s|https://jitsi.org/live|$support|g" $INT_CONF
fi
printf "${Purple}========== Disable Localrecording ==========${Color_Off}\n"
if [ "$LOC_REC" != "on" ]; then
echo "Removing localrecording..."
sed -i "s|'localrecording',||" $INT_CONF
fi
2019-02-25 04:10:26 +00:00
printf "${Purple}========== Disable Blur my background ==========${Color_Off}\n"
sed -i "s|'videobackgroundblur', ||" $INT_CONF
2019-11-20 05:24:17 +00:00
fi
2020-08-07 21:39:46 +00:00
2020-08-15 07:16:54 +00:00
if [ "$NC_DOMAIN" != "TBD" ]; then
2020-08-07 21:39:46 +00:00
printf "${Purple}========== Enable $NC_DOMAIN for sync client ==========${Color_Off}\n"
2020-08-15 07:16:54 +00:00
if [ -z "$PREAD_PROXY" ]; then
2020-08-07 21:39:46 +00:00
echo "
Setting up Nextcloud domain on Jitsi Meet turn proxy
"
sed -i "/server {/i \ \ map \$ssl_preread_server_name \$upstream {" $JITSI_MEET_PROXY
sed -i "/server {/i \ \ \ \ \ \ $DOMAIN web;" $JITSI_MEET_PROXY
sed -i "/server {/i \ \ \ \ \ \ $NC_DOMAIN web;" $JITSI_MEET_PROXY
sed -i "/server {/i \ \ }" $JITSI_MEET_PROXY
else
echo "$NC_DOMAIN seems to be on place, skipping..."
fi
fi
2019-02-25 04:10:26 +00:00
restart_services
2020-04-11 09:58:50 +00:00
########################################################################
# Brandless mode #
########################################################################
if [ $ENABLE_BLESSM = on ]; then
bash $PWD/jm-bm.sh
fi
2019-02-25 04:10:26 +00:00
printf "${Blue}Script completed \o/! ${Color_Off}\n"