Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / management / commands / createuser.py @ 30dc8c1a

History | View | Annotate | Download (5.3 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
import socket
35

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

    
41
from django.core.management.base import BaseCommand, CommandError
42
from django.core.validators import validate_email
43
from django.core.exceptions import ValidationError
44
from django.contrib.auth.models import Group, Permission
45
from django.contrib.contenttypes.models import ContentType
46

    
47
from astakos.im.models import AstakosUser
48
from astakos.im.util import reserved_email
49

    
50
from ._common import add_user_permission
51

    
52
class Command(BaseCommand):
53
    args = "<email> <first name> <last name> <affiliation>"
54
    help = "Create a user"
55
    
56
    option_list = BaseCommand.option_list + (
57
        make_option('--active',
58
            action='store_true',
59
            dest='active',
60
            default=False,
61
            help="Activate user"),
62
        make_option('--admin',
63
            action='store_true',
64
            dest='admin',
65
            default=False,
66
            help="Give user admin rights"),
67
        make_option('--password',
68
            dest='password',
69
            metavar='PASSWORD',
70
            help="Set user's password"),
71
        make_option('--add-group',
72
            dest='add-group',
73
            help="Add user group"),
74
        make_option('--add-permission',
75
            dest='add-permission',
76
            help="Add user permission")
77
        )
78
    
79
    def handle(self, *args, **options):
80
        if len(args) != 4:
81
            raise CommandError("Invalid number of arguments")
82
        
83
        args = [a.decode('utf8') for a in args]
84
        email, first, last, affiliation = args
85
        
86
        try:
87
            validate_email( email )
88
        except ValidationError:
89
            raise CommandError("Invalid email")
90
        
91
        username =  uuid4().hex[:30]
92
        password = options.get('password')
93
        if password is None:
94
            password = AstakosUser.objects.make_random_password()
95
        
96
        if reserved_email(email):
97
            raise CommandError("A user with this email already exists")
98
        
99
        user = AstakosUser(username=username, first_name=first, last_name=last,
100
                           email=email, affiliation=affiliation,
101
                           provider='local')
102
        user.set_password(password)
103
        user.renew_token()
104
        
105
        if options['active']:
106
            user.is_active = True
107
        if options['admin']:
108
            user.is_admin = True
109
        
110
        try:
111
            user.save()
112
        except socket.error, e:
113
            raise CommandError(e)
114
        except ValidationError, e:
115
            raise CommandError(e)
116
        else:
117
            msg = "Created user id %d" % (user.id,)
118
            if options['password'] is None:
119
                msg += " with password '%s'" % (password,)
120
            self.stdout.write(msg + '\n')
121
            
122
            groupname = options.get('add-group')
123
            if groupname is not None:
124
                try:
125
                    group = Group.objects.get(name=groupname)
126
                    user.groups.add(group)
127
                    self.stdout.write('Group: %s added successfully\n' % groupname)
128
                except Group.DoesNotExist, e:
129
                    self.stdout.write('Group named %s does not exist\n' % groupname)
130
            
131
            pname = options.get('add-permission')
132
            if pname is not None:
133
                try:
134
                    r, created = add_user_permission(user, pname)
135
                    if created:
136
                        self.stdout.write('Permission: %s created successfully\n' % pname)
137
                    if r > 0:
138
                        self.stdout.write('Permission: %s added successfully\n' % pname)
139
                    elif r==0:
140
                        self.stdout.write('User has already permission: %s\n' % pname)
141
                except Exception, e:
142
                    raise CommandError(e)