Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / management / commands / user-add.py @ 47ea6978

History | View | Annotate | Download (4 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

    
36
from django.db import transaction
37
from django.core.management.base import BaseCommand, CommandError
38
from django.core.validators import validate_email
39
from django.core.exceptions import ValidationError
40

    
41
from astakos.im.models import AstakosUser
42

    
43

    
44
class Command(BaseCommand):
45
    args = "<email> <first name> <last name>"
46
    help = "Create a user"
47

    
48
    option_list = BaseCommand.option_list + (
49
        make_option('--password',
50
                    dest='password',
51
                    metavar='PASSWORD',
52
                    help="Set user's password"),
53
        make_option('--admin',
54
                    action='store_true',
55
                    dest='is_superuser',
56
                    default=False,
57
                    help="Give user admin rights"),
58
        make_option('-g',
59
                    action='append',
60
                    dest='groups',
61
                    default=[],
62
                    help="Add user group (may be used multiple times)"),
63
        make_option('-p',
64
                    action='append',
65
                    dest='permissions',
66
                    default=[],
67
                    help="Add user permission (may be used multiple times)")
68
    )
69

    
70
    @transaction.commit_on_success
71
    def handle(self, *args, **options):
72
        if len(args) != 3:
73
            raise CommandError("Invalid number of arguments")
74

    
75
        email, first_name, last_name = map(lambda arg: arg.decode('utf8'),
76
                                           args[:3])
77

    
78
        password = options['password'] or \
79
            AstakosUser.objects.make_random_password()
80

    
81
        try:
82
            validate_email(email)
83
        except ValidationError:
84
            raise CommandError("Invalid email")
85

    
86
        try:
87
            u = AstakosUser(email=email,
88
                            first_name=first_name,
89
                            last_name=last_name,
90
                            is_superuser=options['is_superuser'])
91
            u.set_password(password)
92
            u.save()
93

    
94
        except BaseException, e:
95
            raise CommandError(e)
96
        else:
97
            self.stdout.write('User created successfully ')
98
            if not options.get('password'):
99
                self.stdout.write('with password: %s\n' % password)
100
            else:
101
                self.stdout.write('\n')
102

    
103
            try:
104
                u.add_auth_provider('local')
105
                map(u.add_permission, options['permissions'])
106
                map(u.add_group, options['groups'])
107
            except BaseException, e:
108
                raise CommandError(e)