Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / quotaholder_app / management / commands / commission-show.py @ 7cfc0cef

History | View | Annotate | Download (3.5 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 django.core.management.base import CommandError
35
from snf_django.management.commands import SynnefoCommand
36
from synnefo.webproject.management import utils
37

    
38
from astakos.quotaholder_app.models import Commission, Provision
39

    
40

    
41
class Command(SynnefoCommand):
42
    args = "<commission serial>"
43
    help = "Show details for a pending commission"
44

    
45
    def handle(self, *args, **options):
46
        self.output_format = options['output_format']
47

    
48
        if len(args) != 1:
49
            raise CommandError("Please provide a commission serial.")
50

    
51
        try:
52
            serial = int(args[0])
53
        except ValueError:
54
            raise CommandError('Expecting an integer serial.')
55

    
56
        try:
57
            commission = Commission.objects.get(serial=serial)
58
        except Commission.DoesNotExist:
59
            m = 'There is no pending commission with serial %s.' % serial
60
            raise CommandError(m)
61

    
62
        data = {'serial':     serial,
63
                'name':       commission.name,
64
                'clientkey':  commission.clientkey,
65
                'issue_time': commission.issue_datetime,
66
                }
67
        self.pprint_dict(data)
68

    
69
        provisions = Provision.objects.filter(serial=commission)
70
        data, labels = self.show_provisions(provisions)
71
        self.stdout.write('\n')
72
        self.pprint_table(data, labels, title='Provisions')
73

    
74
    def show_provisions(self, provisions):
75
        acc = []
76
        labels = 'holder', 'resource', 'source', 'quantity'
77
        for provision in provisions:
78
            fields = []
79
            for label in labels:
80
                f = getattr(provision, label)
81
                fields.append(f)
82
            acc.append(fields)
83
        return acc, labels
84

    
85
    def pprint_dict(self, d, vertical=True):
86
        utils.pprint_table(self.stdout, [d.values()], d.keys(),
87
                           self.output_format, vertical=vertical)
88

    
89
    def pprint_table(self, tbl, labels, title=None):
90
        utils.pprint_table(self.stdout, tbl, labels,
91
                           self.output_format, title=title)