Statistics
| Branch: | Tag: | Revision:

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

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

    
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
43
from astakos.im.functions import activate
44

    
45

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

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

    
75
    def handle(self, *args, **options):
76
        if len(args) != 3:
77
            raise CommandError("Invalid number of arguments")
78

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

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

    
87
        password = options['password'] or \
88
            AstakosUser.objects.make_random_password()
89

    
90
        try:
91
            u = AstakosUser(email=email,
92
                            first_name=first_name,
93
                            last_name=last_name,
94
                            password=password,
95
                            is_superuser=options['is_superuser'])
96
            u.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
                u.add_auth_provider('local')
109
                map(u.add_permission, options['permissions'])
110
                map(u.add_group, options['groups'])
111

    
112
                if options['active']:
113
                    activate(u)
114
            except BaseException, e:
115
                import traceback
116
                traceback.print_exc()
117
                raise CommandError(e)