1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-04-27 11:01:14 +00:00
seahub/seahub/base/management/commands/changepassword.py
2013-05-02 19:27:17 +08:00

49 lines
1.5 KiB
Python

from django.core.management.base import BaseCommand, CommandError
from base.accounts import User
import getpass
class Command(BaseCommand):
help = "Change a user's password for seahub."
requires_model_validation = False
def _get_pass(self, prompt="Password: "):
p = getpass.getpass(prompt=prompt)
if not p:
raise CommandError("aborted")
return p
def handle(self, *args, **options):
if len(args) != 1:
raise CommandError("need exactly one arguments for email")
if args:
username, = args
else:
username = getpass.getuser()
try:
u = User.objects.get(email=username)
except User.DoesNotExist:
raise CommandError("user '%s' does not exist" % username)
print "Changing password for user '%s'" % u.username
MAX_TRIES = 3
count = 0
p1, p2 = 1, 2 # To make them initially mismatch.
while p1 != p2 and count < MAX_TRIES:
p1 = self._get_pass()
p2 = self._get_pass("Password (again): ")
if p1 != p2:
print "Passwords do not match. Please try again."
count = count + 1
if count == MAX_TRIES:
raise CommandError("Aborting password change for user '%s' after %s attempts" % (username, count))
u.set_password(p1)
u.save()
return "Password changed successfully for user '%s'" % u.username