1 | ## $Id: browser.py 16400 2021-02-24 19:12:50Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2012 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 | import httplib |
---|
19 | import hashlib |
---|
20 | import grok |
---|
21 | from kofacustom.nigeria.interswitch.browser import ( |
---|
22 | InterswitchPaymentRequestWebservicePageApplicant, |
---|
23 | InterswitchPaymentRequestWebservicePageStudent, |
---|
24 | InterswitchPaymentVerifyWebservicePageApplicant, |
---|
25 | InterswitchPaymentVerifyWebservicePageStudent, |
---|
26 | InterswitchPageStudent, InterswitchPageApplicant, |
---|
27 | ) |
---|
28 | from kofacustom.coewarri.students.interfaces import ICustomStudentOnlinePayment |
---|
29 | from kofacustom.coewarri.applicants.interfaces import ICustomApplicantOnlinePayment |
---|
30 | from kofacustom.coewarri.interfaces import MessageFactory as _ |
---|
31 | |
---|
32 | PRODUCT_ID = '6667' |
---|
33 | SITE_NAME = 'coewarri-kofa.waeup.org' |
---|
34 | PROVIDER_ACCT = '0427773399' |
---|
35 | PROVIDER_BANK_ID = '10' |
---|
36 | PROVIDER_ITEM_NAME = 'BT Education' |
---|
37 | INSTITUTION_NAME = 'COE Warri' |
---|
38 | CURRENCY = '566' |
---|
39 | GATEWAY_AMT = 250.0 |
---|
40 | MAC = '9309B5CBF1BFB09693C6F5F578046E3FCAB0A2538C3FE4221A6E63AFD348DE888E655F9C7E9F112151A702B6B09E6A7ACC5B3BF3C701F0C1B0D8EA6C1872AE94' |
---|
41 | |
---|
42 | POST_ACTION = 'https://webpay.interswitchng.com/paydirect/pay' |
---|
43 | #POST_ACTION = 'https://stageserv.interswitchng.com/test_paydirect/pay' |
---|
44 | HOST = 'webpay.interswitchng.com' |
---|
45 | #HOST = 'stageserv.interswitchng.com' |
---|
46 | URL = '/paydirect/api/v1/gettransaction.json' |
---|
47 | #URL = '/test_paydirect/api/v1/gettransaction.json' |
---|
48 | |
---|
49 | httplib.HTTPSConnection.debuglevel = 0 |
---|
50 | HTTPS = True |
---|
51 | |
---|
52 | class CustomInterswitchPageStudent(InterswitchPageStudent): |
---|
53 | """ View which sends a POST request to the Interswitch |
---|
54 | CollegePAY payment gateway. |
---|
55 | """ |
---|
56 | grok.context(ICustomStudentOnlinePayment) |
---|
57 | action = POST_ACTION |
---|
58 | site_name = SITE_NAME |
---|
59 | currency = CURRENCY |
---|
60 | product_id = PRODUCT_ID |
---|
61 | mac = MAC |
---|
62 | |
---|
63 | def update(self): |
---|
64 | error = self.init_update() |
---|
65 | if error: |
---|
66 | self.flash(error, type='danger') |
---|
67 | self.redirect(self.url(self.context, '@@index')) |
---|
68 | return |
---|
69 | self.context.r_company = u'interswitch' |
---|
70 | student = self.student |
---|
71 | xmldict = self.xmldict |
---|
72 | self.pay_item_id = '0000' |
---|
73 | # Provider data |
---|
74 | xmldict['detail_ref'] = self.context.p_id |
---|
75 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
76 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
77 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
78 | provider_amt = 0.0 |
---|
79 | share_amt = 0.0 |
---|
80 | # Institution data |
---|
81 | xmldict['institution_acct'] = '2000746414' |
---|
82 | xmldict['institution_bank_id'] = '8' |
---|
83 | xmldict['institution_item_name'] = self.context.category |
---|
84 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
85 | if self.context.p_category == 'clearance': |
---|
86 | self.pay_item_id = '102' |
---|
87 | provider_amt = 500.0 |
---|
88 | elif self.context.p_category.startswith('schoolfee'): |
---|
89 | self.pay_item_id = '103' |
---|
90 | if self.context.p_category in ('schoolfee_1', 'schoolfee_2') \ |
---|
91 | and not self.context.p_item == 'Balance': |
---|
92 | provider_amt = 1400.0 |
---|
93 | share_amt = 600.0 |
---|
94 | if self.context.p_category == 'schoolfee' \ |
---|
95 | and not self.context.p_item == 'Balance': |
---|
96 | provider_amt = 2800.0 |
---|
97 | share_amt = 1200.0 |
---|
98 | elif self.context.p_category == 'lsfp_penalty': |
---|
99 | self.pay_item_id = '104' |
---|
100 | xmldict['institution_acct'] = '1751080425' |
---|
101 | xmldict['institution_bank_id'] = '120' |
---|
102 | xmldict['provider_amt'] = 100 * provider_amt |
---|
103 | xmldict['share_amt'] = 100 * share_amt |
---|
104 | xmldict['institution_amt'] = 100 * ( |
---|
105 | self.context.amount_auth - provider_amt - share_amt - GATEWAY_AMT) |
---|
106 | |
---|
107 | # Interswitch amount is not part of the xml data |
---|
108 | if provider_amt == 0: |
---|
109 | xmltext = """<payment_item_detail> |
---|
110 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
111 | <item_detail item_id="1" item_name="%(institution_item_name)s" item_amt="%(institution_amt)d" bank_id="%(institution_bank_id)s" acct_num="%(institution_acct)s" /> |
---|
112 | </item_details> |
---|
113 | </payment_item_detail>""" % xmldict |
---|
114 | elif share_amt == 0: |
---|
115 | xmltext = """<payment_item_detail> |
---|
116 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
117 | <item_detail item_id="1" item_name="%(institution_item_name)s" item_amt="%(institution_amt)d" bank_id="%(institution_bank_id)s" acct_num="%(institution_acct)s" /> |
---|
118 | <item_detail item_id="2" item_name="%(provider_item_name)s" item_amt="%(provider_amt)d" bank_id="%(provider_bank_id)s" acct_num="%(provider_acct)s" /> |
---|
119 | </item_details> |
---|
120 | </payment_item_detail>""" % xmldict |
---|
121 | else: |
---|
122 | xmltext = """<payment_item_detail> |
---|
123 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
124 | <item_detail item_id="1" item_name="%(institution_item_name)s" item_amt="%(institution_amt)d" bank_id="%(institution_bank_id)s" acct_num="%(institution_acct)s" /> |
---|
125 | <item_detail item_id="2" item_name="%(provider_item_name)s" item_amt="%(provider_amt)d" bank_id="%(provider_bank_id)s" acct_num="%(provider_acct)s" /> |
---|
126 | <item_detail item_id="3" item_name="Tech Fee Share" item_amt="%(share_amt)d" bank_id="307" acct_num="5100189030" /> |
---|
127 | </item_details> |
---|
128 | </payment_item_detail>""" % xmldict |
---|
129 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
130 | self.context.provider_amt = provider_amt |
---|
131 | self.context.gateway_amt = GATEWAY_AMT |
---|
132 | self.amount_auth = int(100 * self.context.amount_auth) |
---|
133 | hashargs = ( |
---|
134 | self.context.p_id + |
---|
135 | PRODUCT_ID + |
---|
136 | self.pay_item_id + |
---|
137 | str(int(self.amount_auth)) + |
---|
138 | self.site_redirect_url + |
---|
139 | self.mac) |
---|
140 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
141 | return |
---|
142 | |
---|
143 | class CustomInterswitchPageApplicant(InterswitchPageApplicant): |
---|
144 | """ View which sends a POST request to the Interswitch |
---|
145 | CollegePAY payment gateway. |
---|
146 | """ |
---|
147 | grok.context(ICustomApplicantOnlinePayment) |
---|
148 | action = POST_ACTION |
---|
149 | site_name = SITE_NAME |
---|
150 | currency = CURRENCY |
---|
151 | pay_item_id = '101' |
---|
152 | product_id = PRODUCT_ID |
---|
153 | mac = MAC |
---|
154 | |
---|
155 | def update(self): |
---|
156 | error = self.init_update() |
---|
157 | if error: |
---|
158 | self.flash(error, type='danger') |
---|
159 | self.redirect(self.url(self.context, '@@index')) |
---|
160 | return |
---|
161 | self.context.r_company = u'interswitch' |
---|
162 | xmldict = {} |
---|
163 | provider_amt = 500.0 |
---|
164 | xmldict['institution_acct'] = '2000746414' |
---|
165 | xmldict['institution_bank_id'] = '8' |
---|
166 | xmldict['detail_ref'] = self.context.p_id |
---|
167 | xmldict['provider_amt'] = 100 * provider_amt |
---|
168 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
169 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
170 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
171 | xmldict['institution_amt'] = 100 * (self.context.amount_auth - provider_amt - GATEWAY_AMT) |
---|
172 | xmldict['institution_item_name'] = self.context.category |
---|
173 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
174 | # Interswitch amount is not part of the xml data |
---|
175 | xmltext = """<payment_item_detail> |
---|
176 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
177 | <item_detail item_id="1" item_name="%(institution_item_name)s" item_amt="%(institution_amt)d" bank_id="%(institution_bank_id)s" acct_num="%(institution_acct)s" /> |
---|
178 | <item_detail item_id="2" item_name="%(provider_item_name)s" item_amt="%(provider_amt)d" bank_id="%(provider_bank_id)s" acct_num="%(provider_acct)s" /> |
---|
179 | </item_details> |
---|
180 | </payment_item_detail>""" % xmldict |
---|
181 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
182 | self.context.provider_amt = provider_amt |
---|
183 | self.context.gateway_amt = GATEWAY_AMT |
---|
184 | self.amount_auth = int(100 * self.context.amount_auth) |
---|
185 | hashargs = ( |
---|
186 | self.context.p_id + |
---|
187 | PRODUCT_ID + |
---|
188 | self.pay_item_id + |
---|
189 | str(int(self.amount_auth)) + |
---|
190 | self.site_redirect_url + |
---|
191 | self.mac) |
---|
192 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
193 | return |
---|
194 | |
---|
195 | class CustomInterswitchPaymentRequestWebservicePageStudent( |
---|
196 | InterswitchPaymentRequestWebservicePageStudent): |
---|
197 | """Request webservice view for the CollegePAY gateway |
---|
198 | """ |
---|
199 | grok.context(ICustomStudentOnlinePayment) |
---|
200 | product_id = PRODUCT_ID |
---|
201 | gateway_host = HOST |
---|
202 | gateway_url = URL |
---|
203 | mac = MAC |
---|
204 | |
---|
205 | class CustomInterswitchPaymentVerifyWebservicePageStudent( |
---|
206 | InterswitchPaymentVerifyWebservicePageStudent): |
---|
207 | """Payment verify view for the CollegePAY gateway |
---|
208 | """ |
---|
209 | grok.context(ICustomStudentOnlinePayment) |
---|
210 | product_id = PRODUCT_ID |
---|
211 | gateway_host = HOST |
---|
212 | gateway_url = URL |
---|
213 | mac = MAC |
---|
214 | |
---|
215 | class CustomInterswitchPaymentRequestWebservicePageApplicant( |
---|
216 | InterswitchPaymentRequestWebservicePageApplicant): |
---|
217 | """Request webservice view for the CollegePAY gateway |
---|
218 | """ |
---|
219 | grok.context(ICustomApplicantOnlinePayment) |
---|
220 | product_id = PRODUCT_ID |
---|
221 | gateway_host = HOST |
---|
222 | gateway_url = URL |
---|
223 | mac = MAC |
---|
224 | |
---|
225 | class CustomInterswitchPaymentVerifyWebservicePageApplicant( |
---|
226 | InterswitchPaymentVerifyWebservicePageApplicant): |
---|
227 | """Payment verify view for the CollegePAY gateway |
---|
228 | """ |
---|
229 | grok.context(ICustomApplicantOnlinePayment) |
---|
230 | product_id = PRODUCT_ID |
---|
231 | gateway_host = HOST |
---|
232 | gateway_url = URL |
---|
233 | mac = MAC |
---|