[7195] | 1 | ## $Id: container.py 12780 2015-03-17 18:42:35Z henrik $ |
---|
| 2 | ## |
---|
[6861] | 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 |
---|
[12780] | 22 | from zope.schema import getFields |
---|
[12746] | 23 | from waeup.ikoba.interfaces import IIkobaPluggable |
---|
[12780] | 24 | from waeup.ikoba.payments.interfaces import IPaymentsContainer, IPayment |
---|
[11949] | 25 | from waeup.ikoba.utils.helpers import attrs_to_fields |
---|
[12766] | 26 | from waeup.ikoba.utils.logger import Logger |
---|
[6861] | 27 | |
---|
[12311] | 28 | |
---|
[12766] | 29 | class PaymentsContainer(grok.Container, Logger): |
---|
[6861] | 30 | """This is a container for all kind of payments. |
---|
| 31 | """ |
---|
| 32 | grok.implements(IPaymentsContainer) |
---|
| 33 | grok.provides(IPaymentsContainer) |
---|
| 34 | |
---|
[12766] | 35 | logger_name = 'waeup.ikoba.${sitename}.payments' |
---|
| 36 | logger_filename = 'payments.log' |
---|
| 37 | |
---|
[6861] | 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 | |
---|
[12775] | 48 | |
---|
[6861] | 49 | PaymentsContainer = attrs_to_fields(PaymentsContainer) |
---|
[12746] | 50 | |
---|
[12775] | 51 | |
---|
[12746] | 52 | class PaymentsPlugin(grok.GlobalUtility): |
---|
[12780] | 53 | """A plugin that creates container for payments inside a company |
---|
| 54 | and updates payment objects. |
---|
[12746] | 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) |
---|
[12780] | 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 |
---|