Revision a4451f59

b/docs/admin-guide.rst
878 878
============================  ===========================
879 879
fix-superusers                Transform superusers created by syncdb into AstakosUser instances
880 880
cleanup-full                  Cleanup sessions and session catalog
881
commission-list               List pending commissions
882
commission-show               Show details for a pending commission
881 883
project-control               Manage projects and applications
882 884
project-list                  List projects
883 885
project-show                  Show project details
b/snf-astakos-app/astakos/quotaholder_app/callpoint.py
300 300
    except Commission.DoesNotExist:
301 301
        raise NoCommissionError(serial)
302 302

  
303
    objs = Provision.objects.select_related('holding')
303
    objs = Provision.objects
304 304
    provisions = objs.filter(serial=commission)
305 305

  
306 306
    ps = [p.todict() for p in provisions]
b/snf-astakos-app/astakos/quotaholder_app/management/commands/commission-list.py
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 synnefo.webproject.management.commands import ListCommand
36

  
37
from optparse import make_option
38
from astakos.quotaholder_app.models import Commission
39
import datetime
40

  
41

  
42
class Command(ListCommand):
43
    help = "List pending commissions"
44

  
45
    option_list = ListCommand.option_list + (
46
        make_option('--overdue',
47
                    help="Specify overdue time in seconds"),
48
    )
49

  
50
    object_class = Commission
51

  
52
    FIELDS = {
53
        'serial': ('serial', ('Commission serial')),
54
        'name': ('name', 'Commission name'),
55
        'clientkey': (
56
            'clientkey',
57
            'Key of the client (service) that issued the commission'),
58
        'issue time': ('issue_datetime', 'Commission issue time'),
59
    }
60

  
61
    fields = ['serial', 'name', 'clientkey', 'issue time']
62

  
63
    def handle_args(self, *args, **options):
64
        overdue = options['overdue']
65
        if overdue is not None:
66
            try:
67
                overdue = int(overdue)
68
            except ValueError:
69
                raise CommandError("Expecting an integer.")
70

  
71
            delta = datetime.timedelta(0, overdue)
72
            until = datetime.datetime.now() - delta
73
            self.filters["issue_datetime__lt"] = until
b/snf-astakos-app/astakos/quotaholder_app/management/commands/commission-show.py
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 synnefo.webproject.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)

Also available in: Unified diff