2015-11-02 09:13:11 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# .---. . .
|
|
|
|
# | | |
|
|
|
|
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
|
|
|
|
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
|
|
|
|
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
|
|
|
|
#
|
|
|
|
# Freedom in the Cloud
|
|
|
|
#
|
|
|
|
|
|
|
|
# Adds a SIP phone user to the system
|
|
|
|
|
|
|
|
# License
|
|
|
|
# =======
|
|
|
|
#
|
2016-10-31 17:24:49 +01:00
|
|
|
# Copyright (C) 2015-2016 Bob Mottram <bob@freedombone.net>
|
2015-11-02 09:13:11 +01:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2016-02-13 23:09:27 +01:00
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
2015-11-02 09:13:11 +01:00
|
|
|
# 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
|
2016-02-13 23:09:27 +01:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
2015-11-02 09:13:11 +01:00
|
|
|
#
|
2016-02-13 23:09:27 +01:00
|
|
|
# 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/>.
|
2015-11-02 09:13:11 +01:00
|
|
|
|
2015-11-27 12:42:16 +01:00
|
|
|
PROJECT_NAME='freedombone'
|
|
|
|
|
2015-11-27 17:52:23 +01:00
|
|
|
export TEXTDOMAIN=${PROJECT_NAME}-addsipuser
|
2015-11-27 12:42:16 +01:00
|
|
|
export TEXTDOMAINDIR="/usr/share/locale"
|
|
|
|
|
2015-11-02 11:00:53 +01:00
|
|
|
MY_USERNAME=
|
|
|
|
EXTENSION=
|
|
|
|
PASSWORD=
|
|
|
|
CONFIG_FILE=/etc/sipwitch.conf
|
|
|
|
USER_EXISTS="no"
|
|
|
|
|
|
|
|
function show_help {
|
|
|
|
echo ''
|
2015-12-08 17:22:48 +01:00
|
|
|
echo $"${PROJECT_NAME}-addsipuser -u [username] -e [extension] -p [password]"
|
2015-11-02 11:00:53 +01:00
|
|
|
echo ''
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
function sip_user_exists {
|
2015-11-02 13:11:49 +01:00
|
|
|
IFS=''
|
|
|
|
while read line; do
|
2016-10-31 17:24:49 +01:00
|
|
|
if [[ "$line" == *"<user id=\"$MY_USERNAME\">" ]]; then
|
|
|
|
USER_EXISTS="yes"
|
|
|
|
return
|
|
|
|
fi
|
2015-11-02 13:11:49 +01:00
|
|
|
done < $CONFIG_FILE
|
2015-11-02 11:00:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function update_sip_user {
|
|
|
|
USER_FOUND=
|
|
|
|
NEW_CONFIG_FILE="${CONFIG_FILE}.new"
|
|
|
|
if [ -f $NEW_CONFIG_FILE ]; then
|
2016-10-31 17:24:49 +01:00
|
|
|
rm -f $NEW_CONFIG_FILE
|
2015-11-02 11:00:53 +01:00
|
|
|
fi
|
|
|
|
touch $NEW_CONFIG_FILE
|
2015-11-02 13:11:49 +01:00
|
|
|
IFS=''
|
|
|
|
while read line; do
|
2016-10-31 17:24:49 +01:00
|
|
|
if [ ! $USER_FOUND ]; then
|
|
|
|
if [[ "$line" == *"<user id=\"$MY_USERNAME\">" ]]; then
|
|
|
|
USER_FOUND="yes"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [[ "$line" == *"<extension>"* ]]; then
|
|
|
|
line=" <extension>$EXTENSION</extension>"
|
|
|
|
fi
|
|
|
|
if [[ "$line" == *"<secret>"* ]]; then
|
|
|
|
line=" <secret>$PASSWORD</secret>"
|
|
|
|
fi
|
|
|
|
if [[ "$line" == *"<display>"* ]]; then
|
|
|
|
line=" <display>$MY_USERNAME $EXTENSION</display>"
|
|
|
|
USER_FOUND=
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo $line >> $NEW_CONFIG_FILE
|
2015-11-02 13:11:49 +01:00
|
|
|
done < $CONFIG_FILE
|
2015-11-02 11:00:53 +01:00
|
|
|
mv $NEW_CONFIG_FILE $CONFIG_FILE
|
|
|
|
}
|
|
|
|
|
|
|
|
function add_sip_user {
|
|
|
|
NEW_CONFIG_FILE="${CONFIG_FILE}.new"
|
|
|
|
if [ -f $NEW_CONFIG_FILE ]; then
|
2016-10-31 17:24:49 +01:00
|
|
|
rm -f $NEW_CONFIG_FILE
|
2015-11-02 11:00:53 +01:00
|
|
|
fi
|
|
|
|
touch $NEW_CONFIG_FILE
|
2015-11-02 13:11:49 +01:00
|
|
|
IFS=''
|
|
|
|
while read line; do
|
2016-10-31 17:24:49 +01:00
|
|
|
if [[ "$line" == *'</provision>' ]]; then
|
|
|
|
echo " <user id=\"$MY_USERNAME\">" >> $NEW_CONFIG_FILE
|
|
|
|
echo " <extension>$EXTENSION</extension>" >> $NEW_CONFIG_FILE
|
|
|
|
echo " <secret>$PASSWORD</secret>" >> $NEW_CONFIG_FILE
|
|
|
|
echo " <display>$MY_USERNAME $EXTENSION</display>" >> $NEW_CONFIG_FILE
|
|
|
|
echo ' </user>' >> $NEW_CONFIG_FILE
|
|
|
|
fi
|
|
|
|
echo $line >> $NEW_CONFIG_FILE
|
2015-11-02 13:11:49 +01:00
|
|
|
done < $CONFIG_FILE
|
2015-11-02 11:00:53 +01:00
|
|
|
mv $NEW_CONFIG_FILE $CONFIG_FILE
|
2016-11-29 16:00:40 +01:00
|
|
|
chmod 600 /etc/shadow
|
|
|
|
chmod 600 /etc/gshadow
|
2015-11-02 11:56:02 +01:00
|
|
|
usermod -aG sipwitch $MY_USERNAME
|
2016-11-29 16:00:40 +01:00
|
|
|
chmod 0000 /etc/shadow
|
|
|
|
chmod 0000 /etc/gshadow
|
2015-11-02 11:00:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
while [[ $# > 1 ]]
|
|
|
|
do
|
2016-03-22 15:43:27 +01:00
|
|
|
key="$1"
|
|
|
|
|
|
|
|
case $key in
|
2016-10-31 17:24:49 +01:00
|
|
|
-h|--help)
|
|
|
|
show_help
|
|
|
|
;;
|
|
|
|
-u|--user)
|
|
|
|
shift
|
|
|
|
MY_USERNAME="$1"
|
|
|
|
;;
|
|
|
|
-e|--extension)
|
|
|
|
shift
|
|
|
|
EXTENSION="$1"
|
|
|
|
;;
|
|
|
|
-p|--password)
|
|
|
|
shift
|
|
|
|
PASSWORD="$1"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# unknown option
|
|
|
|
;;
|
2016-03-22 15:43:27 +01:00
|
|
|
esac
|
2015-11-02 11:00:53 +01:00
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
if ! [[ $MY_USERNAME && $EXTENSION && $PASSWORD ]]; then
|
|
|
|
show_help
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f $CONFIG_FILE ]; then
|
2015-11-27 16:29:43 +01:00
|
|
|
echo $"SIP configuration file not found"
|
2015-11-02 11:00:53 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# the user must already exist on the system
|
|
|
|
if [ ! -d /home/$MY_USERNAME ]; then
|
2015-11-27 16:29:43 +01:00
|
|
|
echo $"User $MY_USERNAME not found"
|
2015-11-02 11:00:53 +01:00
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
|
|
|
sip_user_exists
|
|
|
|
|
2015-11-02 11:12:49 +01:00
|
|
|
if [[ $USER_EXISTS == "yes" ]]; then
|
2015-11-02 11:00:53 +01:00
|
|
|
update_sip_user
|
2015-11-27 16:29:43 +01:00
|
|
|
echo $"SIP user $MY_USERNAME amended"
|
2015-11-02 11:00:53 +01:00
|
|
|
else
|
|
|
|
add_sip_user
|
2015-11-27 16:29:43 +01:00
|
|
|
echo $"SIP user $MY_USERNAME added"
|
2015-11-02 11:00:53 +01:00
|
|
|
fi
|
|
|
|
|
2015-11-02 13:19:30 +01:00
|
|
|
systemctl restart sipwitch
|
2015-11-02 11:00:53 +01:00
|
|
|
|
2015-11-02 09:13:11 +01:00
|
|
|
exit 0
|