[10765] | 1 | ## $Id: browser.py 15137 2018-09-14 06:17:18Z 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 | |
---|
[11638] | 52 | class CustomInterswitchPageStudent(InterswitchPageStudent): |
---|
[10765] | 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 |
---|
[15015] | 61 | mac = MAC |
---|
[10765] | 62 | |
---|
| 63 | def update(self): |
---|
[12979] | 64 | error = self.init_update() |
---|
| 65 | if error: |
---|
| 66 | self.flash(error, type='danger') |
---|
| 67 | self.redirect(self.url(self.context, '@@index')) |
---|
| 68 | return |
---|
[11647] | 69 | student = self.student |
---|
| 70 | xmldict = self.xmldict |
---|
[10765] | 71 | # Provider data |
---|
| 72 | xmldict['detail_ref'] = self.context.p_id |
---|
| 73 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 74 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 75 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
[15015] | 76 | provider_amt = 0.0 |
---|
[15031] | 77 | if not self.context.p_item == 'Balance': |
---|
| 78 | if self.context.p_category == 'ict_entre': |
---|
| 79 | provider_amt = 3000.0 |
---|
| 80 | if self.context.p_category == 'clearance': |
---|
| 81 | provider_amt = 1500.0 |
---|
[15079] | 82 | # temporarily disabled |
---|
| 83 | #if self.context.p_category in ('transcript', 'certificate'): |
---|
| 84 | # provider_amt = 2000.0 |
---|
[10765] | 85 | # Institution data |
---|
[15026] | 86 | xmldict['institution_acct'] = '0068241848' |
---|
[15009] | 87 | xmldict['institution_bank_id'] = '121' |
---|
[15105] | 88 | if self.context.p_category == 'union': |
---|
| 89 | xmldict['institution_acct'] = '0066437412' |
---|
[10765] | 90 | xmldict['institution_amt'] = '0.0' |
---|
[15009] | 91 | self.pay_item_id = '101' # must be provided by Interswitch |
---|
[10765] | 92 | xmldict['provider_amt'] = 100 * provider_amt |
---|
[12511] | 93 | xmldict['institution_item_name'] = self.context.category |
---|
[10765] | 94 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
| 95 | xmldict['institution_amt'] = 100 * ( |
---|
| 96 | self.context.amount_auth - provider_amt - GATEWAY_AMT) |
---|
| 97 | # Interswitch amount is not part of the xml data |
---|
[15105] | 98 | if provider_amt == 0: |
---|
[10765] | 99 | xmltext = """<payment_item_detail> |
---|
| 100 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 101 | <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" /> |
---|
| 102 | </item_details> |
---|
| 103 | </payment_item_detail>""" % xmldict |
---|
| 104 | else: |
---|
| 105 | xmltext = """<payment_item_detail> |
---|
| 106 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 107 | <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" /> |
---|
| 108 | <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" /> |
---|
| 109 | </item_details> |
---|
| 110 | </payment_item_detail>""" % xmldict |
---|
| 111 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
| 112 | self.context.provider_amt = provider_amt |
---|
| 113 | self.context.gateway_amt = GATEWAY_AMT |
---|
[12479] | 114 | |
---|
| 115 | hashargs = ( |
---|
| 116 | self.context.p_id + |
---|
| 117 | PRODUCT_ID + |
---|
| 118 | self.pay_item_id + |
---|
| 119 | str(int(self.amount_auth)) + |
---|
| 120 | self.site_redirect_url + |
---|
| 121 | self.mac) |
---|
| 122 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
[10765] | 123 | return |
---|
| 124 | |
---|
[11638] | 125 | class CustomInterswitchPageApplicant(InterswitchPageApplicant): |
---|
[10765] | 126 | """ View which sends a POST request to the Interswitch |
---|
| 127 | CollegePAY payment gateway. |
---|
| 128 | """ |
---|
| 129 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 130 | action = POST_ACTION |
---|
| 131 | site_name = SITE_NAME |
---|
| 132 | currency = CURRENCY |
---|
[15015] | 133 | pay_item_id = '101' # must be provided by Interswitch |
---|
[10765] | 134 | product_id = PRODUCT_ID |
---|
[15015] | 135 | mac = MAC |
---|
[10765] | 136 | |
---|
| 137 | def update(self): |
---|
[12979] | 138 | error = self.init_update() |
---|
| 139 | if error: |
---|
| 140 | self.flash(error, type='danger') |
---|
| 141 | self.redirect(self.url(self.context, '@@index')) |
---|
| 142 | return |
---|
[10765] | 143 | xmldict = {} |
---|
[15015] | 144 | provider_amt = 1000.0 |
---|
[15136] | 145 | if self.context.p_category != 'application': |
---|
| 146 | provider_amt = 0.0 |
---|
[15101] | 147 | xmldict['institution_acct'] = '0068241848' |
---|
[15015] | 148 | xmldict['institution_bank_id'] = '121' |
---|
[10765] | 149 | xmldict['detail_ref'] = self.context.p_id |
---|
| 150 | xmldict['provider_amt'] = 100 * provider_amt |
---|
| 151 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 152 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 153 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
| 154 | xmldict['institution_amt'] = 100 * (self.context.amount_auth - provider_amt - GATEWAY_AMT) |
---|
[12511] | 155 | xmldict['institution_item_name'] = self.context.category |
---|
[10765] | 156 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
| 157 | # Interswitch amount is not part of the xml data |
---|
[15137] | 158 | if provider_amt == 0: |
---|
| 159 | xmltext = """<payment_item_detail> |
---|
[10765] | 160 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
| 161 | <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] | 162 | </item_details> |
---|
| 163 | </payment_item_detail>""" % xmldict |
---|
| 164 | else: |
---|
| 165 | xmltext = """<payment_item_detail> |
---|
| 166 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
| 167 | <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] | 168 | <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" /> |
---|
| 169 | </item_details> |
---|
| 170 | </payment_item_detail>""" % xmldict |
---|
[15137] | 171 | |
---|
[10765] | 172 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
| 173 | self.context.provider_amt = provider_amt |
---|
| 174 | self.context.gateway_amt = GATEWAY_AMT |
---|
[12479] | 175 | |
---|
| 176 | hashargs = ( |
---|
| 177 | self.context.p_id + |
---|
| 178 | PRODUCT_ID + |
---|
| 179 | self.pay_item_id + |
---|
| 180 | str(int(self.amount_auth)) + |
---|
| 181 | self.site_redirect_url + |
---|
| 182 | self.mac) |
---|
| 183 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
[10765] | 184 | return |
---|
| 185 | |
---|
[11638] | 186 | class CustomInterswitchPaymentRequestWebservicePageStudent( |
---|
[10765] | 187 | InterswitchPaymentRequestWebservicePageStudent): |
---|
[13587] | 188 | """Request webservice view for the CollegePAY gateway |
---|
[10765] | 189 | """ |
---|
| 190 | grok.context(ICustomStudentOnlinePayment) |
---|
| 191 | product_id = PRODUCT_ID |
---|
| 192 | gateway_host = HOST |
---|
| 193 | gateway_url = URL |
---|
[15015] | 194 | mac = MAC |
---|
[10765] | 195 | |
---|
[13587] | 196 | class CustomInterswitchPaymentVerifyWebservicePageStudent( |
---|
| 197 | InterswitchPaymentVerifyWebservicePageStudent): |
---|
| 198 | """Payment verify view for the CollegePAY gateway |
---|
| 199 | """ |
---|
| 200 | grok.context(ICustomStudentOnlinePayment) |
---|
| 201 | product_id = PRODUCT_ID |
---|
| 202 | gateway_host = HOST |
---|
| 203 | gateway_url = URL |
---|
[15015] | 204 | mac = MAC |
---|
[13587] | 205 | |
---|
[11638] | 206 | class CustomInterswitchPaymentRequestWebservicePageApplicant( |
---|
[10765] | 207 | InterswitchPaymentRequestWebservicePageApplicant): |
---|
[13587] | 208 | """Request webservice view for the CollegePAY gateway |
---|
[10765] | 209 | """ |
---|
| 210 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 211 | product_id = PRODUCT_ID |
---|
| 212 | gateway_host = HOST |
---|
[12479] | 213 | gateway_url = URL |
---|
[15015] | 214 | mac = MAC |
---|
[13587] | 215 | |
---|
| 216 | class CustomInterswitchPaymentVerifyWebservicePageApplicant( |
---|
| 217 | InterswitchPaymentVerifyWebservicePageApplicant): |
---|
| 218 | """Payment verify view for the CollegePAY gateway |
---|
| 219 | """ |
---|
| 220 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 221 | product_id = PRODUCT_ID |
---|
| 222 | gateway_host = HOST |
---|
[15015] | 223 | gateway_url = URL |
---|
| 224 | mac = MAC |
---|