Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (7.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, 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
                self.stdout.write("\n")
126
                quotas, initial = list_user_quotas([user])
127
                print_data, labels = show_quotas(quotas, initial)
128
                utils.pprint_table(self.stdout, print_data, labels,
129
                                   options["output_format"])
130

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

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

    
146

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

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

    
160

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

    
166

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

    
172

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

    
180

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

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