[10765] | 1 | ## $Id: browser.py 15777 2019-11-07 21:11:31Z 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 |
---|
[12479] | 19 | import hashlib |
---|
[10765] | 20 | import grok |
---|
| 21 | from kofacustom.nigeria.interswitch.browser import ( |
---|
| 22 | InterswitchPaymentRequestWebservicePageApplicant, |
---|
[11638] | 23 | InterswitchPaymentRequestWebservicePageStudent, |
---|
[13587] | 24 | InterswitchPaymentVerifyWebservicePageApplicant, |
---|
| 25 | InterswitchPaymentVerifyWebservicePageStudent, |
---|
[11638] | 26 | InterswitchPageStudent, InterswitchPageApplicant, |
---|
[10765] | 27 | ) |
---|
[15000] | 28 | from kofacustom.edopoly.students.interfaces import ICustomStudentOnlinePayment |
---|
| 29 | from kofacustom.edopoly.applicants.interfaces import ICustomApplicantOnlinePayment |
---|
| 30 | from kofacustom.edopoly.interfaces import MessageFactory as _ |
---|
[10765] | 31 | |
---|
[15015] | 32 | PRODUCT_ID = '7571' # must be provided by Interswitch |
---|
[15000] | 33 | SITE_NAME = 'edopoly-kofa.waeup.org' |
---|
[15009] | 34 | PROVIDER_ACCT = '0773411069' |
---|
| 35 | PROVIDER_BANK_ID = '31' |
---|
| 36 | PROVIDER_ITEM_NAME = 'WAeAC' |
---|
[15000] | 37 | INSTITUTION_NAME = 'EdoPoly' |
---|
[10765] | 38 | CURRENCY = '566' |
---|
[15015] | 39 | GATEWAY_AMT = 250.0 |
---|
| 40 | MAC = '672ABFB2F3755A7793DE545BDA00F44878DF59140B43A1E7DF16245D299F3108AFF65502F16D95256B3242B43CBC3F512A208EB1BA977080D65328800C49912C' |
---|
[10765] | 41 | |
---|
[15015] | 42 | POST_ACTION = 'https://webpay.interswitchng.com/paydirect/pay' |
---|
| 43 | #POST_ACTION = 'https://sandbox.interswitchng.com/webpay/pay' |
---|
| 44 | HOST = 'webpay.interswitchng.com' |
---|
| 45 | #HOST = 'sandbox.interswitchng.com' |
---|
| 46 | URL = '/paydirect/api/v1/gettransaction.json' |
---|
| 47 | #URL = '/webpay/api/v1/gettransaction.json' |
---|
[14276] | 48 | |
---|
[12479] | 49 | httplib.HTTPSConnection.debuglevel = 0 |
---|
| 50 | HTTPS = True |
---|
[10765] | 51 | |
---|
[15218] | 52 | SPECIAL_PAYMENT_PARAMS = { |
---|
| 53 | |
---|
[15231] | 54 | 'conv_nd': ('101', 1000.0, '0031913976', '121'), |
---|
| 55 | 'conv_hnd': ('101', 1000.0, '0031913976', '121'), |
---|
[15218] | 56 | } |
---|
| 57 | |
---|
| 58 | |
---|
[11638] | 59 | class CustomInterswitchPageStudent(InterswitchPageStudent): |
---|
[10765] | 60 | """ View which sends a POST request to the Interswitch |
---|
| 61 | CollegePAY payment gateway. |
---|
| 62 | """ |
---|
| 63 | grok.context(ICustomStudentOnlinePayment) |
---|
| 64 | action = POST_ACTION |
---|
| 65 | site_name = SITE_NAME |
---|
| 66 | currency = CURRENCY |
---|
| 67 | product_id = PRODUCT_ID |
---|
[15015] | 68 | mac = MAC |
---|
[10765] | 69 | |
---|
| 70 | def update(self): |
---|
[12979] | 71 | error = self.init_update() |
---|
| 72 | if error: |
---|
| 73 | self.flash(error, type='danger') |
---|
| 74 | self.redirect(self.url(self.context, '@@index')) |
---|
| 75 | return |
---|
[15777] | 76 | self.context.r_company = u'interswitch' |
---|
[11647] | 77 | student = self.student |
---|
| 78 | xmldict = self.xmldict |
---|
[10765] | 79 | # Provider data |
---|
| 80 | xmldict['detail_ref'] = self.context.p_id |
---|
| 81 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 82 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 83 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
[15015] | 84 | provider_amt = 0.0 |
---|
[15031] | 85 | if not self.context.p_item == 'Balance': |
---|
| 86 | if self.context.p_category == 'ict_entre': |
---|
| 87 | provider_amt = 3000.0 |
---|
| 88 | if self.context.p_category == 'clearance': |
---|
| 89 | provider_amt = 1500.0 |
---|
[15079] | 90 | # temporarily disabled |
---|
| 91 | #if self.context.p_category in ('transcript', 'certificate'): |
---|
| 92 | # provider_amt = 2000.0 |
---|
[10765] | 93 | # Institution data |
---|
[15026] | 94 | xmldict['institution_acct'] = '0068241848' |
---|
[15009] | 95 | xmldict['institution_bank_id'] = '121' |
---|
[15105] | 96 | if self.context.p_category == 'union': |
---|
| 97 | xmldict['institution_acct'] = '0066437412' |
---|
[10765] | 98 | xmldict['institution_amt'] = '0.0' |
---|
[15009] | 99 | self.pay_item_id = '101' # must be provided by Interswitch |
---|
[10765] | 100 | xmldict['provider_amt'] = 100 * provider_amt |
---|
[12511] | 101 | xmldict['institution_item_name'] = self.context.category |
---|
[10765] | 102 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
| 103 | xmldict['institution_amt'] = 100 * ( |
---|
| 104 | self.context.amount_auth - provider_amt - GATEWAY_AMT) |
---|
| 105 | # Interswitch amount is not part of the xml data |
---|
[15105] | 106 | if provider_amt == 0: |
---|
[10765] | 107 | xmltext = """<payment_item_detail> |
---|
| 108 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 109 | <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" /> |
---|
| 110 | </item_details> |
---|
| 111 | </payment_item_detail>""" % xmldict |
---|
| 112 | else: |
---|
| 113 | xmltext = """<payment_item_detail> |
---|
| 114 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 115 | <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" /> |
---|
| 116 | <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" /> |
---|
| 117 | </item_details> |
---|
| 118 | </payment_item_detail>""" % xmldict |
---|
| 119 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
| 120 | self.context.provider_amt = provider_amt |
---|
| 121 | self.context.gateway_amt = GATEWAY_AMT |
---|
[15777] | 122 | self.amount_auth = int(100 * self.context.amount_auth) |
---|
[12479] | 123 | hashargs = ( |
---|
| 124 | self.context.p_id + |
---|
| 125 | PRODUCT_ID + |
---|
| 126 | self.pay_item_id + |
---|
| 127 | str(int(self.amount_auth)) + |
---|
| 128 | self.site_redirect_url + |
---|
| 129 | self.mac) |
---|
| 130 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
[10765] | 131 | return |
---|
| 132 | |
---|
[11638] | 133 | class CustomInterswitchPageApplicant(InterswitchPageApplicant): |
---|
[10765] | 134 | """ View which sends a POST request to the Interswitch |
---|
| 135 | CollegePAY payment gateway. |
---|
| 136 | """ |
---|
| 137 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 138 | action = POST_ACTION |
---|
| 139 | site_name = SITE_NAME |
---|
| 140 | currency = CURRENCY |
---|
[15015] | 141 | pay_item_id = '101' # must be provided by Interswitch |
---|
[10765] | 142 | product_id = PRODUCT_ID |
---|
[15015] | 143 | mac = MAC |
---|
[10765] | 144 | |
---|
| 145 | def update(self): |
---|
[12979] | 146 | error = self.init_update() |
---|
| 147 | if error: |
---|
| 148 | self.flash(error, type='danger') |
---|
| 149 | self.redirect(self.url(self.context, '@@index')) |
---|
| 150 | return |
---|
[15777] | 151 | self.context.r_company = u'interswitch' |
---|
[10765] | 152 | xmldict = {} |
---|
[15015] | 153 | provider_amt = 1000.0 |
---|
[15136] | 154 | if self.context.p_category != 'application': |
---|
| 155 | provider_amt = 0.0 |
---|
[15101] | 156 | xmldict['institution_acct'] = '0068241848' |
---|
[15015] | 157 | xmldict['institution_bank_id'] = '121' |
---|
[10765] | 158 | xmldict['detail_ref'] = self.context.p_id |
---|
| 159 | xmldict['provider_amt'] = 100 * provider_amt |
---|
| 160 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 161 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 162 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
[15259] | 163 | xmldict['institution_amt'] = 100 * ( |
---|
| 164 | self.context.amount_auth - provider_amt - GATEWAY_AMT) |
---|
[12511] | 165 | xmldict['institution_item_name'] = self.context.category |
---|
[10765] | 166 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
[15218] | 167 | if self.context.p_category in SPECIAL_PAYMENT_PARAMS.keys(): |
---|
| 168 | self.pay_item_id = SPECIAL_PAYMENT_PARAMS[self.context.p_category][0] |
---|
[15259] | 169 | xmldict['institution_acct'] = SPECIAL_PAYMENT_PARAMS[ |
---|
| 170 | self.context.p_category][2] |
---|
| 171 | xmldict['institution_bank_id'] = SPECIAL_PAYMENT_PARAMS[ |
---|
| 172 | self.context.p_category][3] |
---|
[15218] | 173 | provider_amt = SPECIAL_PAYMENT_PARAMS[self.context.p_category][1] |
---|
[15259] | 174 | xmldict['institution_amt'] = 100 * ( |
---|
| 175 | self.context.amount_auth - provider_amt - GATEWAY_AMT) |
---|
| 176 | xmldict['provider_amt'] = 100 * provider_amt |
---|
[10765] | 177 | # Interswitch amount is not part of the xml data |
---|
[15137] | 178 | if provider_amt == 0: |
---|
| 179 | xmltext = """<payment_item_detail> |
---|
[10765] | 180 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
| 181 | <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" /> |
---|
[15137] | 182 | </item_details> |
---|
| 183 | </payment_item_detail>""" % xmldict |
---|
| 184 | else: |
---|
| 185 | xmltext = """<payment_item_detail> |
---|
| 186 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
| 187 | <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" /> |
---|
[10765] | 188 | <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" /> |
---|
| 189 | </item_details> |
---|
| 190 | </payment_item_detail>""" % xmldict |
---|
[15137] | 191 | |
---|
[10765] | 192 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
| 193 | self.context.provider_amt = provider_amt |
---|
| 194 | self.context.gateway_amt = GATEWAY_AMT |
---|
[15777] | 195 | self.amount_auth = int(100 * self.context.amount_auth) |
---|
[12479] | 196 | hashargs = ( |
---|
| 197 | self.context.p_id + |
---|
| 198 | PRODUCT_ID + |
---|
| 199 | self.pay_item_id + |
---|
| 200 | str(int(self.amount_auth)) + |
---|
| 201 | self.site_redirect_url + |
---|
| 202 | self.mac) |
---|
| 203 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
[10765] | 204 | return |
---|
| 205 | |
---|
[11638] | 206 | class CustomInterswitchPaymentRequestWebservicePageStudent( |
---|
[10765] | 207 | InterswitchPaymentRequestWebservicePageStudent): |
---|
[13587] | 208 | """Request webservice view for the CollegePAY gateway |
---|
[10765] | 209 | """ |
---|
| 210 | grok.context(ICustomStudentOnlinePayment) |
---|
| 211 | product_id = PRODUCT_ID |
---|
| 212 | gateway_host = HOST |
---|
| 213 | gateway_url = URL |
---|
[15015] | 214 | mac = MAC |
---|
[10765] | 215 | |
---|
[13587] | 216 | class CustomInterswitchPaymentVerifyWebservicePageStudent( |
---|
| 217 | InterswitchPaymentVerifyWebservicePageStudent): |
---|
| 218 | """Payment verify view for the CollegePAY gateway |
---|
| 219 | """ |
---|
| 220 | grok.context(ICustomStudentOnlinePayment) |
---|
| 221 | product_id = PRODUCT_ID |
---|
| 222 | gateway_host = HOST |
---|
| 223 | gateway_url = URL |
---|
[15015] | 224 | mac = MAC |
---|
[13587] | 225 | |
---|
[11638] | 226 | class CustomInterswitchPaymentRequestWebservicePageApplicant( |
---|
[10765] | 227 | InterswitchPaymentRequestWebservicePageApplicant): |
---|
[13587] | 228 | """Request webservice view for the CollegePAY gateway |
---|
[10765] | 229 | """ |
---|
| 230 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 231 | product_id = PRODUCT_ID |
---|
| 232 | gateway_host = HOST |
---|
[12479] | 233 | gateway_url = URL |
---|
[15015] | 234 | mac = MAC |
---|
[13587] | 235 | |
---|
| 236 | class CustomInterswitchPaymentVerifyWebservicePageApplicant( |
---|
| 237 | InterswitchPaymentVerifyWebservicePageApplicant): |
---|
| 238 | """Payment verify view for the CollegePAY gateway |
---|
| 239 | """ |
---|
| 240 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 241 | product_id = PRODUCT_ID |
---|
| 242 | gateway_host = HOST |
---|
[15015] | 243 | gateway_url = URL |
---|
| 244 | mac = MAC |
---|