123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- #!/bin/bash
- #
- # .---. . .
- # | | |
- # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
- # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
- # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
- #
- # Freedom in the Cloud
- #
-
- # Removes a user from the system
-
- # License
- # =======
- #
- # Copyright (C) 2015-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/>.
-
- PROJECT_NAME='freedombone'
-
- export TEXTDOMAIN=${PROJECT_NAME}-rmuser
- export TEXTDOMAINDIR="/usr/share/locale"
-
- MY_USERNAME=$1
- COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
-
- if [ ! $MY_USERNAME ]; then
- echo $'Please specify a username to remove'
- exit 1
- fi
-
- if [[ $MY_USERNAME == 'git' || $MY_USERNAME == 'mirrors' ]]; then
- echo $'Cannot remove reserved users'
- exit 2
- fi
-
- if [ ! -d /home/$MY_USERNAME ]; then
- echo $"Home directory does not exist for $MY_USERNAME"
- exit 3
- fi
-
- if [ ! -f $COMPLETION_FILE ]; then
- echo $"$COMPLETION_FILE not found"
- exit 4
- fi
-
- if ! grep -q "Admin user" $COMPLETION_FILE; then
- echo $"No admin user specified in $COMPLETION_FILE"
- exit 5
- fi
-
- ADMIN_USERNAME=$(cat $COMPLETION_FILE | grep "Admin user" | awk -F ':' '{print $2}')
- if [ ! $ADMIN_USERNAME ]; then
- echo $"No admin username specified in $COMPLETION_FILE"
- exit 6
- fi
-
- if [[ $MY_USERNAME == $ADMIN_USERNAME ]]; then
- echo $"The administrator user cannot be removed"
- exit 7
- fi
-
- echo $'>>> REMOVE USER <<<'
- read -p $"Do you really wish to remove the user '$MY_USERNAME' (y/n) ?" yn
- if [[ $yn != 'y' && $yn != 'Y' && $yn != 'yes' && $yn != 'Yes' && $yn != 'YES' ]]; then
- echo $"User $MY_USERNAME was not removed"
- exit 8
- fi
-
- if grep -q "install_xmpp" $COMPLETION_FILE; then
- ${PROJECT_NAME}-rmxmpp -e "$MY_USERNAME@$HOSTNAME"
- fi
-
- if grep -q "Blog domain" $COMPLETION_FILE; then
- FULLBLOG_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "Blog domain" | awk -F ':' '{print $2}')
- if [ -f /var/www/$FULLBLOG_DOMAIN_NAME/htdocs/config/users/$MY_USERNAME.ini ]; then
- rm /var/www/$FULLBLOG_DOMAIN_NAME/htdocs/config/users/$MY_USERNAME.ini
- fi
- fi
-
- if grep -q "install_sip" $COMPLETION_FILE; then
- ${PROJECT_NAME}-rmsipuser $MY_USERNAME
- fi
-
- if grep -q "GNU Social domain" $COMPLETION_FILE; then
- MICROBLOG_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "GNU Social domain" | awk -F ':' '{print $2}')
- if [ -d /var/www/$MICROBLOG_DOMAIN_NAME ]; then
- cd /var/www/$MICROBLOG_DOMAIN_NAME/htdocs
- php scripts/deleteprofile.php -n $MY_USERNAME -y
- echo $'Removed GNU Social user'
- fi
- fi
-
- if [ -f /etc/nginx/.htpasswd ]; then
- if grep "${MY_USERNAME}:" /etc/nginx/.htpasswd; then
- htpasswd -D /etc/nginx/.htpasswd $MY_USERNAME
- fi
- fi
-
- # remove user from SIP TURN/STUN
- if [ -d /etc/turnserver ]; then
- sed -i "/${MY_USERNAME}:/d" /etc/turnserver/turnusers.txt
- fi
-
- # remove gpg keys
- if [ -d /home/$MY_USERNAME/.gnupg ]; then
- shred -zu /home/$MY_USERNAME/.gnupg/*
- fi
-
- # remove ssh keys
- if [ -d /home/$MY_USERNAME/.ssh ]; then
- shred -zu /home/$MY_USERNAME/.ssh/*
- fi
-
- # remove tox indentity
- if [ -d /home/$MY_USERNAME/.config/tox ]; then
- if [ -d /home/$MY_USERNAME/.config/tox/chatlogs ]; then
- shred -zu /home/$MY_USERNAME/.config/tox/chatlogs/*
- rm -rf /home/$MY_USERNAME/.config/tox/chatlogs
- fi
- shred -zu /home/$MY_USERNAME/.config/tox/*
- fi
-
- userdel -r $MY_USERNAME
-
- if [ -d /home/$MY_USERNAME ]; then
- rm -rf /home/$MY_USERNAME
- fi
-
- echo $"User $MY_USERNAME was removed"
-
- exit 0
|