Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / management / commands / user-show.py @ 91eca048

History | View | Annotate | Download (5.3 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 django.core.management.base import CommandError
35
from optparse import make_option
36

    
37
from astakos.im.models import AstakosUser, get_latest_terms
38
from astakos.im.quotas import list_user_quotas
39

    
40
from synnefo.lib.ordereddict import OrderedDict
41
from synnefo.webproject.management.commands import SynnefoCommand
42
from synnefo.webproject.management import utils
43

    
44
from ._common import format, show_quotas
45

    
46
import uuid
47

    
48

    
49
class Command(SynnefoCommand):
50
    args = "<user ID or email or uuid>"
51
    help = "Show user info"
52

    
53
    option_list = SynnefoCommand.option_list + (
54
        make_option('--quotas',
55
                    action='store_true',
56
                    dest='list_quotas',
57
                    default=False,
58
                    help="Also list user quotas"),
59
    )
60

    
61
    def handle(self, *args, **options):
62
        if len(args) != 1:
63
            raise CommandError("Please provide a user ID or email")
64

    
65
        identifier = args[0]
66
        if identifier.isdigit():
67
            users = AstakosUser.objects.filter(id=int(identifier))
68
        else:
69
            try:
70
                uuid.UUID(identifier)
71
            except:
72
                users = AstakosUser.objects.filter(email__iexact=identifier)
73
            else:
74
                users = AstakosUser.objects.filter(uuid=identifier)
75
        if users.count() == 0:
76
            field = 'id' if identifier.isdigit() else 'email'
77
            msg = "Unknown user with %s '%s'" % (field, identifier)
78
            raise CommandError(msg)
79

    
80
        for user in users:
81
            settings_dict = {}
82
            settings = user.settings()
83
            for setting in settings:
84
                settings_dict[setting.setting] = setting.value
85

    
86
            kv = OrderedDict(
87
                [
88
                    ('id', user.id),
89
                    ('uuid', user.uuid),
90
                    ('email', user.email),
91
                    ('first name', user.first_name),
92
                    ('last name', user.last_name),
93
                    ('active', user.is_active),
94
                    ('admin', user.is_superuser),
95
                    ('last login', user.last_login),
96
                    ('date joined', user.date_joined),
97
                    ('last update', user.updated),
98
                    #('token', user.auth_token),
99
                    ('token expiration', user.auth_token_expires),
100
                    ('invitations', user.invitations),
101
                    ('invitation level', user.level),
102
                    ('providers', user.auth_providers_display),
103
                    ('verified', user.is_verified),
104
                    ('has credits', format(user.has_credits)),
105
                    ('groups', [elem.name for elem in user.groups.all()]),
106
                    ('permissions', [elem.codename
107
                                     for elem in user.user_permissions.all()]),
108
                    ('group permissions', user.get_group_permissions()),
109
                    ('email verified', user.email_verified),
110
                    ('username', user.username),
111
                    ('activation_sent_date', user.activation_sent),
112
                ])
113

    
114
            if settings_dict:
115
                kv['settings'] = settings_dict
116

    
117
            if get_latest_terms():
118
                has_signed_terms = user.signed_terms
119
                kv['has_signed_terms'] = has_signed_terms
120
                if has_signed_terms:
121
                    kv['date_signed_terms'] = user.date_signed_terms
122

    
123
            utils.pprint_table(self.stdout, [kv.values()], kv.keys(),
124
                               options["output_format"], vertical=True)
125

    
126
            if options["list_quotas"]:
127
                self.stdout.write("\n")
128
                _, quotas, initial, _ = list_user_quotas([user])
129
                print_data, labels = show_quotas(quotas, initial)
130
                utils.pprint_table(self.stdout, print_data, labels,
131
                                   options["output_format"])