source: main/waeup.ikoba/trunk/src/waeup/ikoba/payments/container.py @ 12780

Last change on this file since 12780 was 12780, checked in by Henrik Bettermann, 10 years ago

Update payment objects with PaymentsPlugin?.

  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1## $Id: container.py 12780 2015-03-17 18:42:35Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
18"""
19Containers which contain payment objects.
20"""
21import grok
22from zope.schema import getFields
23from waeup.ikoba.interfaces import IIkobaPluggable
24from waeup.ikoba.payments.interfaces import IPaymentsContainer, IPayment
25from waeup.ikoba.utils.helpers import attrs_to_fields
26from waeup.ikoba.utils.logger import Logger
27
28
29class PaymentsContainer(grok.Container, Logger):
30    """This is a container for all kind of payments.
31    """
32    grok.implements(IPaymentsContainer)
33    grok.provides(IPaymentsContainer)
34
35    logger_name = 'waeup.ikoba.${sitename}.payments'
36    logger_filename = 'payments.log'
37
38    def __init__(self):
39        super(PaymentsContainer, self).__init__()
40        return
41
42    def archive(self, id=None):
43        raise NotImplementedError()
44
45    def clear(self, id=None, archive=True):
46        raise NotImplementedError()
47
48
49PaymentsContainer = attrs_to_fields(PaymentsContainer)
50
51
52class PaymentsPlugin(grok.GlobalUtility):
53    """A plugin that creates container for payments inside a company
54    and updates payment objects.
55    """
56    grok.implements(IIkobaPluggable)
57    grok.name('payments')
58
59    def setup(self, site, name, logger):
60        if 'payments' in site.keys():
61            logger.warn('Could not create container for payments.')
62            return
63        site['payments'] = PaymentsContainer()
64        logger.info('Container for payments created')
65        return
66
67    def update(self, site, name, logger):
68        if not 'payments' in site.keys():
69            self.setup(site, name, logger)
70        for payment in site['payments'].values():
71            # Add payment_items
72            if not hasattr(payment,'payment_items'):
73              payment.payment_items = ()
74              logger.info(
75                  'PaymentsPlugin: %s attribute %s added.' % (
76                  payment.payment_id,'payment_items'))
77        return
Note: See TracBrowser for help on using the repository browser.