mirror of
https://github.com/zulip/zulip.git
synced 2025-11-08 16:01:58 +00:00
The previous situation was bad for two reasons: (1) It had a lot of copies of the code, some of them missing pieces: UserProfile.objects.get(user__email__iexact=foo) This was in particular going to be inconvenient since we are dropping the __user part of that. (2) It didn't take advantage of our memcached caching. (imported from commit 2325795f288a7cf306cdae191f5d3080aac0651a)
40 lines
1.4 KiB
Python
40 lines
1.4 KiB
Python
from optparse import make_option
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
from zephyr.lib.actions import do_deactivate, user_sessions
|
|
from zephyr.models import UserProfile, get_user_profile_by_email
|
|
|
|
class Command(BaseCommand):
|
|
help = "Deactivate a user, including forcibly logging them out."
|
|
|
|
option_list = BaseCommand.option_list + (
|
|
make_option('-f', '--for-real',
|
|
dest='for_real',
|
|
action='store_true',
|
|
default=False,
|
|
help="Actually deactivate the user. Default is a dry run."),
|
|
)
|
|
|
|
def handle(self, *args, **options):
|
|
if not args:
|
|
print "Please specify an e-mail address."
|
|
exit(1)
|
|
|
|
user_profile = get_user_profile_by_email(args[0])
|
|
|
|
print "Deactivating %s (%s) - %s" % (user_profile.full_name,
|
|
user_profile.user.email,
|
|
user_profile.realm.domain)
|
|
print "%s has the following active sessions:" % (user_profile.user.email,)
|
|
for session in user_sessions(user_profile.user):
|
|
print session.expire_date, session.get_decoded()
|
|
print ""
|
|
|
|
if not options["for_real"]:
|
|
print "This was a dry run. Pass -f to actually deactivate."
|
|
exit(1)
|
|
|
|
do_deactivate(user_profile)
|
|
print "Sessions deleted, user deactivated."
|