[7195] | 1 | ## $Id: container.py 12766 2015-03-15 09:37:37Z 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 |
---|
[12746] | 22 | from waeup.ikoba.interfaces import IIkobaPluggable |
---|
[11949] | 23 | from waeup.ikoba.payments.interfaces import IPaymentsContainer |
---|
| 24 | from waeup.ikoba.utils.helpers import attrs_to_fields |
---|
[12766] | 25 | from waeup.ikoba.utils.logger import Logger |
---|
[6861] | 26 | |
---|
[12311] | 27 | |
---|
[12766] | 28 | class PaymentsContainer(grok.Container, Logger): |
---|
[6861] | 29 | """This is a container for all kind of payments. |
---|
| 30 | """ |
---|
| 31 | grok.implements(IPaymentsContainer) |
---|
| 32 | grok.provides(IPaymentsContainer) |
---|
| 33 | |
---|
[12766] | 34 | logger_name = 'waeup.ikoba.${sitename}.payments' |
---|
| 35 | logger_filename = 'payments.log' |
---|
| 36 | |
---|
[6861] | 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 | PaymentsContainer = attrs_to_fields(PaymentsContainer) |
---|
[12746] | 48 | |
---|
| 49 | class PaymentsPlugin(grok.GlobalUtility): |
---|
| 50 | """A plugin that creates container for payments inside a company. |
---|
| 51 | """ |
---|
| 52 | grok.implements(IIkobaPluggable) |
---|
| 53 | grok.name('payments') |
---|
| 54 | |
---|
| 55 | def setup(self, site, name, logger): |
---|
| 56 | if 'payments' in site.keys(): |
---|
| 57 | logger.warn('Could not create container for payments.') |
---|
| 58 | return |
---|
| 59 | site['payments'] = PaymentsContainer() |
---|
| 60 | logger.info('Container for payments created') |
---|
| 61 | return |
---|
| 62 | |
---|
| 63 | def update(self, site, name, logger): |
---|
| 64 | if not 'payments' in site.keys(): |
---|
| 65 | self.setup(site, name, logger) |
---|