quick-jibri-installer/jitsi-updater.sh

259 lines
8.6 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.
# SwITNet Ltd © - 2022, https://switnet.net/
2019-02-25 04:10:26 +00:00
# GNU GPLv3 or later.
while getopts m: option
do
case "${option}"
in
m) MODE=${OPTARG};;
\?) echo "Usage: sudo bash ./$0 [-m debug]" && exit;;
esac
done
#DEBUG
if [ "$MODE" = "debug" ]; then
set -x
fi
2019-02-25 04:10:26 +00:00
Blue='\e[0;34m'
Purple='\e[0;35m'
2022-06-17 21:30:30 +00:00
Red='\e[0;31m'
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'
printwc() {
printf "%b$2%b" "$1" "${Color_Off}"
}
#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
2021-04-12 02:59:43 +00:00
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"
ENABLE_BLESSM="TBD"
CHD_LTST="$(curl -sL https://chromedriver.storage.googleapis.com/LATEST_RELEASE)"
2022-06-17 21:30:30 +00:00
CHD_LTST_2D="$(cut -d "." -f 1,2 <<< "$CHD_LTST")"
2020-04-15 05:22:38 +00:00
CHDB="$(whereis chromedriver | awk '{print$2}')"
2022-06-17 21:30:30 +00:00
if [ -d /etc/prosody/conf.d/ ]; then
2022-05-21 00:29:04 +00:00
DOMAIN="$(find /etc/prosody/conf.d/ -name \*.lua | \
awk -F'.cfg' '!/localhost/{print $1}' | xargs basename)"
2022-06-17 21:30:30 +00:00
else
echo -e "Seems no prosody is installed...\n > is this a jibri node?"
fi
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
2022-05-21 00:29:04 +00:00
PREAD_PROXY="$(grep -nr "preread_server_name" "$JITSI_MEET_PROXY" | cut -d ":" -f1)"
2020-08-07 21:39:46 +00:00
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"
2022-05-21 00:29:04 +00:00
read -r -a jibri_packages < <(grep Package /var/lib/apt/lists/download.jitsi.org_*_Packages | \
sort -u | awk '{print $2}' | sed '/jigasi/d' | \
xargs)
2020-04-15 05:22:38 +00:00
AVATAR="$(grep -r avatar /etc/nginx/sites-*/ 2>/dev/null)"
if [ -f "$apt_repo"/google-chrome.list ]; then
2022-05-21 00:29:04 +00:00
read -r -a google_package < <(grep Package /var/lib/apt/lists/dl.google.com_*_Packages | \
sort -u | awk '{print $2}' | xargs)
2019-02-25 04:10:26 +00:00
else
echo "Seems no Google repo installed"
fi
if [ -z "$CHDB" ]; then
2021-04-12 02:59:43 +00:00
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}')"
2022-06-17 21:30:30 +00:00
CHD_VER_2D="$(awk '{printf "%.1f\n", $NF}' <<< "$CHD_VER_LOCAL")"
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"; }
2022-06-17 21:30:30 +00:00
restart_jibri() {
2019-02-25 04:10:26 +00:00
if [ "$(dpkg-query -W -f='${Status}' "jibri" 2>/dev/null | grep -c "ok installed")" == "1" ]
then
2021-04-12 02:59:43 +00:00
systemctl restart jibri
systemctl restart jibri-icewm
systemctl restart jibri-xorg
2019-02-25 04:10:26 +00:00
else
2021-04-12 02:59:43 +00:00
echo "Jibri service not installed"
2019-02-25 04:10:26 +00:00
fi
}
# Restarting services
restart_services() {
2021-04-12 02:59:43 +00:00
systemctl restart jitsi-videobridge2
systemctl restart jicofo
2022-06-17 21:30:30 +00:00
restart_jibri
2021-04-12 02:59:43 +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"
2022-05-21 00:29:04 +00:00
apt-get install -q2 --only-upgrade <<< printf "${jibri_packages[@]}"
2019-02-25 04:10:26 +00:00
}
update_google_repo() {
if [ -f "$apt_repo"/google-chrome.list ]; then
2019-02-25 04:10:26 +00:00
apt-get update -o Dir::Etc::sourcelist="sources.list.d/google-chrome.list" \
-o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0"
2022-05-21 00:29:04 +00:00
apt-get install -q2 --only-upgrade <<< printf "${google_package[@]}"
2019-02-25 04:10:26 +00:00
else
2021-04-12 02:59:43 +00:00
echo "No Google repository found"
fi
2019-02-25 04:10:26 +00:00
}
2022-06-17 21:30:30 +00:00
printwc "${Purple}" "Checking for Google Chrome\n"
if [ -f /usr/bin/google-chrome ]; then
GOOGL_VER_2D="$(/usr/bin/google-chrome --version|awk '{printf "%.1f\n", $NF}')"
else
printwc "${Yellow}" " -> Seems there is no Google Chrome installed\n"
IS_GLG_CHRM="no"
fi
upgrade_cd() {
if [ -n "$GOOGL_VER_2D" ]; then
if version_gt "$GOOGL_VER_2D" "$CHD_VER_2D" ; then
2021-02-18 08:00:36 +00:00
echo "Upgrading Chromedriver to Google Chromes version"
2021-04-12 02:59:43 +00:00
wget -q https://chromedriver.storage.googleapis.com/"$CHD_LTST"/chromedriver_linux64.zip \
2021-02-18 08:21:59 +00:00
-O /tmp/chromedriver_linux64.zip
2021-02-18 08:32:17 +00:00
unzip -o /tmp/chromedriver_linux64.zip -d /usr/local/bin/
2021-04-12 02:59:43 +00:00
chown root:root "$CHDB"
chmod 0755 "$CHDB"
2021-02-18 08:21:59 +00:00
rm -rf /tpm/chromedriver_linux64.zip
printf "Current version: "
printwc "$Green" "$($CHDB -v |awk '{print $2}'|awk '{printf "%.1f\n", $NF}')"
echo -e " (latest available)\n"
elif [ "$GOOGL_VER_2D" = "$CHD_LTST_2D" ]; then
echo "No need to upgrade Chromedriver"
printf "Current version: "
printwc "$Green" "$CHD_VER_2D\n"
fi
else
printwc "${Yellow}" " -> No Google Chrome versión to match, leaving untouched.\n"
fi
}
2019-02-25 04:10:26 +00:00
check_lst_cd() {
printwc "${Purple}" "Checking for the latest Chromedriver\n"
if [ -f "$CHDB" ]; then
printf "Current installed Chromedriver: "
printwc "${Yellow}" "$CHD_VER_2D\n"
printf "Current installed Google Chrome: "
printwc "${Green}" "$GOOGL_VER_2D\n"
2021-04-12 02:59:43 +00:00
upgrade_cd
2019-02-25 04:10:26 +00:00
else
printwc "${Yellow}" " -> Seems there is no Chromedriver installed\n"
2022-06-17 21:30:30 +00:00
IS_CHDB="no"
2019-02-25 04:10:26 +00:00
fi
}
printwc "${Blue}" "Update & upgrade Jitsi and components\n"
if [ -f "$apt_repo"/jitsi-unstable.list ]; then
2021-04-12 02:59:43 +00:00
update_jitsi_repo unstable
update_google_repo
check_lst_cd
elif [ -f "$apt_repo"/jitsi-stable.list ]; then
2021-04-12 02:59:43 +00:00
update_jitsi_repo stable
update_google_repo
check_lst_cd
2019-02-25 04:10:26 +00:00
else
2021-04-12 02:59:43 +00:00
echo "Please check your repositories, something is not right."
exit 1
2019-02-25 04:10:26 +00:00
fi
2022-06-17 21:30:30 +00:00
check_if_installed(){
if [ "$(dpkg-query -W -f='${Status}' "$1" 2>/dev/null | grep -c "ok installed")" == "1" ]; then
echo "1"
else
echo "0"
fi
}
check_for_jibri_node() {
if [ "$(check_if_installed jibri)" = 1 ] && \
[ "$(check_if_installed jitsi-meet)" = 0 ] && \
[ "$(check_if_installed prosody)" = 0 ]; then
printwc "${Green}" "\n::: This seems to be a jibri node :::\n"
JIBRI_NODE="yes"
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
########################################################################
2022-06-17 21:30:30 +00:00
#Check for jibri node
check_for_jibri_node
2019-02-25 04:10:26 +00:00
2022-06-17 21:30:30 +00:00
[ "$JIBRI_NODE" != yes ] && \
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..."
printwc "${Purple}" "========== Setting Static Avatar ==========\n"
2022-06-17 21:30:30 +00:00
if [ -z "$AVATAR" ]; then
2021-04-12 02:59:43 +00:00
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"
2021-04-12 02:59:43 +00:00
fi
printwc "${Purple}" "========== Setting Support Link ==========\n"
2022-06-17 21:30:30 +00:00
if [ -z "$support" ]; then
2021-04-12 02:59:43 +00:00
echo "Moving on..."
else
echo "Setting Support custom link"
sed -i "s|https://jitsi.org/live|$support|g" "$INT_CONF"
2021-04-12 02:59:43 +00:00
fi
printwc "${Purple}" "========== Disable Blur my background ==========\n"
sed -i "s|'videobackgroundblur', ||" "$INT_CONF"
fi
2020-08-07 21:39:46 +00:00
2022-06-17 21:30:30 +00:00
[ "$JIBRI_NODE" != yes ] && \
2020-08-15 07:16:54 +00:00
if [ "$NC_DOMAIN" != "TBD" ]; then
printwc "${Purple}" "========== Enable $NC_DOMAIN for sync client ==========\n"
2020-08-15 07:16:54 +00:00
if [ -z "$PREAD_PROXY" ]; then
printf "\n Setting up Nextcloud domain on Jitsi Meet turn proxy\n\n"
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"
2020-08-07 21:39:46 +00:00
else
echo "$NC_DOMAIN seems to be on place, skipping..."
fi
fi
2022-06-17 21:30:30 +00:00
if [ "$JIBRI_NODE" = "yes" ]; then
restart_jibri
else
restart_services
fi
2020-04-11 09:58:50 +00:00
2022-06-17 21:30:30 +00:00
if [ "$JIBRI_NODE" = "yes" ] && \
[ "$IS_CHDB" = "no" ] && \
[ "$IS_GLG_CHRM" = "no" ];then
printwc "${Red}" "\nBeware: This jibri node seems to be missing important packages.\n"
echo " > Googe Chrome"
echo " > Chromedriver"
fi
2020-04-11 09:58:50 +00:00
########################################################################
# Brandless mode #
########################################################################
2021-04-12 02:59:43 +00:00
if [ "$ENABLE_BLESSM" = "on" ]; then
if [ "$MODE" = "debug" ]; then
bash "$PWD"/jm-bm.sh -m debug
else
bash "$PWD"/jm-bm.sh
fi
2020-04-11 09:58:50 +00:00
fi
printwc "${Blue}" "Script completed \o/!\n"