Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / management / commands / user-show.py @ 7820534a

History | View | Annotate | Download (7.4 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, Chain
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('--quota',
55
                    action='store_true',
56
                    dest='list_quotas',
57
                    default=False,
58
                    help="Also list user quota"),
59
        make_option('--projects',
60
                    action='store_true',
61
                    dest='list_projects',
62
                    default=False,
63
                    help="Also list project memberships"),
64
    )
65

    
66
    def handle(self, *args, **options):
67
        if len(args) != 1:
68
            raise CommandError("Please provide a user ID or email")
69

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

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

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

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

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

    
133
            if options["list_projects"]:
134
                print_data, labels = ownerships(user)
135
                if print_data:
136
                    self.stdout.write("\n")
137
                    utils.pprint_table(self.stdout, print_data, labels,
138
                                       options["output_format"],
139
                                       title="Owned Projects")
140

    
141
                print_data, labels = memberships(user)
142
                if print_data:
143
                    self.stdout.write("\n")
144
                    utils.pprint_table(self.stdout, print_data, labels,
145
                                       options["output_format"],
146
                                       title="Project Memberships")
147

    
148

    
149
def memberships(user):
150
    ms = user.projectmembership_set.all()
151
    print_data = []
152
    labels = ('project id', 'project name', 'status')
153

    
154
    for m in ms:
155
        project = m.project
156
        print_data.append((project.id,
157
                           project.application.name,
158
                           m.state_display(),
159
                           ))
160
    return print_data, labels
161

    
162

    
163
def ownerships(user):
164
    chain_dict = Chain.objects.all_full_state()
165
    chain_dict = filter_by(is_owner(user), chain_dict)
166
    return chain_info(chain_dict)
167

    
168

    
169
def is_owner(user):
170
    def f(state, project, app):
171
        return user == app.owner
172
    return f
173

    
174

    
175
def filter_by(f, chain_dict):
176
    d = {}
177
    for chain, tpl in chain_dict.iteritems():
178
        if f(*tpl):
179
            d[chain] = tpl
180
    return d
181

    
182

    
183
def chain_info(chain_dict):
184
    labels = ('project id', 'project name', 'status', 'pending app id')
185
    l = []
186
    for chain, (state, project, app) in chain_dict.iteritems():
187
        status = Chain.state_display(state)
188
        if state in Chain.PENDING_STATES:
189
            appid = str(app.id)
190
        else:
191
            appid = ""
192

    
193
        t = (chain,
194
             project.application.name if project else app.name,
195
             status,
196
             appid,
197
             )
198
        l.append(t)
199
    return l, labels