Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / oa2 / management / commands / oa2-client-list.py @ 3dd8a637

History | View | Annotate | Download (3.2 kB)

1
# Copyright 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 optparse import make_option
35

    
36
from snf_django.management.commands import ListCommand
37

    
38
from astakos.oa2.models import Client
39

    
40

    
41
def get_redirect_urls(client):
42
    return ','.join(client.redirecturl_set.values_list('url', flat=True))
43

    
44

    
45
class Command(ListCommand):
46
    help = "List oauth2 clients"
47

    
48
    object_class = Client
49

    
50
    FIELDS = {
51
        'id': ('id', ('The id of the client')),
52
        'name': ('name', 'The name of the client'),
53
        'identifier': ('identifier', 'The unique client identifier'),
54
        'type': ('type', 'The client type'),
55
        'is_trusted': ('is_trusted', 'Whether the client is trusted or not'),
56
        'redirect_urls': (get_redirect_urls, 'The registered redirect URLs')
57
    }
58

    
59
    fields = ['id', 'identifier', 'type', 'is_trusted']
60

    
61
    option_list = ListCommand.option_list + (
62
        make_option('--confidential',
63
                    action='store_true',
64
                    dest='confidential',
65
                    default=False,
66
                    help="Display only confidential clients"),
67
        make_option('--public',
68
                    action='store_true',
69
                    dest='public',
70
                    default=False,
71
                    help="Display only public clients"),
72
        make_option('--trusted',
73
                    action='store_true',
74
                    dest='trusted',
75
                    default=False,
76
                    help="Display only trusted clients"),
77
    )
78

    
79
    def handle_args(self, *args, **options):
80
        if options['confidential']:
81
            self.filters['type'] = 'confidential'
82

    
83
        if options['public']:
84
            self.filters['type'] = 'public'
85

    
86
        if options['trusted']:
87
            self.filters['is_trusted'] = True