Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (4.2 kB)

1
# Copyright 2012, 2013 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 datetime import datetime
36

    
37
from django.db import transaction
38
from snf_django.management.commands import SynnefoCommand, CommandError
39
from django.core.validators import validate_email
40
from django.core.exceptions import ValidationError
41

    
42
from astakos.im.models import AstakosUser, get_latest_terms
43
from astakos.im.auth import make_local_user
44

    
45

    
46
class Command(SynnefoCommand):
47
    args = "<email> <first name> <last name>"
48
    help = "Create a user"
49

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

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

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

    
80
        password = options['password'] or \
81
            AstakosUser.objects.make_random_password()
82

    
83
        try:
84
            validate_email(email)
85
        except ValidationError:
86
            raise CommandError("Invalid email")
87

    
88
        has_signed_terms = not(get_latest_terms())
89

    
90
        try:
91
            user = make_local_user(
92
                email, first_name=first_name, last_name=last_name,
93
                password=password, has_signed_terms=has_signed_terms)
94
            if options['is_superuser']:
95
                user.is_superuser = True
96
                user.save()
97

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

    
107
            try:
108
                map(user.add_permission, options['permissions'])
109
                map(user.add_group, options['groups'])
110
            except BaseException, e:
111
                raise CommandError(e)