[10765] | 1 | ## $Id: browser.py 16233 2020-09-10 09:33:13Z 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 ( |
---|
[15999] | 22 | module_activated, |
---|
[10765] | 23 | InterswitchPaymentRequestWebservicePageApplicant, |
---|
[11638] | 24 | InterswitchPaymentRequestWebservicePageStudent, |
---|
[13587] | 25 | InterswitchPaymentVerifyWebservicePageApplicant, |
---|
| 26 | InterswitchPaymentVerifyWebservicePageStudent, |
---|
[11638] | 27 | InterswitchPageStudent, InterswitchPageApplicant, |
---|
[10765] | 28 | ) |
---|
[15563] | 29 | from kofacustom.iuokada.students.interfaces import ICustomStudentOnlinePayment |
---|
| 30 | from kofacustom.iuokada.applicants.interfaces import ICustomApplicantOnlinePayment |
---|
| 31 | from kofacustom.iuokada.interfaces import MessageFactory as _ |
---|
[10765] | 32 | |
---|
[15728] | 33 | PRODUCT_ID = '7922' |
---|
[15563] | 34 | SITE_NAME = 'iuokada-kofa.waeup.org' |
---|
[15645] | 35 | PROVIDER_ACCT = '0773411069' |
---|
| 36 | PROVIDER_BANK_ID = '31' |
---|
| 37 | PROVIDER_ITEM_NAME = 'WAeAC' |
---|
[15563] | 38 | INSTITUTION_NAME = 'IUOkada' |
---|
[10765] | 39 | CURRENCY = '566' |
---|
[15728] | 40 | GATEWAY_AMT = 250.0 |
---|
| 41 | #MAC = 'CEF793CBBE838AA0CBB29B74D571113B4EA6586D3BA77E7CFA0B95E278364EFC4526ED7BD255A366CDDE11F1F607F0F844B09D93B16F7CFE87563B2272007AB3' # must be provided by Interswitch |
---|
| 42 | MAC = '4D8723F33D728BE3F4A77B2DFB3F57B0BCF2DD818759D54A87B2A60874067F28D94F2B91E29BFB884F920F48E0973D826835A8F2D6F74220C64EDE4DE00E45AA' |
---|
[10765] | 43 | |
---|
[15728] | 44 | POST_ACTION = 'https://webpay.interswitchng.com/paydirect/pay' |
---|
| 45 | #POST_ACTION = 'https://sandbox.interswitchng.com/webpay/pay' |
---|
| 46 | HOST = 'webpay.interswitchng.com' |
---|
| 47 | #HOST = 'sandbox.interswitchng.com' |
---|
| 48 | URL = '/paydirect/api/v1/gettransaction.json' |
---|
| 49 | #URL = '/webpay/api/v1/gettransaction.json' |
---|
[14276] | 50 | |
---|
[12479] | 51 | httplib.HTTPSConnection.debuglevel = 0 |
---|
| 52 | HTTPS = True |
---|
[10765] | 53 | |
---|
[11638] | 54 | class CustomInterswitchPageStudent(InterswitchPageStudent): |
---|
[10765] | 55 | """ View which sends a POST request to the Interswitch |
---|
| 56 | CollegePAY payment gateway. |
---|
| 57 | """ |
---|
| 58 | grok.context(ICustomStudentOnlinePayment) |
---|
| 59 | action = POST_ACTION |
---|
| 60 | site_name = SITE_NAME |
---|
| 61 | currency = CURRENCY |
---|
| 62 | product_id = PRODUCT_ID |
---|
[15269] | 63 | mac = MAC |
---|
[15773] | 64 | gateway_amt = GATEWAY_AMT |
---|
[10765] | 65 | |
---|
| 66 | def update(self): |
---|
[15999] | 67 | if not module_activated( |
---|
| 68 | self.context.student.current_session, self.context): |
---|
| 69 | self.flash(_('Forbidden'), type='danger') |
---|
| 70 | self.redirect(self.url(self.context, '@@index')) |
---|
| 71 | return |
---|
[12979] | 72 | error = self.init_update() |
---|
| 73 | if error: |
---|
| 74 | self.flash(error, type='danger') |
---|
| 75 | self.redirect(self.url(self.context, '@@index')) |
---|
| 76 | return |
---|
[15773] | 77 | # Already now it becomes an Interswitch payment. We set the net amount |
---|
| 78 | # and add the gateway amount. |
---|
| 79 | if not self.context.r_company: |
---|
| 80 | self.context.net_amt = self.context.amount_auth |
---|
| 81 | self.context.amount_auth += self.gateway_amt |
---|
| 82 | self.context.gateway_amt = self.gateway_amt |
---|
| 83 | self.context.r_company = u'interswitch' |
---|
[11647] | 84 | student = self.student |
---|
| 85 | xmldict = self.xmldict |
---|
[10765] | 86 | # Provider data |
---|
| 87 | xmldict['detail_ref'] = self.context.p_id |
---|
| 88 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 89 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 90 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
[15728] | 91 | xmldict['institution_acct'] = '' |
---|
| 92 | xmldict['institution_bank_id'] = '' |
---|
[15773] | 93 | provider_amt = 0.0 |
---|
[15728] | 94 | self.pay_item_id = '' |
---|
[10765] | 95 | # Institution data |
---|
[15728] | 96 | if self.context.p_category in ( |
---|
| 97 | 'schoolfee', 'schoolfee40', 'secondinstal'): |
---|
| 98 | xmldict['institution_acct'] = '1011005811' |
---|
| 99 | xmldict['institution_bank_id'] = '117' |
---|
| 100 | self.pay_item_id = '101' |
---|
| 101 | elif self.context.p_category == 'book': |
---|
| 102 | xmldict['institution_acct'] = '1013249587' |
---|
| 103 | xmldict['institution_bank_id'] = '117' |
---|
| 104 | self.pay_item_id = '103' |
---|
| 105 | elif self.context.p_category == 'parentsconsult': |
---|
| 106 | xmldict['institution_acct'] = '1012355544' |
---|
| 107 | xmldict['institution_bank_id'] = '117' |
---|
| 108 | self.pay_item_id = '104' |
---|
[15794] | 109 | elif self.context.p_category in ( |
---|
| 110 | 'municipal_fresh', 'municipal_returning', |
---|
[16142] | 111 | 'transcript_local', 'transcript_overseas', 'transcript'): |
---|
[15794] | 112 | xmldict['institution_acct'] = '0040621193' |
---|
| 113 | xmldict['institution_bank_id'] = '31' |
---|
| 114 | self.pay_item_id = '105' |
---|
[15728] | 115 | else: |
---|
| 116 | xmldict['institution_acct'] = '1011050158' |
---|
| 117 | xmldict['institution_bank_id'] = '117' |
---|
| 118 | self.pay_item_id = '102' |
---|
[16233] | 119 | if self.context.p_category in ( |
---|
| 120 | 'registration', 'required_combi', 'pg_other'): |
---|
[15728] | 121 | provider_amt = 5000.0 |
---|
[16047] | 122 | if self.context.p_category in ( |
---|
| 123 | 'schoolfee', 'schoolfee40') and student.is_jupeb: |
---|
| 124 | provider_amt = 5000.0 |
---|
[10765] | 125 | xmldict['provider_amt'] = 100 * provider_amt |
---|
[12511] | 126 | xmldict['institution_item_name'] = self.context.category |
---|
[10765] | 127 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
[15773] | 128 | xmldict['institution_amt'] = 100 * self.context.net_amt |
---|
| 129 | if not self.context.provider_amt: |
---|
| 130 | self.context.provider_amt = provider_amt |
---|
| 131 | self.context.amount_auth += provider_amt |
---|
[10765] | 132 | if provider_amt == 0: |
---|
| 133 | xmltext = """<payment_item_detail> |
---|
| 134 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 135 | <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" /> |
---|
| 136 | </item_details> |
---|
| 137 | </payment_item_detail>""" % xmldict |
---|
| 138 | else: |
---|
| 139 | xmltext = """<payment_item_detail> |
---|
| 140 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 141 | <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" /> |
---|
| 142 | <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" /> |
---|
| 143 | </item_details> |
---|
| 144 | </payment_item_detail>""" % xmldict |
---|
| 145 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
[15773] | 146 | self.amount_auth = int(100 * self.context.amount_auth) |
---|
[12479] | 147 | hashargs = ( |
---|
| 148 | self.context.p_id + |
---|
| 149 | PRODUCT_ID + |
---|
| 150 | self.pay_item_id + |
---|
| 151 | str(int(self.amount_auth)) + |
---|
| 152 | self.site_redirect_url + |
---|
| 153 | self.mac) |
---|
| 154 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
[10765] | 155 | return |
---|
| 156 | |
---|
[11638] | 157 | class CustomInterswitchPageApplicant(InterswitchPageApplicant): |
---|
[10765] | 158 | """ View which sends a POST request to the Interswitch |
---|
| 159 | CollegePAY payment gateway. |
---|
| 160 | """ |
---|
| 161 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 162 | action = POST_ACTION |
---|
| 163 | site_name = SITE_NAME |
---|
| 164 | currency = CURRENCY |
---|
| 165 | product_id = PRODUCT_ID |
---|
[15269] | 166 | mac = MAC |
---|
[15773] | 167 | gateway_amt = GATEWAY_AMT |
---|
[10765] | 168 | |
---|
| 169 | def update(self): |
---|
[15999] | 170 | if not module_activated( |
---|
| 171 | self.context.__parent__.__parent__.year, self.context): |
---|
| 172 | self.flash(_('Forbidden'), type='danger') |
---|
| 173 | self.redirect(self.url(self.context, '@@index')) |
---|
| 174 | return |
---|
[12979] | 175 | error = self.init_update() |
---|
| 176 | if error: |
---|
| 177 | self.flash(error, type='danger') |
---|
| 178 | self.redirect(self.url(self.context, '@@index')) |
---|
| 179 | return |
---|
[15773] | 180 | # Already now it becomes an Interswitch payment. We set the net amount |
---|
| 181 | # and add the gateway amount. |
---|
| 182 | if not self.context.r_company: |
---|
| 183 | self.context.net_amt = self.context.amount_auth |
---|
| 184 | self.context.amount_auth += self.gateway_amt |
---|
| 185 | self.context.gateway_amt = self.gateway_amt |
---|
| 186 | self.context.r_company = u'interswitch' |
---|
| 187 | self.amount_auth = int(100 * self.context.amount_auth) |
---|
[10765] | 188 | xmldict = {} |
---|
[15773] | 189 | provider_amt = 0.0 |
---|
[15786] | 190 | self.pay_item_id = '101' |
---|
[15783] | 191 | xmldict['institution_acct'] = '1011005811' |
---|
| 192 | xmldict['institution_bank_id'] = '117' |
---|
[10765] | 193 | xmldict['detail_ref'] = self.context.p_id |
---|
| 194 | xmldict['provider_amt'] = 100 * provider_amt |
---|
| 195 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 196 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 197 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
[12511] | 198 | xmldict['institution_item_name'] = self.context.category |
---|
[10765] | 199 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
[15773] | 200 | xmldict['institution_amt'] = 100 * self.context.net_amt |
---|
| 201 | if not self.context.provider_amt: |
---|
| 202 | self.context.provider_amt = provider_amt |
---|
| 203 | self.context.amount_auth += provider_amt |
---|
[15784] | 204 | if provider_amt == 0: |
---|
| 205 | xmltext = """<payment_item_detail> |
---|
[15785] | 206 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
[10765] | 207 | <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" /> |
---|
[15784] | 208 | </item_details> |
---|
| 209 | </payment_item_detail>""" % xmldict |
---|
| 210 | else: |
---|
| 211 | xmltext = """<payment_item_detail> |
---|
[15785] | 212 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
[15784] | 213 | <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] | 214 | <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" /> |
---|
| 215 | </item_details> |
---|
| 216 | </payment_item_detail>""" % xmldict |
---|
| 217 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
[15773] | 218 | self.amount_auth = int(100 * self.context.amount_auth) |
---|
[12479] | 219 | hashargs = ( |
---|
| 220 | self.context.p_id + |
---|
| 221 | PRODUCT_ID + |
---|
[15786] | 222 | self.pay_item_id + |
---|
[12479] | 223 | str(int(self.amount_auth)) + |
---|
| 224 | self.site_redirect_url + |
---|
| 225 | self.mac) |
---|
| 226 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
[10765] | 227 | return |
---|
| 228 | |
---|
[11638] | 229 | class CustomInterswitchPaymentRequestWebservicePageStudent( |
---|
[10765] | 230 | InterswitchPaymentRequestWebservicePageStudent): |
---|
[13587] | 231 | """Request webservice view for the CollegePAY gateway |
---|
[10765] | 232 | """ |
---|
| 233 | grok.context(ICustomStudentOnlinePayment) |
---|
| 234 | product_id = PRODUCT_ID |
---|
| 235 | gateway_host = HOST |
---|
| 236 | gateway_url = URL |
---|
[15269] | 237 | mac = MAC |
---|
[10765] | 238 | |
---|
[13587] | 239 | class CustomInterswitchPaymentVerifyWebservicePageStudent( |
---|
| 240 | InterswitchPaymentVerifyWebservicePageStudent): |
---|
| 241 | """Payment verify view for the CollegePAY gateway |
---|
| 242 | """ |
---|
| 243 | grok.context(ICustomStudentOnlinePayment) |
---|
| 244 | product_id = PRODUCT_ID |
---|
| 245 | gateway_host = HOST |
---|
| 246 | gateway_url = URL |
---|
[15269] | 247 | mac = MAC |
---|
[13587] | 248 | |
---|
[11638] | 249 | class CustomInterswitchPaymentRequestWebservicePageApplicant( |
---|
[10765] | 250 | InterswitchPaymentRequestWebservicePageApplicant): |
---|
[13587] | 251 | """Request webservice view for the CollegePAY gateway |
---|
[10765] | 252 | """ |
---|
| 253 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 254 | product_id = PRODUCT_ID |
---|
| 255 | gateway_host = HOST |
---|
[12479] | 256 | gateway_url = URL |
---|
[15269] | 257 | mac = MAC |
---|
[13587] | 258 | |
---|
| 259 | class CustomInterswitchPaymentVerifyWebservicePageApplicant( |
---|
| 260 | InterswitchPaymentVerifyWebservicePageApplicant): |
---|
| 261 | """Payment verify view for the CollegePAY gateway |
---|
| 262 | """ |
---|
| 263 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 264 | product_id = PRODUCT_ID |
---|
| 265 | gateway_host = HOST |
---|
[15269] | 266 | gateway_url = URL |
---|
| 267 | mac = MAC |
---|