2012-12-06 23:26:47 +01:00
|
|
|
import sys
|
2013-01-08 23:05:42 +01:00
|
|
|
from optparse import make_option
|
2012-12-06 23:26:47 +01:00
|
|
|
|
|
|
|
from django.core.management.base import BaseCommand, CommandError
|
|
|
|
from django.core.exceptions import ValidationError
|
|
|
|
from django.db.utils import IntegrityError
|
|
|
|
from django.core import validators
|
|
|
|
|
2013-01-10 22:01:33 +01:00
|
|
|
from zephyr.models import Realm
|
2013-03-08 20:24:09 +01:00
|
|
|
from zephyr.lib.actions import do_create_user
|
2013-01-10 22:01:33 +01:00
|
|
|
from zephyr.views import notify_new_user
|
2012-12-06 23:26:47 +01:00
|
|
|
from zephyr.lib.initial_password import initial_password
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
2013-01-08 23:05:42 +01:00
|
|
|
help = """Create the specified user with a default initial password.
|
|
|
|
|
|
|
|
A user MUST have ALREADY accepted the Terms of Service before creating their
|
|
|
|
account this way.
|
|
|
|
"""
|
|
|
|
|
|
|
|
option_list = BaseCommand.option_list + (
|
|
|
|
make_option('--this-user-has-accepted-the-tos',
|
|
|
|
dest='tos',
|
|
|
|
action="store_true",
|
|
|
|
default=False,
|
|
|
|
help='Acknowledgement that the user has already accepted the ToS.'),
|
|
|
|
)
|
2012-12-06 23:26:47 +01:00
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
2013-01-08 23:05:42 +01:00
|
|
|
if not options["tos"]:
|
|
|
|
raise CommandError("""You must confirm that this user has accepted the
|
|
|
|
Terms of Service by passing --this-user-has-accepted-the-tos.""")
|
|
|
|
|
2012-12-06 23:26:47 +01:00
|
|
|
try:
|
|
|
|
email, full_name = args
|
|
|
|
try:
|
|
|
|
validators.validate_email(email)
|
|
|
|
except ValidationError:
|
|
|
|
raise CommandError("Invalid email address.")
|
|
|
|
except ValueError:
|
|
|
|
if len(args) != 0:
|
|
|
|
raise CommandError("Either specify an email and full name" + \
|
|
|
|
"as two parameters, or specify no parameters for" + \
|
|
|
|
"interactive user creation.")
|
|
|
|
return 1
|
|
|
|
else:
|
|
|
|
while True:
|
|
|
|
email = raw_input("Email: ")
|
|
|
|
try:
|
|
|
|
validators.validate_email(email)
|
|
|
|
break
|
|
|
|
except ValidationError:
|
|
|
|
print >> sys.stderr, "Invalid email address."
|
|
|
|
full_name = raw_input("Full name: ")
|
|
|
|
|
|
|
|
try:
|
|
|
|
realm = Realm.objects.get(domain=email.split('@')[-1])
|
|
|
|
except Realm.DoesNotExist:
|
|
|
|
raise CommandError("Realm does not exist.")
|
|
|
|
|
|
|
|
try:
|
2012-12-07 00:02:53 +01:00
|
|
|
notify_new_user(do_create_user(email, initial_password(email),
|
|
|
|
realm, full_name, email.split('@')[0]),
|
|
|
|
internal=True)
|
2012-12-06 23:26:47 +01:00
|
|
|
except IntegrityError:
|
|
|
|
raise CommandError("User already exists.")
|