source: main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/interswitch/browser.py @ 13739

Last change on this file since 13739 was 13653, checked in by Henrik Bettermann, 9 years ago

Carryover payments must not trigger workflow transitions.

  • Property svn:keywords set to Id
File size: 15.9 KB
Line 
1## $Id: browser.py 13653 2016-02-07 07:32:25Z 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##
18import httplib
19import hashlib
20import grok
21from zope.interface import Interface
22from zope.component import queryAdapter
23from kofacustom.nigeria.interswitch.browser import (
24    InterswitchPaymentRequestWebservicePageStudent,
25    InterswitchPaymentRequestWebservicePageApplicant,
26    InterswitchPaymentVerifyWebservicePageApplicant,
27    InterswitchPaymentVerifyWebservicePageStudent,
28    InterswitchPageStudent, InterswitchPageApplicant,
29    )
30from waeup.kwarapoly.students.interfaces import ICustomStudentOnlinePayment
31from waeup.kwarapoly.applicants.interfaces import ICustomApplicantOnlinePayment
32from waeup.kwarapoly.interfaces import MessageFactory as _
33
34PRODUCT_ID = '3930'
35SITE_NAME = 'kwarapoly.waeup.org'
36PROVIDER_ACCT = '1010764827'
37PROVIDER_BANK_ID = '117'
38PROVIDER_ITEM_NAME = 'BT Education'
39INSTITUTION_NAME = 'KwaraPoly'
40CURRENCY = '566'
41GATEWAY_AMT = 300.0
42#QUERY_URL = 'https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx'
43#QUERY_URL = 'https://testwebpay.interswitchng.com/test_paydirect/services/TransactionQueryURL.aspx'
44
45POST_ACTION = 'https://webpay.interswitchng.com/paydirect/webpay/pay.aspx'
46#POST_ACTION = 'https://testwebpay.interswitchng.com/test_paydirect/webpay/pay.aspx'
47
48HOST = 'webpay.interswitchng.com'
49#HOST = 'testwebpay.interswitchng.com'
50
51URL = '/paydirect/services/TransactionQueryWs.asmx'
52#URL = '/test_paydirect/services/TransactionQueryWs.asmx'
53httplib.HTTPConnection.debuglevel = 0
54
55#All special payments moved to GTBank on 15-10-2015
56SPECIAL_PAYMENT_PARAMS = {
57    'certificate': ('111', 200.0, 300.0, '0106259811', '10'),
58    'state_result': ('112', 200.0, 300.0, '0106259811', '10'),
59    'transcript_local': ('113', 200.0, 300.0, '0106259811', '10'),
60    'transcript_foreign': ('114', 200.0, 300.0, '0106259811', '10'),
61    'ver_result': ('115', 200.0, 300.0, '0106259811', '10'),
62    'change_course': ('116', 200.0, 300.0, '0106259811', '10'),
63    'change_inst': ('117', 200.0, 300.0, '0106259811', '10'),
64    'jamb_reject': ('118', 200.0, 300.0, '0106259811', '10'),
65    'cert_of_cert': ('119', 200.0, 300.0, '0106259811', '10'),
66    'ref_let': ('120', 200.0, 300.0, '0106259811', '10'),
67    'proc_cert': ('121', 200.0, 300.0, '0106259811', '10'),
68    'loss_idcard': ('122', 6.0, 9.0, '0106259811', '10'),
69    'loss_examcard': ('123', 3.0, 4.5, '0106259811', '10'),
70    'loss_result': ('124', 200.0, 300.0, '0106259811', '10'),
71    'loss_receipt': ('125', 200.0, 300.0, '0106259811', '10'),
72    'loss_clearance': ('126', 200.0, 300.0, '0106259811', '10'),
73    'conv_brochure': ('127', 200.0, 300.0, '0106259811', '10'),
74    'hnd_certificate': ('128', 200.0, 300.0, '0106259811', '10'),
75    'hnd_state_result': ('129', 200.0, 300.0, '0106259811', '10'),
76    'hnd_transcript_local': ('130', 200.0, 300.0, '0106259811', '10'),
77    'hnd_transcript_foreign': ('131', 200.0, 300.0, '0106259811', '10'),
78    'staff_loss_idcard': ('132', 6.0, 9.0, '0106259811', '10'),
79    'hnd_conv_brochure': ('133', 200.0, 300.0, '0106259811', '10'),
80    'pgd_state_result': ('134', 200.0, 300.0, '0106259811', '10'),
81    'pgd_conv_brochure': ('135', 200.0, 300.0, '0106259811', '10'),
82    'pgd_certificate': ('136', 200.0, 300.0, '0106259811', '10'),
83    'log_book': ('137', 3.0, 4.5, '0106259811', '10'),
84    'pgd_transcript_foreign': ('138', 200.0, 300.0, '0106259811', '10'),
85    'pgd_transcript_local': ('139', 200.0, 300.0, '0106259811', '10'),
86    'jamb_regularization': ('140', 200.0, 300.0, '0106259811', '10'),
87    'utme_registration': ('142', 6.0, 9.0, '0106259811', '10'),
88    'utme_cbt': ('143', 6.0, 9.0, '0106259811', '10'),
89    'nysc_id_card': ('144', 6.0, 9.0, '0106259811', '10'),
90    }
91
92class CustomInterswitchPageStudent(InterswitchPageStudent):
93    """ View which sends a POST request to the Interswitch
94    CollegePAY payment gateway.
95    """
96    grok.context(ICustomStudentOnlinePayment)
97    grok.template('student_goto_interswitch')
98    action = POST_ACTION
99    site_name = SITE_NAME
100    currency = CURRENCY
101    product_id = PRODUCT_ID
102    mac = 'E6BA6CBBA9AF2871EE25C32C8D57C98895B9B001DC5B9CB2C463E2A9BDA44A3F1260C8A364F33789CDF74CB3EE7E6EF5D94F48D3AF7B727E75D97F07618DFA6D'
103
104    def update(self):
105        error = self.init_update()
106        if error:
107            self.flash(error, type='danger')
108            self.redirect(self.url(self.context, '@@index'))
109            return
110        student = self.student
111        xmldict = self.xmldict
112        # Provider data
113        xmldict['detail_ref'] = self.context.p_id
114        xmldict['provider_acct'] = PROVIDER_ACCT
115        xmldict['provider_bank_id'] = PROVIDER_BANK_ID
116        xmldict['provider_item_name'] = PROVIDER_ITEM_NAME
117        # Institution data
118        xmldict['institution_item_name'] = self.category
119        xmldict['institution_name'] = INSTITUTION_NAME
120        xmldict['institution_amt'] = 0.0
121        dalash_amt = 200.0
122        provider_amt = 300.0
123        gateway_amt = GATEWAY_AMT
124        self.pay_item_id = '000'
125        xmldict['institution_acct'] = "0106259811"
126        xmldict['institution_bank_id'] = "10"
127        if self.context.p_category == 'schoolfee' \
128            or self.context.p_category.startswith('carryover'):
129            self.pay_item_id = '101'
130            dalash_amt = 1800.0
131            provider_amt = 1200.0
132            if not student.current_mode.endswith('_we'):
133                if xmldict['faculty'] in ('CPGS',):
134                    xmldict['institution_acct'] = "0106259811"   
135                    xmldict['institution_bank_id'] = '10'
136                elif xmldict['faculty'] in ('IAS',):
137                    xmldict['institution_acct'] = "0106259811" 
138                    xmldict['institution_bank_id'] = '10'
139                    self.pay_item_id = '107'
140                elif xmldict['faculty'] in ('IES',):
141                    xmldict['institution_acct'] = "0106259811"
142                    xmldict['institution_bank_id'] = '10'
143                    self.pay_item_id = '109'
144                elif xmldict['faculty'] in ('IFMS',):
145                    xmldict['institution_acct'] = "0106259811"
146                    xmldict['institution_bank_id'] = '10'
147                    self.pay_item_id = '106'
148                elif xmldict['faculty'] in ('IOT',):
149                    xmldict['institution_acct'] = "0106259811"   
150                    xmldict['institution_bank_id'] = '10'
151                    self.pay_item_id = '110'
152                elif xmldict['faculty'] in ('IICT',):
153                    xmldict['institution_acct'] = "0106259811"
154                    xmldict['institution_bank_id'] = '10'
155                    self.pay_item_id = '108'
156            else:
157                xmldict['institution_acct'] = "0106259811" 
158                xmldict['institution_bank_id'] = '10'
159                #Introduce a pay_item_id for part-time for the first time on this portal
160                self.pay_item_id = '145'
161        elif self.context.p_category in SPECIAL_PAYMENT_PARAMS.keys():
162            self.pay_item_id = SPECIAL_PAYMENT_PARAMS[self.context.p_category][0]
163            dalash_amt = SPECIAL_PAYMENT_PARAMS[self.context.p_category][1]
164            provider_amt = SPECIAL_PAYMENT_PARAMS[self.context.p_category][2]
165            xmldict['institution_acct'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][3]
166            xmldict['institution_bank_id'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][4]
167            if self.context.amount_auth <= 2000.0:
168                gateway_amt = round(0.015 * self.context.amount_auth, 2)
169        elif 'maintenance' in self.context.p_category:
170            self.pay_item_id = '102'
171            xmldict['institution_acct'] = "0106259811"
172            xmldict['institution_bank_id'] = '10'
173            dalash_amt = 0.0
174            provider_amt = 0.0
175        else:
176            xmldict['institution_acct'] = "0000000000000"
177            xmldict['institution_bank_id'] = '0'
178
179        xmldict['dalash_amt'] = 100 * dalash_amt
180        xmldict['provider_amt'] = 100 * provider_amt
181        xmldict['institution_amt'] = 100 * (
182                self.context.amount_auth - provider_amt -
183                gateway_amt - dalash_amt)
184
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
194        # Interswitch amount is not part of the xml data
195
196        if 'maintenance' in self.context.p_category:
197            xmltext = """<payment_item_detail>
198<item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s">
199<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" />
200</item_details>
201</payment_item_detail>""" % xmldict
202
203        else:
204            xmltext = """<payment_item_detail>
205<item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s">
206<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" />
207<item_detail item_id="2" item_name="Dalash" item_amt="%(dalash_amt)d" bank_id="117" acct_num="1013196791" />
208<item_detail item_id="3" item_name="%(provider_item_name)s" item_amt="%(provider_amt)d" bank_id="%(provider_bank_id)s" acct_num="%(provider_acct)s" />
209</item_details>
210</payment_item_detail>""" % xmldict
211
212        self.xml_data = """<input type="hidden" name="xml_data" value='%s'  />""" % xmltext
213        self.context.provider_amt = provider_amt
214        self.context.gateway_amt = gateway_amt
215        self.context.thirdparty_amt = dalash_amt
216        return
217
218class CustomInterswitchPageApplicant(InterswitchPageApplicant):
219    """ View which sends a POST request to the Interswitch
220    CollegePAY payment gateway.
221    """
222    grok.context(ICustomApplicantOnlinePayment)
223    grok.template('applicant_goto_interswitch')
224    action = POST_ACTION
225    site_name = SITE_NAME
226    currency = CURRENCY
227    pay_item_id = '103'
228    product_id = PRODUCT_ID
229    mac = 'E6BA6CBBA9AF2871EE25C32C8D57C98895B9B001DC5B9CB2C463E2A9BDA44A3F1260C8A364F33789CDF74CB3EE7E6EF5D94F48D3AF7B727E75D97F07618DFA6D'
230
231    def update(self):
232        error = self.init_update()
233        if error:
234            self.flash(error, type='danger')
235            self.redirect(self.url(self.context, '@@index'))
236            return
237        xmldict = {}
238        provider_amt = 300.0
239        dalash_amt = 200.0
240        gateway_amt = GATEWAY_AMT
241        xmldict['institution_acct'] = '00000000000'
242        xmldict['institution_bank_id'] = '00'
243        if self.applicant.applicant_id.startswith('hnd'):
244            xmldict['institution_acct'] = '0106259811'
245            xmldict['institution_bank_id'] = '10'
246        elif self.applicant.applicant_id.startswith('nd'):
247            xmldict['institution_acct'] = '0106259811'
248            xmldict['institution_bank_id'] = '10'
249        elif self.applicant.applicant_id.startswith('rmd'):
250            xmldict['institution_acct'] = '0106259811'
251            xmldict['institution_bank_id'] = '10'
252        elif self.applicant.applicant_id.startswith('pgft'):
253            xmldict['institution_acct'] = '0106259811'
254            xmldict['institution_bank_id'] = '10'
255        elif self.applicant.applicant_id.startswith('prejambites') or \
256            self.applicant.applicant_id.startswith('putme'):
257            xmldict['institution_acct'] = '0106259811'
258            xmldict['institution_bank_id'] = '10'
259            self.pay_item_id = '104'
260        elif self.applicant.applicant_id.startswith('pre'):
261            xmldict['institution_acct'] = '0106259811'
262            xmldict['institution_bank_id'] = '10'
263        elif self.applicant.applicant_id.startswith('special'):
264            if self.context.p_category in SPECIAL_PAYMENT_PARAMS.keys():
265                self.pay_item_id = SPECIAL_PAYMENT_PARAMS[self.context.p_category][0]
266                dalash_amt = SPECIAL_PAYMENT_PARAMS[self.context.p_category][1]
267                provider_amt = SPECIAL_PAYMENT_PARAMS[self.context.p_category][2]
268                xmldict['institution_acct'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][3]
269                xmldict['institution_bank_id'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][4]
270                if self.context.amount_auth <= 2000.0:
271                    gateway_amt = round(0.015 * self.context.amount_auth, 2)
272        xmldict['dalash_amt'] = 100 * dalash_amt
273        xmldict['detail_ref'] = self.context.p_id
274        xmldict['provider_amt'] = 100 * provider_amt
275        xmldict['provider_acct'] = PROVIDER_ACCT
276        xmldict['provider_bank_id'] = PROVIDER_BANK_ID
277        xmldict['provider_item_name'] = PROVIDER_ITEM_NAME
278        xmldict['institution_amt'] = 100 * (
279            self.context.amount_auth - provider_amt - gateway_amt - dalash_amt)
280        xmldict['institution_item_name'] = self.category
281        xmldict['institution_name'] = INSTITUTION_NAME
282
283        hashargs = (
284            self.context.p_id +
285            PRODUCT_ID +
286            self.pay_item_id +
287            str(int(self.amount_auth)) +
288            self.site_redirect_url +
289            self.mac)
290        self.hashvalue = hashlib.sha512(hashargs).hexdigest()
291
292        # Interswitch amount is not part of the xml data
293
294        xmltext = """<payment_item_detail>
295<item_details detail_ref="%(detail_ref)s" college="%(institution_name)s">
296<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" />
297<item_detail item_id="2" item_name="Dalash" item_amt="%(dalash_amt)d" bank_id="117" acct_num="1013196791" />
298<item_detail item_id="3" item_name="%(provider_item_name)s" item_amt="%(provider_amt)d" bank_id="%(provider_bank_id)s" acct_num="%(provider_acct)s" />
299</item_details>
300</payment_item_detail>""" % xmldict
301
302        self.xml_data = """<input type="hidden" name="xml_data" value='%s'  />""" % xmltext
303        self.context.provider_amt = provider_amt
304        self.context.gateway_amt = gateway_amt
305        self.context.thirdparty_amt = dalash_amt
306        return
307
308class CustomInterswitchPaymentRequestWebservicePageStudent(
309    InterswitchPaymentRequestWebservicePageStudent):
310    """Request webservice view for the CollegePAY gateway
311    """
312    grok.context(ICustomStudentOnlinePayment)
313    product_id = PRODUCT_ID
314    gateway_host = HOST
315    gateway_url = URL
316
317class CustomInterswitchPaymentVerifyWebservicePageStudent(
318    InterswitchPaymentVerifyWebservicePageStudent):
319    """Payment verify view for the CollegePAY gateway
320    """
321    grok.context(ICustomStudentOnlinePayment)
322    product_id = PRODUCT_ID
323    gateway_host = HOST
324    gateway_url = URL
325
326class CustomInterswitchPaymentRequestWebservicePageApplicant(
327    InterswitchPaymentRequestWebservicePageApplicant):
328    """Request webservice view for the CollegePAY gateway
329    """
330    grok.context(ICustomApplicantOnlinePayment)
331    product_id = PRODUCT_ID
332    gateway_host = HOST
333    gateway_url = URL
334
335class CustomInterswitchPaymentVerifyWebservicePageApplicant(
336    InterswitchPaymentVerifyWebservicePageApplicant):
337    """Payment verify view for the CollegePAY gateway
338    """
339    grok.context(ICustomApplicantOnlinePayment)
340    product_id = PRODUCT_ID
341    gateway_host = HOST
342    gateway_url = URL
Note: See TracBrowser for help on using the repository browser.