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

116 lines
2.9 KiB
Bash
Raw Normal View History

2014-09-19 23:06:14 +08:00
#!/bin/sh
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-09-19 23:06:14 +08:00
# init
users_enabled="$HOME/.zjunet/users-enabled"
users_disabled="$HOME/.zjunet/users-disabled"
mkdir -p $users_enabled
mkdir -p $users_disabled
2014-09-19 23:06:14 +08:00
BASEDIR=$(dirname $0)
2014-09-20 18:13:40 +08:00
getall() {
ls -1A $users_enabled | xargs | tr "\n" " "
2014-09-20 18:13:40 +08:00
}
edituser() {
username=$1
password=$2
echo $password > "$users_enabled/${username}"
echo "[INFO] Disconnect VPN"
"${BASEDIR}/sudo.sh" "${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
enable)
users=$(ls -1A $users_disabled | xargs | tr "\n" " ")
read -p "Enable User [ ${users}]: " username
mv "${users_disabled}/${username}" "${users_enabled}/${username}"
;;
disable)
users=$(getall)
read -p "Disable User [ ${users}]: " username
mv "${users_enabled}/${username}" "${users_disabled}/${username}"
;;
2014-09-19 23:06:14 +08:00
add)
read -p "username: " username
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
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
delete)
users=$(getall)
read -p "Delete User [ ${users}]: " username
rm -i "$users_enabled/${username}"
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)
ls -1A $users_enabled
2014-09-20 17:19:56 +08:00
;;
# Get a user
# @private
get)
count=$(ls -1A $users_enabled | 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
username=$(ls -1 $users_enabled | 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
cat "${users_enabled}/${username}"
2014-09-19 23:06:14 +08:00
;;
2014-09-20 20:20:11 +08:00
*)
${BASEDIR}/zjunet.sh usage
;;
2014-09-19 23:06:14 +08:00
esac