Statistics
| Branch: | Tag: | Revision:

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

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

    
38
from django.core.management.base import BaseCommand, CommandError
39
from django.core.validators import validate_email
40
from snf_django.lib.db import transaction
41

    
42
from astakos.im.models import AstakosUser
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_strict()
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
        try:
88
            u = AstakosUser(email=email,
89
                            first_name=first_name,
90
                            last_name=last_name,
91
                            password=password,
92
                            is_superuser=options['is_superuser'])
93
            u.save()
94

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

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