Statistics
| Branch: | Tag: | Revision:

root / astakos / im / management / commands / createuser.py @ 397d5cbe

History | View | Annotate | Download (3.7 kB)

1
# Copyright 2012 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
from optparse import make_option
35
from random import choice
36
from string import digits, lowercase, uppercase
37
from uuid import uuid4
38

    
39
from django.core.management.base import BaseCommand, CommandError
40

    
41
from astakos.im.models import AstakosUser
42

    
43

    
44
def generate_password():
45
    pool = lowercase + uppercase + digits
46
    return ''.join(choice(pool) for i in range(10))
47

    
48

    
49
class Command(BaseCommand):
50
    args = "<email> <first name> <last name> <affiliation>"
51
    help = "Modify a user's attributes"
52
    
53
    option_list = BaseCommand.option_list + (
54
        make_option('--active',
55
            action='store_true',
56
            dest='active',
57
            default=False,
58
            help="Activate user"),
59
        make_option('--admin',
60
            action='store_true',
61
            dest='admin',
62
            default=False,
63
            help="Give user admin rights"),
64
        make_option('--password',
65
            dest='password',
66
            metavar='PASSWORD',
67
            help="Set user's password")
68
        )
69
    
70
    def handle(self, *args, **options):
71
        if len(args) != 4:
72
            raise CommandError("Invalid number of arguments")
73
        
74
        args = [a.decode('utf8') for a in args]
75
        email, first, last, affiliation = args
76
        
77
        username =  uuid4().hex[:30]
78
        password = options.get('password')
79
        if password is None:
80
            password = generate_password()
81
        
82
        try:
83
            AstakosUser.objects.get(email=email)
84
            raise CommandError("A user with this email already exists")
85
        except AstakosUser.DoesNotExist:
86
            pass
87
        
88
        user = AstakosUser(username=username, first_name=first, last_name=last,
89
                           email=email, affiliation=affiliation,
90
                           provider='local')
91
        user.set_password(password)
92
        user.renew_token()
93
        
94
        if options['active']:
95
            user.is_active = True
96
        if options['admin']:
97
            user.is_admin = True
98
        
99
        user.save()
100
        
101
        msg = "Created user id %d" % (user.id,)
102
        if options['password'] is None:
103
            msg += " with password '%s'" % (password,)
104
        self.stdout.write(msg + '\n')