| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 | #!/bin/bash
#
# .---.                  .              .
# |                      |              |
# |--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-.
# |    |   (.-' (.-' (   | (   )|  |  | |   )(   )|  | (.-'
# '    '     --'  --'  -' -  -' '  '   -' -'   -' '   -  --'
#
#                    Freedom in the Cloud
#
# Mumble application
#
# License
# =======
#
# Copyright (C) 2014-2016 Bob Mottram <bob@robotics.uk.to>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
VARIANTS='full chat'
# Password used for VoIP server
VOIP_SERVER_PASSWORD=
# Port on which VoIP server listens
VOIP_PORT=64738
# Location of VoIP database and configuration
VOIP_DATABASE="mumble-server.sqlite"
VOIP_CONFIG_FILE="mumble-server.ini"
function reconfigure_mumble {
	echo -n ''
}
function upgrade_mumble {
	echo -n ''
}
function backup_local_mumble {
	if [ -f /etc/mumble-server.ini ]; then
		echo $"Backing up Mumble settings"
		temp_backup_dir=/root/tempvoipbackup
		if [ ! -d $temp_backup_dir ]; then
			mkdir -p $temp_backup_dir
		fi
		cp -f /etc/mumble-server.ini $temp_backup_dir
		cp -f /var/lib/mumble-server/mumble-server.sqlite $temp_backup_dir
		backup_directory_to_usb $temp_backup_dir voip
		echo $"Mumble settings backup complete"
	fi
}
function restore_local_mumble {
	if [ -d $USB_MOUNT/backup/voip ]; then
		echo $"Restoring VoIP settings"
		temp_restore_dir=/root/tempvoip
		function_check restore_directory_from_usb
		restore_directory_from_usb $temp_restore_dir voip
		cp -f $temp_restore_dir/home/$ADMIN_USERNAME/tempbackup/mumble-server.ini /etc/
		if [ ! "$?" = "0" ]; then
			rm -rf $temp_restore_dir
			function_check set_user_permissions
			set_user_permissions
			function_check backup_unmount_drive
			backup_unmount_drive
			exit 3679
		fi
		cp -f $temp_restore_dir/home/$ADMIN_USERNAME/tempbackup/mumble-server.sqlite /var/lib/mumble-server/
		if [ ! "$?" = "0" ]; then
			rm -rf $temp_restore_dir
			function_check set_user_permissions
			set_user_permissions
			function_check backup_unmount_drive
			backup_unmount_drive
			exit 276
		fi
		rm -rf $temp_restore_dir
		cp /etc/ssl/certs/mumble* /var/lib/mumble-server
		cp /etc/ssl/private/mumble* /var/lib/mumble-server
		chown -R mumble-server:mumble-server /var/lib/mumble-server
		service mumble-server restart
	fi
}
function backup_remote_mumble {
	if [ -f /etc/mumble-server.ini ]; then
		echo $"Backing up VoIP settings"
		if [ ! -d /root/tempvoipbackup ]; then
			mkdir -p /root/tempvoipbackup
		fi
		cp -f /etc/mumble-server.ini /root/tempvoipbackup
		cp -f /var/lib/mumble-server/mumble-server.sqlite /root/tempvoipbackup
		backup_directory_to_friend /root/tempvoipbackup voip
		echo $"Backup of VoIP settings complete"
	fi
}
function restore_remote_mumble {
	if [ -d $SERVER_DIRECTORY/backup/voip ]; then
		echo $"Restoring Mumble settings"
		temp_restore_dir=/root/tempvoip
		function_check restore_directory_from_friend
		restore_directory_from_friend $temp_restore_dir voip
		cp -f $temp_restore_dir/home/$ADMIN_USERNAME/tempbackup/mumble-server.ini /etc/
		if [ ! "$?" = "0" ]; then
			rm -rf $temp_restore_dir
			exit 7823
		fi
		cp -f $temp_restore_dir/home/$ADMIN_USERNAME/tempbackup/sipwitch.conf /etc/sipwitch.conf
		if [ ! "$?" = "0" ]; then
			rm -rf $temp_restore_dir
			exit 7823
		fi
		cp -f $temp_restore_dir/home/$ADMIN_USERNAME/tempbackup/mumble-server.sqlite /var/lib/mumble-server/
		if [ ! "$?" = "0" ]; then
			rm -rf $temp_restore_dir
			exit 276
		fi
		rm -rf $temp_restore_dir
		cp /etc/ssl/certs/mumble* /var/lib/mumble-server
		cp /etc/ssl/private/mumble* /var/lib/mumble-server
		chown -R mumble-server:mumble-server /var/lib/mumble-server
		service mumble-server restart
		echo $"Restore of Mumble complete"
	fi
}
function remove_mumble {
	if !grep -Fxq "install_mumble" $COMPLETION_FILE; then
		if ! grep -Fxq "install_voip" $COMPLETION_FILE; then
			return
		fi
	fi
	apt-get -y remove --purge mumble-server
	if [[ $ONION_ONLY == "no" ]]; then
		iptables -D INPUT -p udp --dport $VOIP_PORT -j ACCEPT
		iptables -D INPUT -p tcp --dport $VOIP_PORT -j ACCEPT
		function_check save_firewall_settings
		save_firewall_settings
	fi
	if [ -f /etc/mumble-server.ini ]; then
		rm /etc/mumble-server.ini
	fi
	function_check remove_onion_service
	remove_onion_service voip ${VOIP_PORT}
	sed -i '/install_mumble/d' $COMPLETION_FILE
	sed -i '/install_voip/d' $COMPLETION_FILE
	sed -i '/configure_firewall_for_voip/d' $COMPLETION_FILE
	sed -i '/VoIP /d' $COMPLETION_FILE
}
function get_voip_server_password {
	if [ -f /home/$MY_USERNAME/README ]; then
		if grep -q "VoIP server password" /home/$MY_USERNAME/README; then
			if [ ! $VOIP_SERVER_PASSWORD ]; then
				VOIP_SERVER_PASSWORD=$(cat /home/$MY_USERNAME/README | grep "VoIP server password" | awk -F ':' '{print $2}' | sed 's/^ *//')
			fi
		else
			if grep -q "Mumble server password" /home/$MY_USERNAME/README; then
				if [ ! $VOIP_SERVER_PASSWORD ]; then
					VOIP_SERVER_PASSWORD=$(cat /home/$MY_USERNAME/README | grep "Mumble server password" | awk -F ':' '{print $2}' | sed 's/^ *//')
				fi
			fi
		fi
	fi
}
function configure_firewall_for_voip {
	if grep -Fxq "configure_firewall_for_voip" $COMPLETION_FILE; then
		return
	fi
	if [[ $ONION_ONLY != "no" ]]; then
		return
	fi
	iptables -A INPUT -p udp --dport $VOIP_PORT -j ACCEPT
	iptables -A INPUT -p tcp --dport $VOIP_PORT -j ACCEPT
	function_check save_firewall_settings
	save_firewall_settings
	OPEN_PORTS+=("Mumble   $VOIP_PORT")
	echo 'configure_firewall_for_voip' >> $COMPLETION_FILE
}
function install_mumble {
	if grep -Fxq "install_mumble" $COMPLETION_FILE; then
		return
	fi
	if grep -Fxq "install_voip" $COMPLETION_FILE; then
		return
	fi
	apt-get -y install mumble-server
	function_check get_voip_server_password
	get_voip_server_password
	if [ ! $VOIP_SERVER_PASSWORD ]; then
		if [ -f $IMAGE_PASSWORD_FILE ]; then
			VOIP_SERVER_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
		else
			VOIP_SERVER_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
			if [ ${#VOIP_SERVER_PASSWORD} -lt $MINIMUM_PASSWORD_LENGTH ]; then
				VOIP_SERVER_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
			fi
		fi
	fi
	# Make an ssl cert for the server
	if [ ! -f /etc/ssl/certs/mumble.dhparam ]; then
		${PROJECT_NAME}-addcert -h mumble --dhkey $DH_KEYLENGTH
		function_check check_certificates
		check_certificates mumble
	fi
	# Check that the cert was created
	if [ ! -f /etc/ssl/certs/mumble.crt ]; then
		echo $'VoIP server certificate not created'
		exit 57892
	fi
	if [ ! -f /etc/ssl/private/mumble.key ]; then
		echo $'VoIP server key not created'
		exit 57893
	fi
	if [ ! -d /var/lib/mumble-server ]; then
		mkdir /var/lib/mumble-server
	fi
	cp /etc/ssl/certs/mumble.* /var/lib/mumble-server
	cp /etc/ssl/private/mumble.key /var/lib/mumble-server
	chown -R mumble-server:mumble-server /var/lib/mumble-server
	sed -i "s|welcometext=.*|welcometext=\"<br />Welcome to $DEFAULT_DOMAIN_NAME <b>VoIP</b>.<br />Chat freely!<br />\"|g" /etc/mumble-server.ini
	if [[ $VOIP_SERVER_PASSWORD && $SYSTEM_TYPE != "$VARIANT_MESH" ]]; then
		sed -i "s|serverpassword=.*|serverpassword=$VOIP_SERVER_PASSWORD|g" /etc/mumble-server.ini
	fi
	sed -i 's|#autobanAttempts.*|autobanAttempts = 10|g' /etc/mumble-server.ini
	sed -i 's|#autobanTimeframe.*|autobanTimeframe = 120|g' /etc/mumble-server.ini
	sed -i 's|#autobanTime.*|autobanTime = 300|g' /etc/mumble-server.ini
	sed -i 's|#sendversion=.*|sendversion=False|g' /etc/mumble-server.ini
	sed -i 's|sendversion=.*|sendversion=False|g' /etc/mumble-server.ini
	if ! grep -q "allowping" /etc/mumble-server.ini; then
		echo 'allowping=False' >> /etc/mumble-server.ini
	fi
	sed -i 's|allowping=.*|allowping=False|g' /etc/mumble-server.ini
	sed -i 's|#sslCert=.*|sslCert=/var/lib/mumble-server/mumble.crt|g' /etc/mumble-server.ini
	sed -i 's|#sslKey=.*|sslKey=/var/lib/mumble-server/mumble.key|g' /etc/mumble-server.ini
	sed -i 's|#certrequired=.*|certrequired=True|g' /etc/mumble-server.ini
	sed -i 's|users=100|users=10|g' /etc/mumble-server.ini
	sed -i 's|#channelnestinglimit=10|channelnestinglimit=10|g' /etc/mumble-server.ini
	sed -i 's|#textmessagelength=.*|textmessagelength=1000|g' /etc/mumble-server.ini
	sed -i 's|textmessagelength=.*|textmessagelength=1000|g' /etc/mumble-server.ini
	sed -i 's|#imagemessagelength=.*|imagemessagelength=131072|g' /etc/mumble-server.ini
	sed -i 's|#allowhtml=.*|allowhtml=False|g' /etc/mumble-server.ini
	sed -i 's|allowhtml=.*|allowhtml=False|g' /etc/mumble-server.ini
	sed -i "s|port=.*|port=${VOIP_PORT}|g" /etc/mumble-server.ini
	VOIP_ONION_HOSTNAME=$(add_onion_service voip ${VOIP_PORT} ${VOIP_PORT})
	if ! grep -q $"VoIP onion domain" $COMPLETION_FILE; then
		echo "VoIP onion domain:$VOIP_ONION_HOSTNAME" >> $COMPLETION_FILE
	fi
	systemctl restart mumble-server
	if ! grep -q $"Mumble Server" /home/$MY_USERNAME/README; then
		echo '' >> /home/$MY_USERNAME/README
		echo '' >> /home/$MY_USERNAME/README
		echo $'Mumble Server' >> /home/$MY_USERNAME/README
		echo '=============' >> /home/$MY_USERNAME/README
		echo $"Mumble onion domain:$VOIP_ONION_HOSTNAME" >> /home/$MY_USERNAME/README
		echo $'Mumble server username: mumble-server' >> /home/$MY_USERNAME/README
		if [[ $SYSTEM_TYPE != "VARIANT_MESH" ]]; then
			echo $"Mumble server password: $VOIP_SERVER_PASSWORD" >> /home/$MY_USERNAME/README
		fi
		echo '' >> /home/$MY_USERNAME/README
		echo $'To connect to the Mumble server use your username and the server password shown above.' >> /home/$MY_USERNAME/README
		chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/README
		chmod 600 /home/$MY_USERNAME/README
	fi
	function_check configure_firewall_for_voip
	configure_firewall_for_voip
	echo 'install_mumble' >> $COMPLETION_FILE
}
# NOTE: deliberately no exit 0
 |