1
0
mirror of https://github.com/QSCTech/zjunet.git synced 2026-01-22 11:44:48 +08:00
zjunet/lib/user.sh

94 lines
2.3 KiB
Bash
Raw Permalink Normal View History

2018-12-09 15:39:12 +08:00
#!/bin/bash
2014-09-19 23:06:14 +08:00
2014-09-20 15:39:28 +08:00
# user.sh -- User Manager
#
# Copyright (C) 2014 Zeno Zeng <zenoofzeng@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU 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
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see
# <http://www.gnu.org/licenses/>.
2014-10-15 16:24:20 +08:00
L2TPD_CFG_FILE=/etc/xl2tpd/xl2tpd.conf
2014-09-19 23:06:14 +08:00
BASEDIR=$(dirname $0)
2014-09-20 18:13:40 +08:00
getall() {
cat $L2TPD_CFG_FILE | grep 'lac zju-l2tp-' | sed 's/\[lac zju-l2tp-//' | sed 's/\]//'
2014-09-20 18:13:40 +08:00
}
edituser() {
username=$1
password=$2
echo "[INFO] Disconnect VPN"
2014-10-13 21:18:58 +08:00
"${BASEDIR}/vpn.sh" disconnect
echo "[INFO] Write to xl2tpd.conf"
"${BASEDIR}/sudo.sh" "${BASEDIR}/xl2tpd.sh" adduser ${username} $password
echo "[INFO] Restart xl2tpd"
"${BASEDIR}/sudo.sh" "${BASEDIR}/xl2tpd.sh" restart
}
2014-09-19 23:06:14 +08:00
# dispatch
case "$1" in
2014-09-20 17:19:56 +08:00
2014-09-19 23:06:14 +08:00
add)
read -p "username: " username
2017-05-20 01:12:44 +08:00
read -p "password: " password
edituser $username $password
2014-09-19 23:06:14 +08:00
;;
2014-09-20 17:19:56 +08:00
2014-09-19 23:06:14 +08:00
edit)
users=$(getall)
read -p "username [ ${users}]: " username
2017-05-20 01:12:44 +08:00
read -p "password: " password
edituser $username $password
2014-09-19 23:06:14 +08:00
;;
2014-09-20 17:19:56 +08:00
2014-09-19 23:06:14 +08:00
list)
2014-10-15 16:24:20 +08:00
getall
2014-09-20 17:19:56 +08:00
;;
# Get a user
# @private
get)
2014-10-15 16:35:07 +08:00
count=$(getall | wc -l)
2014-09-22 00:47:27 +08:00
if [ "${count}" -eq "0" ]; then
2014-09-20 17:19:56 +08:00
echo "No user found. Use 'zjunet user add' to add a user."
exit 1
else
if [ "${count}" -gt "1" ]; then
users=$(getall)
read -p "Choose User [ ${users}]: " username
2014-09-20 17:19:56 +08:00
else
2014-10-15 16:35:07 +08:00
username=$(getall | head -n1)
2014-09-20 17:19:56 +08:00
fi
echo $username
2014-09-20 17:19:56 +08:00
fi
;;
# Get all users
# @private
getall)
2014-09-20 18:13:40 +08:00
getall
2014-09-20 17:19:56 +08:00
;;
# @private
getpwd)
username=$2
2014-10-15 16:24:20 +08:00
"${BASEDIR}/sudo.sh" cat /etc/ppp/peers/zju-l2tp-${username} | grep password | sed 's/password //'
2014-09-19 23:06:14 +08:00
;;
2014-10-15 16:24:20 +08:00
2014-09-20 20:20:11 +08:00
*)
${BASEDIR}/zjunet.sh usage
;;
2014-09-19 23:06:14 +08:00
esac