1 | ## $Id: browser.py 13588 2016-01-11 09:14:58Z 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 zope.interface import Interface |
---|
22 | from zope.component import queryAdapter |
---|
23 | from kofacustom.nigeria.interswitch.browser import ( |
---|
24 | InterswitchPaymentRequestWebservicePageStudent, |
---|
25 | InterswitchPaymentVerifyWebservicePageStudent, |
---|
26 | InterswitchPageStudent |
---|
27 | ) |
---|
28 | from waeup.aaua.students.interfaces import ICustomStudentOnlinePayment |
---|
29 | from waeup.aaua.applicants.interfaces import ICustomApplicantOnlinePayment |
---|
30 | from waeup.aaua.interfaces import MessageFactory as _ |
---|
31 | |
---|
32 | PRODUCT_ID = '105' |
---|
33 | SITE_NAME = 'aaua.waeup.org' |
---|
34 | PROVIDER_ACCT = '6012015294' |
---|
35 | PROVIDER_BANK_ID = '117' |
---|
36 | PROVIDER_ITEM_NAME = 'BT Education' |
---|
37 | INSTITUTION_NAME = 'AAUA' |
---|
38 | CURRENCY = '566' |
---|
39 | GATEWAY_AMT = 150.0 |
---|
40 | #QUERY_URL = 'https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx' |
---|
41 | #QUERY_URL = 'https://testwebpay.interswitchng.com/test_paydirect/services/TransactionQueryURL.aspx' |
---|
42 | |
---|
43 | POST_ACTION = 'https://webpay.interswitchng.com/paydirect/webpay/pay.aspx' |
---|
44 | #POST_ACTION = 'https://testwebpay.interswitchng.com/test_paydirect/webpay/pay.aspx' |
---|
45 | |
---|
46 | HOST = 'webpay.interswitchng.com' |
---|
47 | #HOST = 'testwebpay.interswitchng.com' |
---|
48 | |
---|
49 | URL = '/paydirect/services/TransactionQueryWs.asmx' |
---|
50 | #URL = '/test_paydirect/services/TransactionQueryWs.asmx' |
---|
51 | httplib.HTTPConnection.debuglevel = 0 |
---|
52 | |
---|
53 | def interswitch_img_url(view): |
---|
54 | static = view.static |
---|
55 | if static is None or static.get( |
---|
56 | 'interswitch_verve_mastercard.gif', None) is None: |
---|
57 | static = queryAdapter( |
---|
58 | view.request, Interface, name='waeup.aaua.interswitch') |
---|
59 | return static['interswitch_verve_mastercard.gif']() |
---|
60 | |
---|
61 | class CustomInterswitchPageStudent(InterswitchPageStudent): |
---|
62 | """ View which sends a POST request to the Interswitch |
---|
63 | CollegePAY payment gateway. |
---|
64 | """ |
---|
65 | grok.context(ICustomStudentOnlinePayment) |
---|
66 | grok.template('student_goto_interswitch') |
---|
67 | action = POST_ACTION |
---|
68 | site_name = SITE_NAME |
---|
69 | currency = CURRENCY |
---|
70 | product_id = PRODUCT_ID |
---|
71 | #mac = '' |
---|
72 | |
---|
73 | def interswitch_img_url(self): |
---|
74 | return interswitch_img_url(self) |
---|
75 | |
---|
76 | def update(self): |
---|
77 | error = self.init_update() |
---|
78 | if error: |
---|
79 | self.flash(error, type='danger') |
---|
80 | self.redirect(self.url(self.context, '@@index')) |
---|
81 | return |
---|
82 | student = self.student |
---|
83 | xmldict = self.xmldict |
---|
84 | # Provider data |
---|
85 | xmldict['detail_ref'] = self.context.p_id |
---|
86 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
87 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
88 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
89 | # Institution data |
---|
90 | xmldict['institution_acct'] = "0000000000000" |
---|
91 | xmldict['institution_bank_id'] = '0' |
---|
92 | xmldict['institution_item_name'] = self.category |
---|
93 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
94 | self.pay_item_id = '000' |
---|
95 | if self.context.p_category in ('schoolfee', 'schoolfee_1', 'schoolfee_2'): |
---|
96 | provider_amt = 3000.0 |
---|
97 | if self.context.p_category == 'schoolfee_2': |
---|
98 | provider_amt = 0.0 |
---|
99 | xmldict['provider_amt'] = 100 * provider_amt |
---|
100 | self.pay_item_id = '10500' |
---|
101 | xmldict['institution_amt'] = 100 * ( |
---|
102 | self.context.amount_auth - provider_amt - |
---|
103 | GATEWAY_AMT) |
---|
104 | if student.current_mode.endswith('_pt'): |
---|
105 | xmldict['institution_acct'] = "0321100000000046" |
---|
106 | xmldict['institution_bank_id'] = "89" |
---|
107 | elif student.current_mode.endswith('_sw'): |
---|
108 | xmldict['institution_acct'] = "2461770000021" |
---|
109 | xmldict['institution_bank_id'] = "120" |
---|
110 | |
---|
111 | #hashargs = ( |
---|
112 | # self.context.p_id + |
---|
113 | # PRODUCT_ID + |
---|
114 | # self.pay_item_id + |
---|
115 | # str(int(self.amount_auth)) + |
---|
116 | # self.site_redirect_url + |
---|
117 | # self.mac) |
---|
118 | #self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
119 | |
---|
120 | # Interswitch amount is not part of the xml data |
---|
121 | |
---|
122 | if self.context.p_category in ('schoolfee', 'schoolfee_1'): |
---|
123 | xmltext = """<payment_item_detail> |
---|
124 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
125 | <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" /> |
---|
126 | <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" /> |
---|
127 | </item_details> |
---|
128 | </payment_item_detail>""" % xmldict |
---|
129 | elif self.context.p_category == 'schoolfee_2': |
---|
130 | xmltext = """<payment_item_detail> |
---|
131 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
132 | <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" /> |
---|
133 | </item_details> |
---|
134 | </payment_item_detail>""" % xmldict |
---|
135 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
136 | self.context.provider_amt = provider_amt |
---|
137 | self.context.gateway_amt = GATEWAY_AMT |
---|
138 | return |
---|
139 | |
---|
140 | class CustomInterswitchPaymentRequestWebservicePageStudent( |
---|
141 | InterswitchPaymentRequestWebservicePageStudent): |
---|
142 | """Request webservice view for the CollegePAY gateway |
---|
143 | """ |
---|
144 | grok.context(ICustomStudentOnlinePayment) |
---|
145 | product_id = PRODUCT_ID |
---|
146 | gateway_host = HOST |
---|
147 | gateway_url = URL |
---|
148 | |
---|
149 | class CustomInterswitchPaymentVerifyWebservicePageStudent( |
---|
150 | InterswitchPaymentVerifyWebservicePageStudent): |
---|
151 | """Payment verify view for the CollegePAY gateway |
---|
152 | """ |
---|
153 | grok.context(ICustomStudentOnlinePayment) |
---|
154 | product_id = PRODUCT_ID |
---|
155 | gateway_host = HOST |
---|
156 | gateway_url = URL |
---|