[12730] | 1 | ## $Id: browser.py 14523 2017-02-08 11:48:53Z henrik $ |
---|
[11846] | 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 |
---|
[12975] | 23 | from waeup.kofa.interfaces import CLEARED |
---|
[11846] | 24 | from kofacustom.nigeria.interswitch.browser import ( |
---|
| 25 | InterswitchPaymentRequestWebservicePageStudent, |
---|
| 26 | InterswitchPaymentRequestWebservicePageApplicant, |
---|
[13586] | 27 | InterswitchPaymentVerifyWebservicePageApplicant, |
---|
| 28 | InterswitchPaymentVerifyWebservicePageStudent, |
---|
[11846] | 29 | InterswitchPageStudent, InterswitchPageApplicant, |
---|
| 30 | ) |
---|
| 31 | from waeup.aaue.students.interfaces import ICustomStudentOnlinePayment |
---|
| 32 | from waeup.aaue.applicants.interfaces import ICustomApplicantOnlinePayment |
---|
| 33 | from waeup.aaue.interfaces import MessageFactory as _ |
---|
| 34 | |
---|
[13379] | 35 | PRODUCT_ID_PT = '5040' |
---|
| 36 | PRODUCT_ID_REGULAR = '5845' |
---|
[11846] | 37 | SITE_NAME = 'aaue.waeup.org' |
---|
[14232] | 38 | PROVIDER_ACCT = '1010764827' |
---|
| 39 | PROVIDER_BANK_ID = '117' |
---|
[11846] | 40 | PROVIDER_ITEM_NAME = 'BT Education' |
---|
| 41 | INSTITUTION_NAME = 'AAU Ekpoma' |
---|
| 42 | CURRENCY = '566' |
---|
[11934] | 43 | GATEWAY_AMT = 250.0 |
---|
[11933] | 44 | POST_ACTION = 'https://webpay.interswitchng.com/paydirect/pay' |
---|
[11846] | 45 | |
---|
[11933] | 46 | HOST = 'webpay.interswitchng.com' |
---|
[13586] | 47 | URL = '/paydirect/api/v1/gettransaction.json' |
---|
[11916] | 48 | HTTPS = True |
---|
[13606] | 49 | MAC_REGULAR = '9718FA00B0F5070B388A9896ADCED9B2FB02D30F71E12E68BDADC63F6852A3496FF97D8A0F9DA9F753B911A49BB09BB87B55FD02046BD325C74C46C0123CF023' |
---|
| 50 | MAC_PT = '74424F1DFECD6058F153148255CDD55E16724B4F380ADB2C63C5D1D7A5675759010C8153DCB930AAF2D38903CBF7CE32B8A6BA2C16BBC46721DF2E3F3E4548E3' |
---|
[11846] | 51 | |
---|
[11917] | 52 | httplib.HTTPSConnection.debuglevel = 0 |
---|
[11846] | 53 | |
---|
[13379] | 54 | |
---|
[13414] | 55 | def gateway_net_amt(fee): |
---|
[13438] | 56 | if fee > GATEWAY_AMT: |
---|
[13414] | 57 | return fee - GATEWAY_AMT |
---|
[13438] | 58 | return 0.0 |
---|
[13406] | 59 | |
---|
[13532] | 60 | def contr_agreement_applicant(applicant): |
---|
| 61 | if applicant.__parent__.code[:2] in ('fp', 'pt'): |
---|
| 62 | return 'first' |
---|
| 63 | return 'second' |
---|
| 64 | |
---|
| 65 | def contr_agreement_student(student): |
---|
[13379] | 66 | if student.current_mode == 'found' or student.current_mode.endswith('_pt'): |
---|
[13403] | 67 | return 'first' |
---|
| 68 | return 'second' |
---|
[13379] | 69 | |
---|
[11846] | 70 | class CustomInterswitchPageApplicant(InterswitchPageApplicant): |
---|
| 71 | """ View which sends a POST request to the Interswitch |
---|
| 72 | CollegePAY payment gateway. |
---|
[13379] | 73 | |
---|
| 74 | So far only PT application has been configured. |
---|
[11846] | 75 | """ |
---|
| 76 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 77 | action = POST_ACTION |
---|
| 78 | site_name = SITE_NAME |
---|
| 79 | currency = CURRENCY |
---|
| 80 | |
---|
| 81 | def update(self): |
---|
| 82 | |
---|
[12975] | 83 | error = self.init_update() |
---|
| 84 | if error: |
---|
| 85 | self.flash(error, type='danger') |
---|
| 86 | self.redirect(self.url(self.context, '@@index')) |
---|
| 87 | return |
---|
[13532] | 88 | if contr_agreement_applicant(self.context.__parent__) == 'first': |
---|
| 89 | self.product_id = PRODUCT_ID_PT |
---|
| 90 | self.pay_item_id = '101' |
---|
[13606] | 91 | self.mac = MAC_PT |
---|
[13532] | 92 | else: |
---|
| 93 | self.product_id = PRODUCT_ID_REGULAR |
---|
| 94 | self.pay_item_id = '109' |
---|
[13606] | 95 | self.mac = MAC_REGULAR |
---|
[11846] | 96 | xmldict = {} |
---|
[14078] | 97 | provider_amt = 2000.0 |
---|
[11846] | 98 | xmldict['institution_acct'] = '1010835352' |
---|
| 99 | xmldict['institution_bank_id'] = '117' |
---|
| 100 | xmldict['detail_ref'] = self.context.p_id |
---|
| 101 | xmldict['provider_amt'] = 100 * provider_amt |
---|
| 102 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 103 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 104 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
[13532] | 105 | xmldict['institution_item_name'] = self.category |
---|
[11846] | 106 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
[14121] | 107 | |
---|
[14341] | 108 | if self.applicant.applicant_id.startswith('ijmbe'): |
---|
| 109 | xmldict['institution_acct'] = '0772012897' |
---|
| 110 | xmldict['institution_bank_id'] = '47' |
---|
| 111 | |
---|
[14364] | 112 | if self.applicant.applicant_id.startswith('trans'): |
---|
| 113 | xmldict['institution_acct'] = '2031473949' |
---|
| 114 | xmldict['institution_bank_id'] = '8' |
---|
| 115 | |
---|
| 116 | if self.applicant.applicant_id.startswith('cert'): |
---|
| 117 | xmldict['institution_acct'] = '2031473949' |
---|
| 118 | xmldict['institution_bank_id'] = '8' |
---|
| 119 | |
---|
[14121] | 120 | if self.applicant.applicant_id.startswith('pg'): |
---|
| 121 | handbook_amount = 2000.0 |
---|
| 122 | xmldict['handbook_amount'] = 100 * handbook_amount |
---|
| 123 | xmldict['institution_amt'] = 100 * ( |
---|
| 124 | self.context.amount_auth - provider_amt - handbook_amount -GATEWAY_AMT) |
---|
| 125 | xmltext = """<payment_item_detail> |
---|
[11846] | 126 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
| 127 | <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" /> |
---|
| 128 | <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" /> |
---|
[14121] | 129 | <item_detail item_id="3" item_name="PG Handbook" item_amt="%(handbook_amount)d" bank_id="117" acct_num="1014270207" /> |
---|
[11846] | 130 | </item_details> |
---|
| 131 | </payment_item_detail>""" % xmldict |
---|
[14121] | 132 | |
---|
[14122] | 133 | elif self.applicant.applicant_id.startswith('utme'): |
---|
| 134 | provider_amt = 1000.0 |
---|
| 135 | screening_guide_amount = 2000.0 |
---|
| 136 | xmldict['provider_amt'] = 100 * provider_amt |
---|
| 137 | xmldict['screening_guide_amount'] = 100 * screening_guide_amount |
---|
| 138 | xmldict['institution_amt'] = 100 * ( |
---|
| 139 | self.context.amount_auth - provider_amt - screening_guide_amount -GATEWAY_AMT) |
---|
| 140 | xmltext = """<payment_item_detail> |
---|
| 141 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
| 142 | <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" /> |
---|
| 143 | <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" /> |
---|
| 144 | <item_detail item_id="3" item_name="Screening Guide" item_amt="%(screening_guide_amount)d" bank_id="117" acct_num="1013879579" /> |
---|
| 145 | </item_details> |
---|
| 146 | </payment_item_detail>""" % xmldict |
---|
| 147 | |
---|
[14121] | 148 | else: |
---|
| 149 | xmldict['institution_amt'] = 100 * ( |
---|
| 150 | self.context.amount_auth - provider_amt - GATEWAY_AMT) |
---|
| 151 | xmltext = """<payment_item_detail> |
---|
| 152 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
| 153 | <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" /> |
---|
| 154 | <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" /> |
---|
| 155 | </item_details> |
---|
| 156 | </payment_item_detail>""" % xmldict |
---|
| 157 | |
---|
[11846] | 158 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
| 159 | self.context.provider_amt = provider_amt |
---|
| 160 | self.context.gateway_amt = GATEWAY_AMT |
---|
| 161 | |
---|
| 162 | hashargs = ( |
---|
| 163 | self.context.p_id + |
---|
[13532] | 164 | self.product_id + |
---|
[11846] | 165 | self.pay_item_id + |
---|
| 166 | str(int(self.amount_auth)) + |
---|
| 167 | self.site_redirect_url + |
---|
| 168 | self.mac) |
---|
| 169 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
| 170 | |
---|
| 171 | return |
---|
| 172 | |
---|
[11868] | 173 | class CustomInterswitchPageStudent(InterswitchPageStudent): |
---|
| 174 | """ View which sends a POST request to the Interswitch |
---|
| 175 | CollegePAY payment gateway. |
---|
| 176 | """ |
---|
| 177 | grok.context(ICustomStudentOnlinePayment) |
---|
| 178 | action = POST_ACTION |
---|
| 179 | site_name = SITE_NAME |
---|
| 180 | currency = CURRENCY |
---|
[14248] | 181 | pay_item_id = '000' |
---|
[11846] | 182 | |
---|
[11868] | 183 | def update(self): |
---|
[12975] | 184 | error = self.init_update() |
---|
[13376] | 185 | |
---|
| 186 | ###################################### |
---|
[13381] | 187 | #error = 'Sorry, Interswitch payments are temporarily disabled.' |
---|
[13376] | 188 | ###################################### |
---|
| 189 | |
---|
[12975] | 190 | if error: |
---|
| 191 | self.flash(error, type='danger') |
---|
| 192 | self.redirect(self.url(self.context, '@@index')) |
---|
| 193 | return |
---|
[13400] | 194 | |
---|
[11868] | 195 | student = self.student |
---|
[13408] | 196 | p_session = self.context.p_session |
---|
[13400] | 197 | try: |
---|
[13408] | 198 | academic_session = grok.getSite()['configuration'][str(p_session)] |
---|
[13400] | 199 | except KeyError: |
---|
[13407] | 200 | self.flash(_(u'Session configuration object is not available.'), |
---|
| 201 | type='danger') |
---|
[13400] | 202 | self.redirect(self.url(self.context, '@@index')) |
---|
| 203 | return |
---|
[13532] | 204 | if contr_agreement_student(student) == 'first': |
---|
[13382] | 205 | self.product_id = PRODUCT_ID_PT |
---|
[13606] | 206 | self.mac = MAC_PT |
---|
[13382] | 207 | else: |
---|
| 208 | self.product_id = PRODUCT_ID_REGULAR |
---|
[13606] | 209 | self.mac = MAC_REGULAR |
---|
[13382] | 210 | |
---|
[12975] | 211 | # To guarantee that cleared students pay both acceptance fee |
---|
| 212 | # and school fees, the page can only be accessed |
---|
| 213 | # for school fee payments if acceptance/clearance fee has |
---|
| 214 | # been successfully queried/paid beforehand. This |
---|
| 215 | # requirement applies to students in state 'cleared' and |
---|
[14380] | 216 | # entry_session greater than 2012 only. |
---|
[13400] | 217 | if self.context.p_category.startswith('schoolfee') and \ |
---|
[12975] | 218 | student.state == CLEARED and \ |
---|
| 219 | student.entry_session > 2012: |
---|
| 220 | acceptance_fee_paid = False |
---|
| 221 | for ticket in student['payments'].values(): |
---|
| 222 | if ticket.p_state == 'paid' and \ |
---|
[13400] | 223 | ticket.p_category.startswith('clearance'): |
---|
[12975] | 224 | acceptance_fee_paid = True |
---|
| 225 | break |
---|
| 226 | if not acceptance_fee_paid: |
---|
| 227 | self.flash( |
---|
| 228 | _('Please pay acceptance fee first.'), type="danger") |
---|
| 229 | self.redirect(self.url(self.context, '@@index')) |
---|
| 230 | return |
---|
| 231 | |
---|
[11868] | 232 | xmldict = self.xmldict |
---|
[12729] | 233 | xmltext = "" |
---|
[11868] | 234 | # Provider data |
---|
| 235 | xmldict['detail_ref'] = self.context.p_id |
---|
| 236 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 237 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 238 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
| 239 | xmldict['institution_item_name'] = self.category |
---|
| 240 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
[13381] | 241 | provider_amt = 0.0 |
---|
[12729] | 242 | |
---|
[13400] | 243 | # Schoolfee |
---|
| 244 | if self.context.p_category.startswith('schoolfee'): |
---|
[13532] | 245 | if contr_agreement_student(student) == 'first': |
---|
[13403] | 246 | # First agreement |
---|
[13400] | 247 | provider_amt = 1900.0 |
---|
| 248 | joint_venture_amt = 1100.0 |
---|
| 249 | aaue_share_amt = 1000.0 |
---|
[13414] | 250 | student_union_due_amt = gateway_net_amt( |
---|
| 251 | academic_session.union_fee) |
---|
| 252 | student_welfare_assurance_amt = gateway_net_amt( |
---|
| 253 | academic_session.welfare_fee) |
---|
[13379] | 254 | xmldict['institution_bank_id'] = '7' |
---|
| 255 | xmldict['institution_acct'] = '1014847058' |
---|
[14086] | 256 | xmldict['student_union_bank_id'] = '31' |
---|
| 257 | xmldict['student_union_acct'] = '0051005007' |
---|
[14235] | 258 | xmldict['aaue_share_bank_id'] = '51' |
---|
| 259 | xmldict['aaue_share_acct'] = '5060020947' |
---|
| 260 | xmldict['joint_venture_bank_id'] = '51' |
---|
| 261 | xmldict['joint_venture_acct'] = '5060023759' |
---|
[13379] | 262 | if student.current_mode == 'found': |
---|
| 263 | self.pay_item_id = '103' |
---|
| 264 | else: |
---|
| 265 | self.pay_item_id = '105' |
---|
[13400] | 266 | else: |
---|
[13403] | 267 | # Second agreement |
---|
[13400] | 268 | provider_amt = 1500.0 |
---|
| 269 | joint_venture_amt = 1000.0 |
---|
| 270 | aaue_share_amt = 1500.0 |
---|
[13414] | 271 | student_union_due_amt = gateway_net_amt( |
---|
| 272 | academic_session.union_fee) |
---|
| 273 | student_welfare_assurance_amt = gateway_net_amt( |
---|
| 274 | academic_session.welfare_fee) |
---|
[13400] | 275 | xmldict['institution_bank_id'] = '117' |
---|
| 276 | xmldict['institution_acct'] = '1010827641' |
---|
[14268] | 277 | xmldict['student_union_bank_id'] = '7' |
---|
| 278 | xmldict['student_union_acct'] = '1019763348' |
---|
[14235] | 279 | xmldict['aaue_share_bank_id'] = '11' |
---|
| 280 | xmldict['aaue_share_acct'] = '0030656377' |
---|
| 281 | xmldict['joint_venture_bank_id'] = '117' |
---|
| 282 | xmldict['joint_venture_acct'] = '1014573025' |
---|
[13644] | 283 | self.pay_item_id = '107' |
---|
[13527] | 284 | if student.is_postgrad: |
---|
| 285 | xmldict['institution_bank_id'] = '51' |
---|
| 286 | xmldict['institution_acct'] = '5210006575' |
---|
| 287 | self.pay_item_id = '111' |
---|
[14469] | 288 | if student.current_mode == 'ijmbe': |
---|
| 289 | xmldict['institution_bank_id'] = '47' |
---|
| 290 | xmldict['institution_acct'] = '0772012897' |
---|
[14523] | 291 | self.pay_item_id = '119' |
---|
[14469] | 292 | xmldict['joint_venture_bank_id'] = '117' |
---|
| 293 | xmldict['joint_venture_acct'] = '1014066969' |
---|
[13400] | 294 | |
---|
| 295 | xmldict['provider_amt'] = 100 * provider_amt |
---|
| 296 | xmldict['joint_venture_amt'] = 100 * joint_venture_amt |
---|
| 297 | xmldict['aaue_share_amt'] = 100 * aaue_share_amt |
---|
[13732] | 298 | if self.context.p_item == 'Balance': |
---|
| 299 | xmldict['institution_amt'] = 100 * ( |
---|
| 300 | gateway_net_amt(self.context.amount_auth)) |
---|
| 301 | xmltext = """<payment_item_detail> |
---|
| 302 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 303 | <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" /> |
---|
| 304 | </item_details> |
---|
| 305 | </payment_item_detail>""" % xmldict |
---|
| 306 | elif self.context.p_category in ('schoolfee_incl', 'schoolfee_1'): |
---|
[13400] | 307 | # Schoolfee including additional fees |
---|
[13379] | 308 | xmldict['student_union_due_amt'] = 100 * student_union_due_amt |
---|
| 309 | xmldict['student_welfare_assurance_amt'] = 100 * student_welfare_assurance_amt |
---|
| 310 | xmldict['institution_amt'] = 100 * ( |
---|
[13414] | 311 | gateway_net_amt(self.context.amount_auth) |
---|
[13379] | 312 | - provider_amt |
---|
| 313 | - joint_venture_amt |
---|
| 314 | - aaue_share_amt |
---|
[13409] | 315 | - student_union_due_amt |
---|
[13414] | 316 | - student_welfare_assurance_amt) |
---|
[13379] | 317 | xmltext = """<payment_item_detail> |
---|
[11868] | 318 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 319 | <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" /> |
---|
[12729] | 320 | <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" /> |
---|
[14235] | 321 | <item_detail item_id="3" item_name="Joint Venture" item_amt="%(joint_venture_amt)d" bank_id="%(joint_venture_bank_id)s" acct_num="%(joint_venture_acct)s" /> |
---|
| 322 | <item_detail item_id="4" item_name="AAUE Share" item_amt="%(aaue_share_amt)d" bank_id="%(aaue_share_bank_id)s" acct_num="%(aaue_share_acct)s" /> |
---|
[14086] | 323 | <item_detail item_id="5" item_name="Student Union" item_amt="%(student_union_due_amt)d" bank_id="%(student_union_bank_id)s" acct_num="%(student_union_acct)s" /> |
---|
[13782] | 324 | <item_detail item_id="6" item_name="Student Welfare Assurance" item_amt="%(student_welfare_assurance_amt)d" bank_id="123" acct_num="1006407792" /> |
---|
[11868] | 325 | </item_details> |
---|
| 326 | </payment_item_detail>""" % xmldict |
---|
[13400] | 327 | else: |
---|
| 328 | # Schoolfee without additional fees |
---|
| 329 | xmldict['institution_amt'] = 100 * ( |
---|
[13414] | 330 | gateway_net_amt(self.context.amount_auth) |
---|
[13400] | 331 | - provider_amt |
---|
| 332 | - joint_venture_amt |
---|
[13414] | 333 | - aaue_share_amt) |
---|
[13400] | 334 | xmltext = """<payment_item_detail> |
---|
| 335 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 336 | <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" /> |
---|
| 337 | <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" /> |
---|
[14235] | 338 | <item_detail item_id="3" item_name="Joint Venture" item_amt="%(joint_venture_amt)d" bank_id="%(joint_venture_bank_id)s" acct_num="%(joint_venture_acct)s" /> |
---|
| 339 | <item_detail item_id="4" item_name="AAUE Share" item_amt="%(aaue_share_amt)d" bank_id="%(aaue_share_bank_id)s" acct_num="%(aaue_share_acct)s" /> |
---|
[13400] | 340 | </item_details> |
---|
| 341 | </payment_item_detail>""" % xmldict |
---|
| 342 | |
---|
| 343 | |
---|
| 344 | # Clearance |
---|
| 345 | elif self.context.p_category.startswith('clearance'): |
---|
[13532] | 346 | if contr_agreement_student(student) == 'first': |
---|
[13403] | 347 | # First agreement |
---|
[13379] | 348 | if student.current_mode == 'found': |
---|
| 349 | self.pay_item_id = '102' |
---|
| 350 | else: |
---|
| 351 | self.pay_item_id = '104' |
---|
| 352 | xmldict['institution_acct'] = '1014066976' |
---|
| 353 | xmldict['institution_bank_id'] = '117' |
---|
[13400] | 354 | else: |
---|
[13403] | 355 | # Second agreement |
---|
[13400] | 356 | self.pay_item_id = '102' |
---|
| 357 | xmldict['institution_acct'] = '1010827641' |
---|
| 358 | xmldict['institution_bank_id'] = '117' |
---|
[13527] | 359 | if student.is_postgrad: |
---|
| 360 | xmldict['institution_bank_id'] = '51' |
---|
| 361 | xmldict['institution_acct'] = '5210006575' |
---|
| 362 | self.pay_item_id = '110' |
---|
[14469] | 363 | if student.current_mode == 'ijmbe': |
---|
| 364 | xmldict['institution_bank_id'] = '47' |
---|
| 365 | xmldict['institution_acct'] = '0772012897' |
---|
[14523] | 366 | self.pay_item_id = '120' |
---|
[13400] | 367 | |
---|
[13410] | 368 | if self.context.p_category.endswith('_incl'): |
---|
[13400] | 369 | # Clearance including additional fees |
---|
[13414] | 370 | gown_fee_amt = gateway_net_amt(academic_session.matric_gown_fee) |
---|
| 371 | aaue_lf_fee_amt = gateway_net_amt(academic_session.lapel_fee) |
---|
[13379] | 372 | xmldict['gown_fee_amt'] = 100 * gown_fee_amt |
---|
[13414] | 373 | xmldict['aaue_lf_fee_amt'] = 100 * aaue_lf_fee_amt |
---|
[13379] | 374 | xmldict['institution_amt'] = 100 * ( |
---|
[13414] | 375 | gateway_net_amt(self.context.amount_auth) |
---|
[13409] | 376 | - gown_fee_amt |
---|
[13414] | 377 | - aaue_lf_fee_amt) |
---|
[13379] | 378 | xmltext = """<payment_item_detail> |
---|
[11868] | 379 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 380 | <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" /> |
---|
[12729] | 381 | <item_detail item_id="2" item_name="Matriculation Gown Fee" item_amt="%(gown_fee_amt)d" bank_id="51" acct_num="5060020947" /> |
---|
[13414] | 382 | <item_detail item_id="3" item_name="AAU File-Lapel Fee" item_amt="%(aaue_lf_fee_amt)d" bank_id="51" acct_num="4010660109" /> |
---|
[11868] | 383 | </item_details> |
---|
| 384 | </payment_item_detail>""" % xmldict |
---|
[13400] | 385 | |
---|
[13381] | 386 | else: |
---|
[13400] | 387 | # Clearance without additional fees |
---|
[13381] | 388 | xmldict['institution_amt'] = 100 * ( |
---|
[13414] | 389 | gateway_net_amt(self.context.amount_auth)) |
---|
[13381] | 390 | xmltext = """<payment_item_detail> |
---|
| 391 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 392 | <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" /> |
---|
| 393 | </item_details> |
---|
| 394 | </payment_item_detail>""" % xmldict |
---|
[13379] | 395 | |
---|
[13403] | 396 | # Union Dues |
---|
[13400] | 397 | elif self.context.p_category == 'union': |
---|
| 398 | self.pay_item_id = '103' |
---|
[14086] | 399 | if contr_agreement_student(student) == 'first': |
---|
| 400 | # First agreement |
---|
[14088] | 401 | xmldict['institution_acct'] = '0051005007' |
---|
| 402 | xmldict['institution_bank_id'] = '31' |
---|
| 403 | else: |
---|
| 404 | # Second agreement |
---|
[14268] | 405 | xmldict['institution_bank_id'] = '7' |
---|
| 406 | xmldict['institution_acct'] = '1019763348' |
---|
[13400] | 407 | xmldict['institution_amt'] = 100 * ( |
---|
[13414] | 408 | gateway_net_amt(self.context.amount_auth)) |
---|
[13400] | 409 | xmltext = """<payment_item_detail> |
---|
[13381] | 410 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 411 | <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" /> |
---|
| 412 | </item_details> |
---|
| 413 | </payment_item_detail>""" % xmldict |
---|
[13379] | 414 | |
---|
[13403] | 415 | # Lapel/File |
---|
[13400] | 416 | elif self.context.p_category == 'lapel': |
---|
| 417 | self.pay_item_id = '104' |
---|
| 418 | xmldict['institution_acct'] = '4010660109' |
---|
| 419 | xmldict['institution_bank_id'] = '51' |
---|
| 420 | xmldict['institution_amt'] = 100 * ( |
---|
[13414] | 421 | gateway_net_amt(self.context.amount_auth)) |
---|
[13400] | 422 | xmltext = """<payment_item_detail> |
---|
[13381] | 423 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 424 | <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" /> |
---|
| 425 | </item_details> |
---|
| 426 | </payment_item_detail>""" % xmldict |
---|
| 427 | |
---|
[13403] | 428 | # Welfare Assurance |
---|
[13400] | 429 | elif self.context.p_category == 'welfare': |
---|
| 430 | self.pay_item_id = '105' |
---|
| 431 | xmldict['institution_acct'] = '1006407792' |
---|
| 432 | xmldict['institution_bank_id'] = '123' |
---|
| 433 | xmldict['institution_amt'] = 100 * ( |
---|
[13414] | 434 | gateway_net_amt(self.context.amount_auth)) |
---|
[13400] | 435 | xmltext = """<payment_item_detail> |
---|
[13381] | 436 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 437 | <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" /> |
---|
| 438 | </item_details> |
---|
| 439 | </payment_item_detail>""" % xmldict |
---|
| 440 | |
---|
[14234] | 441 | # ID Card |
---|
| 442 | elif self.context.p_category == 'id_card': |
---|
| 443 | self.pay_item_id = '000' |
---|
| 444 | xmldict['institution_acct'] = '1010827641' |
---|
| 445 | xmldict['institution_bank_id'] = '117' |
---|
| 446 | xmldict['institution_amt'] = 100 * ( |
---|
| 447 | gateway_net_amt(self.context.amount_auth)) |
---|
| 448 | xmltext = """<payment_item_detail> |
---|
| 449 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 450 | <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" /> |
---|
| 451 | </item_details> |
---|
| 452 | </payment_item_detail>""" % xmldict |
---|
| 453 | |
---|
[13400] | 454 | # Matric Gown |
---|
| 455 | elif self.context.p_category == 'matric_gown': |
---|
| 456 | self.pay_item_id = '106' |
---|
| 457 | xmldict['institution_acct'] = '5060023429' |
---|
| 458 | xmldict['institution_bank_id'] = '51' |
---|
| 459 | xmldict['institution_amt'] = 100 * ( |
---|
[13414] | 460 | gateway_net_amt(self.context.amount_auth)) |
---|
[13400] | 461 | xmltext = """<payment_item_detail> |
---|
[13381] | 462 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 463 | <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" /> |
---|
| 464 | </item_details> |
---|
| 465 | </payment_item_detail>""" % xmldict |
---|
| 466 | |
---|
[13400] | 467 | # Concessional |
---|
| 468 | elif self.context.p_category == 'concessional': |
---|
| 469 | self.pay_item_id = '107' |
---|
| 470 | xmldict['institution_acct'] = '1010835352' |
---|
| 471 | xmldict['institution_bank_id'] = '117' |
---|
| 472 | xmldict['institution_amt'] = 100 * ( |
---|
[13414] | 473 | gateway_net_amt(self.context.amount_auth)) |
---|
[13400] | 474 | xmltext = """<payment_item_detail> |
---|
[13381] | 475 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 476 | <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" /> |
---|
| 477 | </item_details> |
---|
| 478 | </payment_item_detail>""" % xmldict |
---|
| 479 | |
---|
[13400] | 480 | # Hostel Maintenance |
---|
| 481 | elif self.context.p_category == 'hostel_maintenance': |
---|
[14223] | 482 | provider_amt = 500.0 |
---|
[13400] | 483 | self.pay_item_id = '109' |
---|
[14223] | 484 | xmldict['provider_amt'] = 100 * provider_amt |
---|
[13400] | 485 | xmldict['institution_acct'] = '1006406795' |
---|
| 486 | xmldict['institution_bank_id'] = '123' |
---|
| 487 | xmldict['institution_amt'] = 100 * ( |
---|
[14223] | 488 | gateway_net_amt(self.context.amount_auth) - provider_amt) |
---|
[13400] | 489 | xmltext = """<payment_item_detail> |
---|
[13383] | 490 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 491 | <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" /> |
---|
[14223] | 492 | <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" /> |
---|
[13383] | 493 | </item_details> |
---|
| 494 | </payment_item_detail>""" % xmldict |
---|
| 495 | |
---|
[14258] | 496 | # GST Fees |
---|
| 497 | elif self.context.p_category.startswith('gst_'): |
---|
| 498 | self.pay_item_id = '116' |
---|
| 499 | xmldict['institution_acct'] = '1010893123' |
---|
| 500 | xmldict['institution_bank_id'] = '117' |
---|
| 501 | xmldict['institution_amt'] = 100 * ( |
---|
| 502 | gateway_net_amt(self.context.amount_auth)) |
---|
| 503 | xmltext = """<payment_item_detail> |
---|
| 504 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 505 | <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" /> |
---|
| 506 | </item_details> |
---|
| 507 | </payment_item_detail>""" % xmldict |
---|
| 508 | |
---|
| 509 | # ENT Fees |
---|
| 510 | elif self.context.p_category.startswith('ent_'): |
---|
| 511 | self.pay_item_id = '118' |
---|
| 512 | xmldict['institution_acct'] = '6220029828' |
---|
| 513 | xmldict['institution_bank_id'] = '51' |
---|
| 514 | xmldict['institution_amt'] = 100 * ( |
---|
| 515 | gateway_net_amt(self.context.amount_auth)) |
---|
| 516 | xmltext = """<payment_item_detail> |
---|
| 517 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 518 | <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" /> |
---|
| 519 | </item_details> |
---|
| 520 | </payment_item_detail>""" % xmldict |
---|
| 521 | |
---|
| 522 | # Faculty and Departmental Dues |
---|
| 523 | elif self.context.p_category == 'fac_dep': |
---|
| 524 | self.pay_item_id = '117' |
---|
| 525 | xmldict['institution_acct'] = '1010827641' |
---|
| 526 | xmldict['institution_bank_id'] = '117' |
---|
| 527 | xmldict['institution_amt'] = 100 * ( |
---|
| 528 | gateway_net_amt(self.context.amount_auth)) |
---|
| 529 | xmltext = """<payment_item_detail> |
---|
| 530 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 531 | <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" /> |
---|
| 532 | </item_details> |
---|
| 533 | </payment_item_detail>""" % xmldict |
---|
| 534 | |
---|
[14376] | 535 | # Restitution Fee |
---|
| 536 | elif self.context.p_category == 'restitution': |
---|
| 537 | self.pay_item_id = '117' |
---|
| 538 | xmldict['institution_acct'] = '0772002144' |
---|
| 539 | xmldict['institution_bank_id'] = '47' |
---|
| 540 | xmldict['institution_amt'] = 100 * ( |
---|
| 541 | gateway_net_amt(self.context.amount_auth)) |
---|
| 542 | xmltext = """<payment_item_detail> |
---|
| 543 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 544 | <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" /> |
---|
| 545 | </item_details> |
---|
| 546 | </payment_item_detail>""" % xmldict |
---|
| 547 | |
---|
[11868] | 548 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
| 549 | self.context.provider_amt = provider_amt |
---|
[13437] | 550 | self.context.gateway_amt = self.amount_auth - gateway_net_amt( |
---|
| 551 | self.amount_auth) |
---|
[11868] | 552 | hashargs = ( |
---|
| 553 | self.context.p_id + |
---|
[13382] | 554 | self.product_id + |
---|
[11868] | 555 | self.pay_item_id + |
---|
| 556 | str(int(self.amount_auth)) + |
---|
| 557 | self.site_redirect_url + |
---|
| 558 | self.mac) |
---|
| 559 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
| 560 | return |
---|
| 561 | |
---|
| 562 | |
---|
[11846] | 563 | class CustomInterswitchPaymentRequestWebservicePageApplicant( |
---|
| 564 | InterswitchPaymentRequestWebservicePageApplicant): |
---|
[13586] | 565 | """Request webservice view for the CollegePAY gateway |
---|
| 566 | """ |
---|
| 567 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 568 | gateway_host = HOST |
---|
| 569 | gateway_url = URL |
---|
| 570 | https = HTTPS |
---|
[13379] | 571 | |
---|
[13586] | 572 | @property |
---|
[13606] | 573 | def mac(self): |
---|
| 574 | if contr_agreement_applicant(self.context.__parent__) == 'first': |
---|
| 575 | return MAC_PT |
---|
| 576 | return MAC_REGULAR |
---|
| 577 | |
---|
| 578 | @property |
---|
[13586] | 579 | def product_id(self): |
---|
| 580 | if contr_agreement_applicant(self.context.__parent__) == 'first': |
---|
| 581 | return PRODUCT_ID_PT |
---|
| 582 | return PRODUCT_ID_REGULAR |
---|
| 583 | |
---|
| 584 | class CustomInterswitchPaymentVerifyWebservicePageApplicant( |
---|
| 585 | InterswitchPaymentVerifyWebservicePageApplicant): |
---|
| 586 | """Payment verify view for the CollegePAY gateway |
---|
[11846] | 587 | """ |
---|
| 588 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 589 | gateway_host = HOST |
---|
[13586] | 590 | gateway_url = URL |
---|
[11916] | 591 | https = HTTPS |
---|
[11868] | 592 | |
---|
[13532] | 593 | @property |
---|
[13606] | 594 | def mac(self): |
---|
| 595 | if contr_agreement_applicant(self.context.__parent__) == 'first': |
---|
| 596 | return MAC_PT |
---|
| 597 | return MAC_REGULAR |
---|
| 598 | |
---|
| 599 | @property |
---|
[13532] | 600 | def product_id(self): |
---|
| 601 | if contr_agreement_applicant(self.context.__parent__) == 'first': |
---|
| 602 | return PRODUCT_ID_PT |
---|
| 603 | return PRODUCT_ID_REGULAR |
---|
| 604 | |
---|
[11868] | 605 | class CustomInterswitchPaymentRequestWebservicePageStudent( |
---|
| 606 | InterswitchPaymentRequestWebservicePageStudent): |
---|
[13586] | 607 | """Request webservice view for the CollegePAY gateway |
---|
[11868] | 608 | """ |
---|
| 609 | grok.context(ICustomStudentOnlinePayment) |
---|
| 610 | gateway_host = HOST |
---|
[13586] | 611 | gateway_url = URL |
---|
[11916] | 612 | https = HTTPS |
---|
[13379] | 613 | |
---|
| 614 | @property |
---|
[13606] | 615 | def mac(self): |
---|
| 616 | if contr_agreement_student(self.context.student) == 'first': |
---|
| 617 | return MAC_PT |
---|
| 618 | return MAC_REGULAR |
---|
| 619 | |
---|
| 620 | @property |
---|
[13379] | 621 | def product_id(self): |
---|
[13532] | 622 | if contr_agreement_student(self.context.student) == 'first': |
---|
[13379] | 623 | return PRODUCT_ID_PT |
---|
| 624 | return PRODUCT_ID_REGULAR |
---|
[13586] | 625 | |
---|
| 626 | class CustomInterswitchPaymentVerifyWebservicePageStudent( |
---|
| 627 | InterswitchPaymentVerifyWebservicePageStudent): |
---|
| 628 | """Payment verify view for the CollegePAY gateway |
---|
| 629 | """ |
---|
| 630 | grok.context(ICustomStudentOnlinePayment) |
---|
| 631 | gateway_host = HOST |
---|
| 632 | gateway_url = URL |
---|
| 633 | https = HTTPS |
---|
| 634 | |
---|
| 635 | @property |
---|
[13606] | 636 | def mac(self): |
---|
| 637 | if contr_agreement_student(self.context.student) == 'first': |
---|
| 638 | return MAC_PT |
---|
| 639 | return MAC_REGULAR |
---|
| 640 | |
---|
| 641 | @property |
---|
[13586] | 642 | def product_id(self): |
---|
| 643 | if contr_agreement_student(self.context.student) == 'first': |
---|
| 644 | return PRODUCT_ID_PT |
---|
| 645 | return PRODUCT_ID_REGULAR |
---|