1 | ## $Id: payment.py 12671 2015-03-06 23:12:36Z 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 | These are the payment tickets. |
---|
20 | """ |
---|
21 | import decimal |
---|
22 | import grok |
---|
23 | import uuid |
---|
24 | from datetime import datetime |
---|
25 | from zope.component import getUtilitiesFor |
---|
26 | from zope.event import notify |
---|
27 | from waeup.ikoba.utils.helpers import attrs_to_fields |
---|
28 | from waeup.ikoba.payments.interfaces import ( |
---|
29 | IPayment, STATE_UNPAID, STATE_FAILED, STATE_PAID, |
---|
30 | IPaymentGatewayService, IPayer, IPaymentItem, IPayee, |
---|
31 | IPaymentGatewayServicesLister, |
---|
32 | ) |
---|
33 | from waeup.ikoba.utils.logger import Logger |
---|
34 | |
---|
35 | |
---|
36 | def get_payment_providers(): |
---|
37 | """Get all payment providers registered. |
---|
38 | """ |
---|
39 | return dict( |
---|
40 | getUtilitiesFor(IPaymentGatewayService) |
---|
41 | ) |
---|
42 | |
---|
43 | |
---|
44 | class PaymentGatewayServicesLister(grok.GlobalUtility): |
---|
45 | grok.implements(IPaymentGatewayServicesLister) |
---|
46 | |
---|
47 | def __call__(self): |
---|
48 | """Get all services of payment gateways registered. |
---|
49 | """ |
---|
50 | return get_payment_providers() |
---|
51 | |
---|
52 | |
---|
53 | class PaymentProviderServiceBase(grok.GlobalUtility): |
---|
54 | |
---|
55 | grok.baseclass() |
---|
56 | grok.implements(IPaymentGatewayService) |
---|
57 | |
---|
58 | title = u'Sample Credit Card Service' |
---|
59 | |
---|
60 | |
---|
61 | @attrs_to_fields |
---|
62 | class Payment(grok.Container, Logger): |
---|
63 | """This is a payment. |
---|
64 | """ |
---|
65 | grok.implements(IPayment) |
---|
66 | grok.provides(IPayment) |
---|
67 | |
---|
68 | logger_name = 'waeup.ikoba.${sitename}.payments' |
---|
69 | logger_filename = 'payments.log' |
---|
70 | logger_format_str = '"%(asctime)s","%(user)s",%(message)s' |
---|
71 | |
---|
72 | @property |
---|
73 | def amount(self): |
---|
74 | """The amount of a payment. |
---|
75 | |
---|
76 | Equals the sum of items contained. |
---|
77 | """ |
---|
78 | return sum( |
---|
79 | [item.amount for item in self.values()], |
---|
80 | decimal.Decimal("0.00") # default value |
---|
81 | ) |
---|
82 | |
---|
83 | def __init__(self): |
---|
84 | super(Payment, self).__init__() |
---|
85 | self.creation_date = datetime.utcnow() |
---|
86 | self.payment_date = None |
---|
87 | self.payment_id = u'PAY_' + unicode(uuid.uuid4().hex) |
---|
88 | self.state = STATE_UNPAID |
---|
89 | return |
---|
90 | |
---|
91 | def approve(self, payment_date=None): |
---|
92 | """A payment was approved. |
---|
93 | |
---|
94 | Successful ending; the payment is marked as payed. |
---|
95 | |
---|
96 | If `payment_date` is given, it must be a datetime object |
---|
97 | giving a datetime in UTC timezone. |
---|
98 | |
---|
99 | Raises ObjectModifiedEvent. |
---|
100 | """ |
---|
101 | if payment_date is None: |
---|
102 | payment_date = datetime.utcnow() |
---|
103 | self.payment_date = payment_date |
---|
104 | self.state = STATE_PAID |
---|
105 | notify(grok.ObjectModifiedEvent(self)) |
---|
106 | |
---|
107 | def mark_failed(self, reason=None): |
---|
108 | """Mark payment as failed. |
---|
109 | |
---|
110 | Raises ObjectModifiedEvent. |
---|
111 | """ |
---|
112 | self.state = STATE_FAILED |
---|
113 | notify(grok.ObjectModifiedEvent(self)) |
---|
114 | |
---|
115 | def add_payment_item(self, item): |
---|
116 | """Add `item` |
---|
117 | |
---|
118 | Returns the key under which the `item` was stored. Please do |
---|
119 | not make anby assumptions about the key. It will be a |
---|
120 | string. That is all we can tell. |
---|
121 | |
---|
122 | """ |
---|
123 | cnt = 0 |
---|
124 | while str(cnt) in self: |
---|
125 | cnt += 1 |
---|
126 | self[str(cnt)] = item |
---|
127 | return str(cnt) |
---|
128 | |
---|
129 | |
---|
130 | @attrs_to_fields |
---|
131 | class Payer(object): |
---|
132 | """A Payment is for testing. |
---|
133 | |
---|
134 | It cannot be stored in ZODB. |
---|
135 | """ |
---|
136 | grok.implements(IPayer) |
---|
137 | |
---|
138 | |
---|
139 | @attrs_to_fields |
---|
140 | class PaymentItem(grok.Model): |
---|
141 | |
---|
142 | grok.implements(IPaymentItem) |
---|
143 | |
---|
144 | def __init__(self): |
---|
145 | super(PaymentItem, self).__init__() |
---|
146 | |
---|
147 | |
---|
148 | @attrs_to_fields |
---|
149 | class Payee(object): |
---|
150 | """Someone being paid. |
---|
151 | |
---|
152 | This is for testing only and cannot be stored in ZODB. |
---|
153 | """ |
---|
154 | grok.implements(IPayee) |
---|