1 | ## $Id: container.py 12818 2015-03-24 08:49:53Z uli $ |
---|
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 | """ |
---|
19 | Containers which contain payment objects. |
---|
20 | """ |
---|
21 | import grok |
---|
22 | from waeup.ikoba.interfaces import IIkobaPluggable |
---|
23 | from waeup.ikoba.payments.interfaces import IPaymentsContainer |
---|
24 | from waeup.ikoba.utils.helpers import attrs_to_fields |
---|
25 | from waeup.ikoba.utils.logger import Logger |
---|
26 | |
---|
27 | |
---|
28 | class PaymentsContainer(grok.Container, Logger): |
---|
29 | """This is a container for all kind of payments. |
---|
30 | """ |
---|
31 | grok.implements(IPaymentsContainer) |
---|
32 | grok.provides(IPaymentsContainer) |
---|
33 | |
---|
34 | logger_name = 'waeup.ikoba.${sitename}.payments' |
---|
35 | logger_filename = 'payments.log' |
---|
36 | |
---|
37 | def __init__(self): |
---|
38 | super(PaymentsContainer, self).__init__() |
---|
39 | return |
---|
40 | |
---|
41 | def archive(self, id=None): |
---|
42 | raise NotImplementedError() |
---|
43 | |
---|
44 | def clear(self, id=None, archive=True): |
---|
45 | raise NotImplementedError() |
---|
46 | |
---|
47 | |
---|
48 | PaymentsContainer = attrs_to_fields(PaymentsContainer) |
---|
49 | |
---|
50 | |
---|
51 | class PaymentsPlugin(grok.GlobalUtility): |
---|
52 | """A plugin that creates container for payments inside a company |
---|
53 | and updates payment objects. |
---|
54 | """ |
---|
55 | grok.implements(IIkobaPluggable) |
---|
56 | grok.name('payments') |
---|
57 | |
---|
58 | def setup(self, site, name, logger): |
---|
59 | if 'payments' in site.keys(): |
---|
60 | logger.warn('Could not create container for payments.') |
---|
61 | return |
---|
62 | site['payments'] = PaymentsContainer() |
---|
63 | logger.info('Container for payments created') |
---|
64 | return |
---|
65 | |
---|
66 | def update(self, site, name, logger): |
---|
67 | if not 'payments' in site.keys(): |
---|
68 | self.setup(site, name, logger) |
---|
69 | for payment in site['payments'].values(): |
---|
70 | # Add payment_items |
---|
71 | if not hasattr(payment, 'payment_items'): |
---|
72 | payment.payment_items = () |
---|
73 | logger.info( |
---|
74 | 'PaymentsPlugin: %s attribute %s added.' % ( |
---|
75 | payment.payment_id, 'payment_items') |
---|
76 | ) |
---|
77 | return |
---|