source: main/waeup.ikoba/branches/uli-payments/src/waeup/ikoba/payments/interfaces.py @ 12725

Last change on this file since 12725 was 12725, checked in by uli, 10 years ago

Add interface for payables.

  • Property svn:keywords set to Id
File size: 9.5 KB
Line 
1## $Id: interfaces.py 12725 2015-03-11 08:56:18Z 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##
18import decimal
19from zc.sourcefactory.basic import BasicSourceFactory
20from zope import schema
21from zope.component import getUtilitiesFor
22from zope.container.interfaces import IContainer
23from zope.container.constraints import contains
24from zope.interface import Interface, Attribute
25from waeup.ikoba.interfaces import (
26    IIkobaObject, SimpleIkobaVocabulary, ContextualDictSourceFactoryBase)
27from waeup.ikoba.interfaces import MessageFactory as _
28from waeup.ikoba.payments.currencies import ISO_4217_CURRENCIES_VOCAB
29
30#: Possible states of payments
31STATE_UNPAID = 1
32STATE_PAID = 2
33STATE_FAILED = 4
34
35payment_states = SimpleIkobaVocabulary(
36    (_('Not yet paid'), STATE_UNPAID),
37    (_('Paid'), STATE_PAID),
38    (_('Failed'), STATE_FAILED),
39    )
40
41
42class PaymentGatewayServicesSource(BasicSourceFactory):
43    """A source that lists available payment services.
44
45    Suitable for forms etc. Token and value correspond to the name the
46    respective IPaymentGatewayService utility is registered with.
47    """
48
49    _services = None
50
51    @classmethod
52    def services(cls):
53        """Cache the services registered on startup.
54
55        We assume that services do not change after startup.
56        """
57        if cls._services is None:
58            cls._services = dict(getUtilitiesFor(IPaymentGatewayService))
59        return cls._services
60
61    def getValues(self):
62        """Get payment gateway registration names.
63        """
64        return sorted(PaymentGatewayServicesSource.services().keys())
65
66    def getTitle(self, value):
67        """Get title of the respective service, if it exists.
68        """
69        service = PaymentGatewayServicesSource.services().get(value, None)
70        if service is not None:
71            return service.title
72
73
74class IPaymentGatewayService(Interface):
75    """A financial gateway service.
76
77    Any gateway provider might provide several services. For instance
78    payments by credit card, scratch card, bank transfer, etc. An
79    `IPaymentGatewayService` represents one of those services.
80
81    Payment services are normally registered as a named global
82    utility.
83    """
84    title = schema.TextLine(
85        title=u'Title',
86        description=u'Human readable name of gateway service.',
87        required=True,
88        )
89
90    def create_payment(payer, payment_item_list, payee):
91        """Create a payment.
92
93        For all parameters we expect an object, that implements
94        `IPayer`, `IPaymentItem`, or `IPayee` respectively. If not,
95        then the given objects must be at least adaptable to the
96        respective interface.
97
98        Therfore you can pass in some `Customer` as long as there is
99        some `IPayer` adapter for `Customer` objects defined.
100
101        Returns an `IPayment` object.
102        """
103
104    def next_step(payment_id):
105        """Returns a payment (as context) and a view name.
106
107        May result in (None, None).
108        """
109
110
111class IPaymentGatewayServicesLister(Interface):
112    """A utility that lists all valid payment gateways.
113
114    This is a subset of the available payment methods, as some might
115    be disabled in some site.
116
117    Register your own lister in customized sites!
118    """
119
120
121class PaymentCategorySource(ContextualDictSourceFactoryBase):
122    """A payment category source delivers all categories of payments.
123
124    """
125    #: name of dict to deliver from ikoba utils.
126    DICT_NAME = 'PAYMENT_CATEGORIES'
127
128
129class IPaymentsContainer(IIkobaObject):
130    """A container for all kind of payment objects.
131
132    """
133
134
135class ICreditCard(Interface):
136    """A credit card.
137
138    A credit card is connected to a Payer.
139    """
140    credit_card_id = schema.TextLine(
141        title=u'Internal Credit Card ID',
142        required=True,
143        )
144
145
146class IPayableFinder(Interface):
147    """Finds payables.
148
149    For each type of content you want to make payable, you should
150    define an IPayableFinder that can lookup payables in the
151    site.
152
153    This enables access from payments (which store payable ids only)
154    to arbitrary content objects (for which a payable finder is
155    registered under some name).
156
157    The other way round (getting an id and other relevant data from
158    any content object) is ensured by IPayable adapters.
159    """
160    def get_payable_by_id(item_id):
161        """Get an item by its Id, or none.
162        """
163
164
165class IPayable(Interface):
166    """Something that can be payed.
167
168    Designed to serve as adapter. IPayables turn arbitrary content
169    objects into something with a standarized interfaces for use with
170    payments.
171    """
172    payable_id = schema.TextLine(
173        title=u'ID of a payable',
174        description=(u'It should be possible to lookup the payable id '
175                     u'by some registered IPayableFinder later on'),
176        required=True,
177        readonly=True,
178        )
179
180    title = schema.TextLine(
181        title=u'Title',
182        description=u'A short description of the payed item.',
183        required=True,
184        default=u'',
185        readonly=True,
186        )
187
188
189class IPaymentItem(Interface):
190    """Something to sell.
191    """
192    item_id = schema.TextLine(
193        title=u'Payment Item ID',
194        required=True,
195        )
196
197    title = schema.TextLine(
198        title=u'Title',
199        description=u'A short title of the good sold.',
200        required=True,
201        default=u'Unnamed'
202        )
203
204    amount = schema.Decimal(
205        title=u'Amount',
206        description=u'Total amount, includung any taxes, fees, etc.',
207        required=True,
208        default=decimal.Decimal('0.00'),
209        )
210
211
212class IPayment(IContainer, IIkobaObject):
213    """A base representation of payments.
214
215    In a payment, a payer payes someone (the payee) for something, the
216    item to pay.
217
218    We currently support only the case where one payer pays one payee
219    for one item. The item might include taxes, handling,
220    shipping, etc.
221
222    As in RL any payment is actually performed by some financial
223    service provider (like paypal, interswitch, etc.), each of which
224    might provide several types of payments (credit card, scratch
225    card, you name it).
226
227    In Ikoba we call financial service providers 'gateway' and their
228    types of services are handled as gateway types. Therefore PayPal
229    handling a credit card payment is different from PayPal handling a
230    regular PayPal account transaction.
231
232    A payment can be approve()d, which means the act of paying was
233    really performed. It can also fail for any reason, in which case
234    we mark the payment 'failed'.
235    """
236    contains(IPaymentItem)
237
238    payment_id = schema.TextLine(
239        title=u'Payment Identifier',
240        default=None,
241        required=True,
242        )
243
244    payer_id = schema.TextLine(
245        title=u'Payer',
246        default=None,
247        required=True,
248        )
249
250    payee_id = schema.TextLine(
251        title=u'Payee',
252        default=None,
253        required=False,
254        )
255
256    payable_id = schema.TextLine(
257        title=u'ID of item/good being paid',
258        default=None,
259        required=False,
260        )
261
262    gateway_service = schema.Choice(
263        title=u'Payment Gateway',
264        description=u'Payment gateway that handles this transaction.',
265        source=PaymentGatewayServicesSource(),
266        default=None,
267        required=True,
268        )
269
270    state = schema.Choice(
271        title=_(u'Payment State'),
272        default=STATE_UNPAID,
273        vocabulary=payment_states,
274        required=True,
275        )
276
277    creation_date = schema.Datetime(
278        title=_(u'Creation Datetime'),
279        readonly=False,
280        required=False,
281        )
282
283    payment_date = schema.Datetime(
284        title=_(u'Payment Datetime'),
285        required=False,
286        readonly=False,
287        )
288
289    currency = schema.Choice(
290        title=u'Currency',
291        source=ISO_4217_CURRENCIES_VOCAB,
292        required=True,
293        default='USD',
294        )
295
296    amount = Attribute("Sum of amounts of items contained")
297
298    def approve():
299        """Approve a payment.
300
301        The payment was approved and can now be considered payed. This
302        kind of approvement means the final one (in case there are
303        several instances to ask).
304        """
305
306    def mark_failed(reason=None):
307        """Mark the payment as failed.
308
309        A failed payment was canceled due to technical problems,
310        insufficient funds, etc.
311        """
312
313    def add_payment_item(item):
314        """Payments contain payment items.
315
316        Add one
317        """
318
319
320class IPayer(Interface):
321    """A payer.
322    """
323    payer_id = schema.TextLine(
324        title=u'Payer ID',
325        required=True,
326        )
327
328    first_name = schema.TextLine(
329        title=u'First Name',
330        required=True,
331        )
332
333    last_name = schema.TextLine(
334        title=u'Last Name',
335        required=True,
336        )
337
338
339class IPayee(Interface):
340    """A person or institution being paid.
341    """
342    payee_id = schema.TextLine(
343        title=u'Payee ID',
344        required=True
345        )
Note: See TracBrowser for help on using the repository browser.