Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (4.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
from datetime import datetime
36

    
37
from django.db import transaction
38
from django.core.management.base import BaseCommand, 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

    
44

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

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

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

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

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

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

    
87
        if get_latest_terms() is not None:
88
            has_signed_terms = False
89
            date_signed_terms = None
90
        else:
91
            has_signed_terms = True
92
            date_signed_terms = datetime.now()
93

    
94
        try:
95
            u = AstakosUser(email=email,
96
                            first_name=first_name,
97
                            last_name=last_name,
98
                            has_signed_terms=has_signed_terms,
99
                            date_signed_terms=date_signed_terms,
100
                            is_superuser=options['is_superuser'])
101
            u.set_password(password)
102
            u.save()
103

    
104
        except BaseException, e:
105
            raise CommandError(e)
106
        else:
107
            self.stdout.write('User created successfully ')
108
            if not options.get('password'):
109
                self.stdout.write('with password: %s\n' % password)
110
            else:
111
                self.stdout.write('\n')
112

    
113
            try:
114
                u.add_auth_provider('local')
115
                map(u.add_permission, options['permissions'])
116
                map(u.add_group, options['groups'])
117
            except BaseException, e:
118
                raise CommandError(e)