[10765] | 1 | ## $Id: browser.py 15255 2018-11-29 12:26:38Z 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 | ) |
---|
[14716] | 28 | from kofacustom.dspg.students.interfaces import ICustomStudentOnlinePayment |
---|
| 29 | from kofacustom.dspg.applicants.interfaces import ICustomApplicantOnlinePayment |
---|
| 30 | from kofacustom.dspg.interfaces import MessageFactory as _ |
---|
[10765] | 31 | |
---|
[14726] | 32 | PRODUCT_ID = '7269' # must be provided by Interswitch |
---|
[14749] | 33 | SITE_NAME = 'dspg.waeup.org' |
---|
[14879] | 34 | PROVIDER_ACCT = '2028964403' |
---|
| 35 | PROVIDER_BANK_ID = '8' |
---|
[15248] | 36 | PROVIDER_ITEM_NAME = 'WAEAC' |
---|
[14722] | 37 | INSTITUTION_NAME = 'Delta State Polytechnic Ogwashi-Uku' |
---|
[10765] | 38 | CURRENCY = '566' |
---|
[14727] | 39 | GATEWAY_AMT = 250.0 |
---|
[15021] | 40 | MAC = 'D43ED93B7A307B152C7111D04E1F384428057CD1E75428D3A4C5631C28ACB9C8C822A88CA76DEDC5F9A520CF4BFDB2824FF8B207AAFC667DF3CBB13685B66627' |
---|
[10765] | 41 | |
---|
[14726] | 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 | |
---|
[14859] | 52 | SPECIAL_PAYMENT_PARAMS = { |
---|
[14864] | 53 | |
---|
| 54 | 'carryover1': ('101', 500.0, '1012808851', '117'), |
---|
[15195] | 55 | 'carryover4': ('101', 500.0, '1012808851', '117'), |
---|
[14864] | 56 | 'carryover5': ('101', 500.0, '1012808851', '117'), |
---|
| 57 | 'carryover6': ('101', 500.0, '1012808851', '117'), |
---|
| 58 | 'carryover7': ('101', 500.0, '1012808851', '117'), |
---|
| 59 | 'carryover8': ('101', 500.0, '1012808851', '117'), |
---|
| 60 | 'carryover9': ('101', 500.0, '1012808851', '117'), |
---|
| 61 | 'carryover10': ('101', 500.0, '1012808851', '117'), |
---|
[14868] | 62 | 'carryover11': ('101', 500.0, '1012808851', '117'), |
---|
| 63 | 'carryover12': ('101', 500.0, '1012808851', '117'), |
---|
[14869] | 64 | 'balance': ('101', 500.0, '1012808851', '117'), |
---|
[14864] | 65 | |
---|
[14859] | 66 | 'certificate': ('111', 500.0, '1012808851', '117'), |
---|
| 67 | 'state_result': ('112', 500.0, '1012808851', '117'), |
---|
| 68 | 'transcript_local': ('113', 500.0, '1012808851', '117'), |
---|
| 69 | 'transcript_foreign': ('114', 500.0, '1012808851', '117'), |
---|
| 70 | 'ver_result': ('115', 500.0, '1012808851', '117'), |
---|
| 71 | 'change_course': ('116', 500.0, '1012808851', '117'), |
---|
| 72 | 'change_inst': ('117', 500.0, '1012808851', '117'), |
---|
| 73 | 'jamb_reject': ('118', 500.0, '1012808851', '117'), |
---|
| 74 | 'cert_of_cert': ('119', 500.0, '1012808851', '117'), |
---|
| 75 | 'ref_let': ('120', 500.0, '1012808851', '117'), |
---|
| 76 | 'proc_cert': ('121', 500.0, '1012808851', '117'), |
---|
| 77 | 'loss_idcard': ('122', 9.0, '1012808851', '117'), |
---|
| 78 | 'loss_examcard': ('123', 4.5, '1012808851', '117'), |
---|
| 79 | 'loss_result': ('124', 500.0, '1012808851', '117'), |
---|
| 80 | 'loss_receipt': ('125', 500.0, '1012808851', '117'), |
---|
| 81 | 'loss_clearance': ('126', 500.0, '1012808851', '117'), |
---|
| 82 | 'conv_brochure': ('127', 500.0, '1012808851', '117'), |
---|
| 83 | 'hnd_certificate': ('128', 500.0, '1012808851', '117'), |
---|
| 84 | 'hnd_state_result': ('129', 500.0, '1012808851', '117'), |
---|
| 85 | 'hnd_transcript_local': ('130', 500.0, '1012808851', '117'), |
---|
| 86 | 'hnd_transcript_foreign': ('131', 500.0, '1012808851', '117'), |
---|
| 87 | 'staff_loss_idcard': ('132', 9.0, '1012808851', '117'), |
---|
| 88 | 'hnd_conv_brochure': ('133', 500.0, '1012808851', '117'), |
---|
| 89 | 'pgd_state_result': ('134', 500.0, '1012808851', '117'), |
---|
| 90 | 'pgd_conv_brochure': ('135', 500.0, '1012808851', '117'), |
---|
| 91 | 'pgd_certificate': ('136', 500.0, '1012808851', '117'), |
---|
| 92 | 'log_book': ('137', 4.5, '1012808851', '117'), |
---|
| 93 | 'pgd_transcript_foreign': ('138', 500.0, '1012808851', '117'), |
---|
| 94 | 'pgd_transcript_local': ('139', 500.0, '1012808851', '117'), |
---|
| 95 | 'jamb_regularization': ('140', 500.0, '1012808851', '117'), |
---|
| 96 | 'utme_registration': ('142', 9.0, '1012808851', '117'), |
---|
| 97 | 'utme_cbt': ('143', 9.0, '1012808851', '117'), |
---|
| 98 | 'nysc_id_card': ('144', 9.0, '1012808851', '117'), |
---|
| 99 | 'ijmb_result': ('147', 500.0, '1012808851', '117'), |
---|
| 100 | } |
---|
| 101 | |
---|
[14862] | 102 | |
---|
[14875] | 103 | # Not yet readily configured. Bank account numbers are |
---|
[14862] | 104 | # contradictory. pay_item_ids are not yet assigned. |
---|
| 105 | |
---|
[11638] | 106 | class CustomInterswitchPageStudent(InterswitchPageStudent): |
---|
[10765] | 107 | """ View which sends a POST request to the Interswitch |
---|
| 108 | CollegePAY payment gateway. |
---|
| 109 | """ |
---|
| 110 | grok.context(ICustomStudentOnlinePayment) |
---|
| 111 | action = POST_ACTION |
---|
| 112 | site_name = SITE_NAME |
---|
| 113 | currency = CURRENCY |
---|
| 114 | product_id = PRODUCT_ID |
---|
[15021] | 115 | mac = MAC |
---|
[14875] | 116 | pay_item_id = '000' |
---|
[10765] | 117 | |
---|
| 118 | def update(self): |
---|
[12979] | 119 | error = self.init_update() |
---|
| 120 | if error: |
---|
| 121 | self.flash(error, type='danger') |
---|
| 122 | self.redirect(self.url(self.context, '@@index')) |
---|
| 123 | return |
---|
[11647] | 124 | student = self.student |
---|
| 125 | xmldict = self.xmldict |
---|
[10765] | 126 | # Provider data |
---|
| 127 | xmldict['detail_ref'] = self.context.p_id |
---|
| 128 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 129 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 130 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
| 131 | # Institution data |
---|
[14875] | 132 | xmldict['institution_acct'] = '00000000' |
---|
| 133 | xmldict['institution_bank_id'] = '00' |
---|
[10765] | 134 | xmldict['institution_amt'] = '0.0' |
---|
[14875] | 135 | provider_amt = 0.0 |
---|
[14961] | 136 | tech_fee = 0.0 |
---|
[14862] | 137 | if self.context.p_category.startswith('schoolfee'): |
---|
| 138 | self.pay_item_id = '102' |
---|
[14875] | 139 | provider_amt = 2800.0 |
---|
[14961] | 140 | tech_fee = 1200.0 |
---|
[14889] | 141 | if student.faccode == 'SPAT': |
---|
[15214] | 142 | xmldict['institution_acct'] = '1015220292' |
---|
[14875] | 143 | xmldict['institution_bank_id'] = '117' |
---|
[14889] | 144 | elif student.current_mode in ('nd_ft', 'hnd_ft'): |
---|
[15214] | 145 | xmldict['institution_acct'] = '1012808851' |
---|
[15202] | 146 | xmldict['institution_bank_id'] = '117' |
---|
[14862] | 147 | elif self.context.p_category == 'clearance': |
---|
| 148 | self.pay_item_id = '103' |
---|
[14875] | 149 | provider_amt = 500.0 |
---|
[14889] | 150 | if student.faccode == 'SPAT': |
---|
[15227] | 151 | xmldict['institution_acct'] = '1015220292' |
---|
[14875] | 152 | xmldict['institution_bank_id'] = '117' |
---|
[15179] | 153 | elif student.current_mode in ('nd_ft', 'hnd_ft'): |
---|
| 154 | xmldict['institution_acct'] = '5210039869' |
---|
| 155 | xmldict['institution_bank_id'] = '51' |
---|
[14942] | 156 | elif self.context.p_category == 'gown': |
---|
| 157 | self.pay_item_id = '102' # We use school fee item id. |
---|
| 158 | xmldict['institution_acct'] = '2006612782' |
---|
| 159 | xmldict['institution_bank_id'] = '8' |
---|
[15021] | 160 | elif self.context.p_category == 'sports': |
---|
| 161 | self.pay_item_id = '110' |
---|
| 162 | xmldict['institution_acct'] = '6060300688' |
---|
| 163 | xmldict['institution_bank_id'] = '51' |
---|
| 164 | elif self.context.p_category == 'siwes': |
---|
| 165 | self.pay_item_id = '111' |
---|
| 166 | xmldict['institution_acct'] = '1001174679' |
---|
| 167 | xmldict['institution_bank_id'] = '123' |
---|
[15022] | 168 | elif self.context.p_category == 'eed_1': |
---|
[15021] | 169 | self.pay_item_id = '112' |
---|
| 170 | xmldict['institution_acct'] = '0039782431' |
---|
| 171 | xmldict['institution_bank_id'] = '11' |
---|
[15022] | 172 | elif self.context.p_category == 'eed_2': |
---|
| 173 | self.pay_item_id = '116' |
---|
| 174 | xmldict['institution_acct'] = '0039782431' |
---|
| 175 | xmldict['institution_bank_id'] = '11' |
---|
| 176 | elif self.context.p_category == 'olevel_results_1': |
---|
[15021] | 177 | self.pay_item_id = '113' |
---|
| 178 | xmldict['institution_acct'] = '2015327204' |
---|
| 179 | xmldict['institution_bank_id'] = '8' |
---|
[15022] | 180 | elif self.context.p_category == 'olevel_results_2': |
---|
| 181 | self.pay_item_id = '115' |
---|
| 182 | xmldict['institution_acct'] = '2015327204' |
---|
| 183 | xmldict['institution_bank_id'] = '8' |
---|
[15219] | 184 | elif self.context.p_category == 'hostel_maintenance': |
---|
| 185 | provider_amt = 500.0 |
---|
| 186 | self.pay_item_id = '117' |
---|
| 187 | xmldict['institution_acct'] = '2011810353' |
---|
| 188 | xmldict['institution_bank_id'] = '8' |
---|
[14862] | 189 | elif self.context.p_category in SPECIAL_PAYMENT_PARAMS.keys(): |
---|
| 190 | self.pay_item_id = SPECIAL_PAYMENT_PARAMS[self.context.p_category][0] |
---|
| 191 | provider_amt = SPECIAL_PAYMENT_PARAMS[self.context.p_category][1] |
---|
| 192 | xmldict['institution_acct'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][2] |
---|
| 193 | xmldict['institution_bank_id'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][3] |
---|
[10765] | 194 | xmldict['provider_amt'] = 100 * provider_amt |
---|
[14961] | 195 | xmldict['tech_fee'] = 100 * tech_fee |
---|
[12511] | 196 | xmldict['institution_item_name'] = self.context.category |
---|
[10765] | 197 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
[14889] | 198 | xmldict['institution_amt'] = institution_amt = 100 * ( |
---|
[14961] | 199 | self.context.amount_auth - provider_amt - tech_fee - GATEWAY_AMT) |
---|
| 200 | |
---|
[10765] | 201 | if provider_amt == 0: |
---|
| 202 | xmltext = """<payment_item_detail> |
---|
| 203 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 204 | <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" /> |
---|
| 205 | </item_details> |
---|
| 206 | </payment_item_detail>""" % xmldict |
---|
[14961] | 207 | elif tech_fee == 0: |
---|
| 208 | xmltext = """<payment_item_detail> |
---|
| 209 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 210 | <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" /> |
---|
| 211 | <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" /> |
---|
| 212 | </item_details> |
---|
| 213 | </payment_item_detail>""" % xmldict |
---|
[10765] | 214 | else: |
---|
| 215 | xmltext = """<payment_item_detail> |
---|
| 216 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 217 | <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" /> |
---|
| 218 | <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" /> |
---|
[14962] | 219 | <item_detail item_id="3" item_name="Technology Fee" item_amt="%(tech_fee)d" bank_id="307" acct_num="5100189030" /> |
---|
[10765] | 220 | </item_details> |
---|
| 221 | </payment_item_detail>""" % xmldict |
---|
[14889] | 222 | |
---|
| 223 | # isouaba: All certificates in SPAT are part time thus any payments |
---|
| 224 | # coming from those certificates (Application, Acceptance, school fees |
---|
| 225 | # etc) 40% should be split to keystone account. |
---|
| 226 | if student.faccode == 'SPAT': |
---|
| 227 | xmldict['institution_amt_2'] = 0.4 * institution_amt |
---|
| 228 | xmldict['institution_amt_1'] = 0.6 * institution_amt |
---|
| 229 | if provider_amt == 0: |
---|
| 230 | xmltext = """<payment_item_detail> |
---|
| 231 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 232 | <item_detail item_id="1" item_name="%(institution_item_name)s 1" item_amt="%(institution_amt_1)d" bank_id="%(institution_bank_id)s" acct_num="%(institution_acct)s" /> |
---|
| 233 | <item_detail item_id="2" item_name="%(institution_item_name)s 2" item_amt="%(institution_amt_2)d" bank_id="123" acct_num="1002883141" /> |
---|
| 234 | </item_details> |
---|
| 235 | </payment_item_detail>""" % xmldict |
---|
[14964] | 236 | elif tech_fee == 0: |
---|
| 237 | xmltext = """<payment_item_detail> |
---|
| 238 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 239 | <item_detail item_id="1" item_name="%(institution_item_name)s 1" item_amt="%(institution_amt_1)d" bank_id="%(institution_bank_id)s" acct_num="%(institution_acct)s" /> |
---|
| 240 | <item_detail item_id="2" item_name="%(institution_item_name)s 2" item_amt="%(institution_amt_2)d" bank_id="123" acct_num="1002883141" /> |
---|
| 241 | <item_detail item_id="3" item_name="%(provider_item_name)s" item_amt="%(provider_amt)d" bank_id="%(provider_bank_id)s" acct_num="%(provider_acct)s" /> |
---|
| 242 | </item_details> |
---|
| 243 | </payment_item_detail>""" % xmldict |
---|
[14889] | 244 | else: |
---|
| 245 | xmltext = """<payment_item_detail> |
---|
| 246 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 247 | <item_detail item_id="1" item_name="%(institution_item_name)s 1" item_amt="%(institution_amt_1)d" bank_id="%(institution_bank_id)s" acct_num="%(institution_acct)s" /> |
---|
| 248 | <item_detail item_id="2" item_name="%(institution_item_name)s 2" item_amt="%(institution_amt_2)d" bank_id="123" acct_num="1002883141" /> |
---|
| 249 | <item_detail item_id="3" item_name="%(provider_item_name)s" item_amt="%(provider_amt)d" bank_id="%(provider_bank_id)s" acct_num="%(provider_acct)s" /> |
---|
[14964] | 250 | <item_detail item_id="4" item_name="Technology Fee" item_amt="%(tech_fee)d" bank_id="307" acct_num="5100189030" /> |
---|
[14889] | 251 | </item_details> |
---|
| 252 | </payment_item_detail>""" % xmldict |
---|
[15255] | 253 | |
---|
| 254 | |
---|
| 255 | # Some payments are treated completely separately. The following lines |
---|
[14921] | 256 | # override the configuration above. |
---|
[15255] | 257 | |
---|
[14921] | 258 | if self.context.p_category == 'dep_sug': |
---|
| 259 | self.pay_item_id = '102' # We use school fee item id |
---|
| 260 | # amount_auth is being ignored. However, the sum of all split payments |
---|
| 261 | # must coincide with the amount_auth configured in students/utils.py |
---|
[14938] | 262 | xmldict['amt1'] = 100 * 1000 |
---|
[14921] | 263 | xmldict['amt2'] = 100 * 500 |
---|
| 264 | xmldict['amt3'] = 100 * 900 |
---|
| 265 | xmldict['amt4'] = 100 * 500 |
---|
[14938] | 266 | |
---|
[14940] | 267 | xmltext = """<payment_item_detail> |
---|
[14921] | 268 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 269 | <item_detail item_id="1" item_name="SUG" item_amt="%(amt1)d" bank_id="11" acct_num="0038079930" /> |
---|
| 270 | <item_detail item_id="2" item_name="Students Welfare" item_amt="%(amt2)d" bank_id="11" acct_num="0037892949" /> |
---|
| 271 | <item_detail item_id="3" item_name="Anti-Cult Book" item_amt="%(amt3)d" bank_id="11" acct_num="0037892949" /> |
---|
[14938] | 272 | <item_detail item_id="4" item_name="NADESSTU" item_amt="%(amt4)d" bank_id="11" acct_num="0036375968" /> |
---|
[14921] | 273 | </item_details> |
---|
| 274 | </payment_item_detail>""" % xmldict |
---|
[14940] | 275 | |
---|
[15255] | 276 | if self.context.p_category == 'eng_1': |
---|
| 277 | self.pay_item_id = '118' |
---|
| 278 | xmltext = """<payment_item_detail> |
---|
| 279 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 280 | <item_detail item_id="1" item_name="%(institution_item_name)s" item_amt="%(institution_amt)d" bank_id="8" acct_num="2024473077" /> |
---|
| 281 | </item_details> |
---|
| 282 | </payment_item_detail>""" % xmldict |
---|
| 283 | |
---|
| 284 | if self.context.p_category == 'eng_2': |
---|
| 285 | self.pay_item_id = '119' |
---|
| 286 | xmltext = """<payment_item_detail> |
---|
| 287 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 288 | <item_detail item_id="1" item_name="%(institution_item_name)s" item_amt="%(institution_amt)d" bank_id="8" acct_num="2024473077" /> |
---|
| 289 | </item_details> |
---|
| 290 | </payment_item_detail>""" % xmldict |
---|
| 291 | |
---|
| 292 | if self.context.p_category == 'sbs_1': |
---|
| 293 | self.pay_item_id = '120' |
---|
| 294 | # amount_auth is being ignored. However, the sum of all split payments |
---|
| 295 | # must coincide with the amount_auth configured in students/utils.py |
---|
| 296 | xmldict['amt1'] = 100 * 800 |
---|
| 297 | xmldict['amt2'] = 100 * 1000 |
---|
| 298 | xmldict['amt3'] = 100 * 500 |
---|
| 299 | |
---|
| 300 | xmltext = """<payment_item_detail> |
---|
| 301 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 302 | <item_detail item_id="1" item_name="SBS Dues I" item_amt="%(amt1)d" bank_id="11" acct_num="0010772626" /> |
---|
| 303 | <item_detail item_id="2" item_name="Journal fee" item_amt="%(amt2)d" bank_id="11" acct_num="0010772626" /> |
---|
| 304 | <item_detail item_id="3" item_name="ABSOBS" item_amt="%(amt3)d" bank_id="8" acct_num="2008185712" /> |
---|
| 305 | </item_details> |
---|
| 306 | </payment_item_detail>""" % xmldict |
---|
| 307 | |
---|
| 308 | if self.context.p_category == 'sbs_2': |
---|
| 309 | self.pay_item_id = '123' |
---|
| 310 | # amount_auth is being ignored. However, the sum of all split payments |
---|
| 311 | # must coincide with the amount_auth configured in students/utils.py |
---|
| 312 | xmldict['amt1'] = 100 * 300 |
---|
| 313 | xmldict['amt2'] = 100 * 500 |
---|
| 314 | xmltext = """<payment_item_detail> |
---|
| 315 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 316 | <item_detail item_id="1" item_name="SBS Dues II" item_amt="%(amt1)d" bank_id="11" acct_num="0010772626" /> |
---|
| 317 | <item_detail item_id="2" item_name="ABSOBS" item_amt="%(amt2)d" bank_id="8" acct_num="2008185712" /> |
---|
| 318 | </item_details> |
---|
| 319 | </payment_item_detail>""" % xmldict |
---|
| 320 | |
---|
| 321 | if self.context.p_category == 'bfn': |
---|
| 322 | self.pay_item_id = '125' |
---|
| 323 | xmltext = """<payment_item_detail> |
---|
| 324 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 325 | <item_detail item_id="1" item_name="%(institution_item_name)s" item_amt="%(institution_amt)d" bank_id="11" acct_num="0048039049" /> |
---|
| 326 | </item_details> |
---|
| 327 | </payment_item_detail>""" % xmldict |
---|
| 328 | |
---|
| 329 | if self.context.p_category == 'mkt': |
---|
| 330 | self.pay_item_id = '127' |
---|
| 331 | # amount_auth is being ignored. However, the sum of all split payments |
---|
| 332 | # must coincide with the amount_auth configured in students/utils.py |
---|
| 333 | xmldict['amt1'] = 100 * 500 |
---|
| 334 | xmldict['amt2'] = 100 * 500 |
---|
| 335 | xmltext = """<payment_item_detail> |
---|
| 336 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 337 | <item_detail item_id="1" item_name="MKT Dues" item_amt="%(amt1)d" bank_id="11" acct_num="0048297823" /> |
---|
| 338 | <item_detail item_id="2" item_name="NAMS" item_amt="%(amt2)d" bank_id="8" acct_num="2032309812" /> |
---|
| 339 | </item_details> |
---|
| 340 | </payment_item_detail>""" % xmldict |
---|
| 341 | |
---|
| 342 | if self.context.p_category == 'mcn': |
---|
| 343 | self.pay_item_id = '129' |
---|
| 344 | # amount_auth is being ignored. However, the sum of all split payments |
---|
| 345 | # must coincide with the amount_auth configured in students/utils.py |
---|
| 346 | xmldict['amt1'] = 100 * 500 |
---|
| 347 | xmldict['amt2'] = 100 * 500 |
---|
| 348 | xmltext = """<payment_item_detail> |
---|
| 349 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 350 | <item_detail item_id="1" item_name="MCN Dues" item_amt="%(amt1)d" bank_id="11" acct_num="0010789213" /> |
---|
| 351 | <item_detail item_id="2" item_name="AMCOS" item_amt="%(amt2)d" bank_id="8" acct_num="3020253234" /> |
---|
| 352 | </item_details> |
---|
| 353 | </payment_item_detail>""" % xmldict |
---|
| 354 | |
---|
| 355 | if self.context.p_category == 'otm': |
---|
| 356 | self.pay_item_id = '131' |
---|
| 357 | # amount_auth is being ignored. However, the sum of all split payments |
---|
| 358 | # must coincide with the amount_auth configured in students/utils.py |
---|
| 359 | xmldict['amt1'] = 100 * 500 |
---|
| 360 | xmldict['amt2'] = 100 * 500 |
---|
| 361 | xmltext = """<payment_item_detail> |
---|
| 362 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 363 | <item_detail item_id="1" item_name="OTM Dues" item_amt="%(amt1)d" bank_id="8" acct_num="3068446702" /> |
---|
| 364 | <item_detail item_id="2" item_name="NAOTM" item_amt="%(amt2)d" bank_id="11" acct_num="0036652027" /> |
---|
| 365 | </item_details> |
---|
| 366 | </payment_item_detail>""" % xmldict |
---|
| 367 | |
---|
| 368 | if self.context.p_category == 'acct': |
---|
| 369 | self.pay_item_id = '134' |
---|
| 370 | # amount_auth is being ignored. However, the sum of all split payments |
---|
| 371 | # must coincide with the amount_auth configured in students/utils.py |
---|
| 372 | xmldict['amt1'] = 100 * 3000 |
---|
| 373 | xmldict['amt2'] = 100 * 500 |
---|
| 374 | xmldict['amt3'] = 100 * 500 |
---|
| 375 | xmltext = """<payment_item_detail> |
---|
| 376 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 377 | <item_detail item_id="1" item_name="Profession Accreditation" item_amt="%(amt1)d" bank_id="11" acct_num="0040285084" /> |
---|
| 378 | <item_detail item_id="2" item_name="ACCT Dues" item_amt="%(amt2)d" bank_id="11" acct_num="0036184955" /> |
---|
| 379 | <item_detail item_id="3" item_name="NAPAS" item_amt="%(amt3)d" bank_id="11" acct_num="2008498661" /> |
---|
| 380 | </item_details> |
---|
| 381 | </payment_item_detail>""" % xmldict |
---|
| 382 | |
---|
| 383 | if self.context.p_category == 'bam': |
---|
| 384 | self.pay_item_id = '136' |
---|
| 385 | # amount_auth is being ignored. However, the sum of all split payments |
---|
| 386 | # must coincide with the amount_auth configured in students/utils.py |
---|
| 387 | xmldict['amt1'] = 100 * 500 |
---|
| 388 | xmldict['amt2'] = 100 * 500 |
---|
| 389 | xmltext = """<payment_item_detail> |
---|
| 390 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 391 | <item_detail item_id="1" item_name="BAM Dues" item_amt="%(amt1)d" bank_id="11" acct_num="0010788058" /> |
---|
| 392 | <item_detail item_id="2" item_name="NABAS" item_amt="%(amt2)d" bank_id="8" acct_num="2006936848" /> |
---|
| 393 | </item_details> |
---|
| 394 | </payment_item_detail>""" % xmldict |
---|
| 395 | |
---|
| 396 | if self.context.p_category == 'pom': |
---|
| 397 | self.pay_item_id = '138' |
---|
| 398 | # amount_auth is being ignored. However, the sum of all split payments |
---|
| 399 | # must coincide with the amount_auth configured in students/utils.py |
---|
| 400 | xmldict['amt1'] = 100 * 500 |
---|
| 401 | xmldict['amt2'] = 100 * 500 |
---|
| 402 | xmltext = """<payment_item_detail> |
---|
| 403 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 404 | <item_detail item_id="1" item_name="POM Dues" item_amt="%(amt1)d" bank_id="11" acct_num="0096851444" /> |
---|
| 405 | <item_detail item_id="2" item_name="NAMS" item_amt="%(amt2)d" bank_id="8" acct_num="2033423003" /> |
---|
| 406 | </item_details> |
---|
| 407 | </payment_item_detail>""" % xmldict |
---|
| 408 | |
---|
| 409 | if self.context.p_category == 'hrm': |
---|
| 410 | self.pay_item_id = '140' |
---|
| 411 | # amount_auth is being ignored. However, the sum of all split payments |
---|
| 412 | # must coincide with the amount_auth configured in students/utils.py |
---|
| 413 | xmldict['amt1'] = 100 * 500 |
---|
| 414 | xmldict['amt2'] = 100 * 500 |
---|
| 415 | xmltext = """<payment_item_detail> |
---|
| 416 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 417 | <item_detail item_id="1" item_name="HRM Dues" item_amt="%(amt1)d" bank_id="11" acct_num="0096858546" /> |
---|
| 418 | <item_detail item_id="2" item_name="NAMS" item_amt="%(amt2)d" bank_id="8" acct_num="2033423003" /> |
---|
| 419 | </item_details> |
---|
| 420 | </payment_item_detail>""" % xmldict |
---|
| 421 | |
---|
| 422 | |
---|
[10765] | 423 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
| 424 | self.context.provider_amt = provider_amt |
---|
| 425 | self.context.gateway_amt = GATEWAY_AMT |
---|
[12479] | 426 | hashargs = ( |
---|
| 427 | self.context.p_id + |
---|
| 428 | PRODUCT_ID + |
---|
| 429 | self.pay_item_id + |
---|
| 430 | str(int(self.amount_auth)) + |
---|
| 431 | self.site_redirect_url + |
---|
| 432 | self.mac) |
---|
| 433 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
[10765] | 434 | return |
---|
| 435 | |
---|
[11638] | 436 | class CustomInterswitchPageApplicant(InterswitchPageApplicant): |
---|
[10765] | 437 | """ View which sends a POST request to the Interswitch |
---|
| 438 | CollegePAY payment gateway. |
---|
| 439 | """ |
---|
| 440 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 441 | action = POST_ACTION |
---|
| 442 | site_name = SITE_NAME |
---|
| 443 | currency = CURRENCY |
---|
[14729] | 444 | pay_item_id = '101' # must be provided by Interswitch |
---|
[10765] | 445 | product_id = PRODUCT_ID |
---|
[15021] | 446 | mac = MAC |
---|
[10765] | 447 | |
---|
| 448 | def update(self): |
---|
[12979] | 449 | error = self.init_update() |
---|
| 450 | if error: |
---|
| 451 | self.flash(error, type='danger') |
---|
| 452 | self.redirect(self.url(self.context, '@@index')) |
---|
| 453 | return |
---|
[10765] | 454 | xmldict = {} |
---|
[14731] | 455 | provider_amt = 500.0 |
---|
[14859] | 456 | gateway_amt = GATEWAY_AMT |
---|
[15075] | 457 | xmldict['institution_acct'] = '00000000' |
---|
| 458 | xmldict['institution_bank_id'] = '00' |
---|
| 459 | if self.applicant.__parent__.application_category in ('ndft', 'hndft'): |
---|
[15098] | 460 | xmldict['institution_acct'] = '5210039869' |
---|
| 461 | xmldict['institution_bank_id'] = '51' |
---|
[15075] | 462 | elif self.applicant.__parent__.application_category in ( |
---|
| 463 | 'ndpt', 'hndpt', 'ndwe', 'hndwe'): |
---|
[15098] | 464 | xmldict['institution_acct'] = '1015220292' |
---|
| 465 | xmldict['institution_bank_id'] = '117' |
---|
[15075] | 466 | elif self.applicant.applicant_id.startswith('special'): |
---|
[14859] | 467 | if self.context.p_category in SPECIAL_PAYMENT_PARAMS.keys(): |
---|
| 468 | self.pay_item_id = SPECIAL_PAYMENT_PARAMS[self.context.p_category][0] |
---|
| 469 | provider_amt = SPECIAL_PAYMENT_PARAMS[self.context.p_category][1] |
---|
| 470 | xmldict['institution_acct'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][2] |
---|
| 471 | xmldict['institution_bank_id'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][3] |
---|
| 472 | if self.pay_item_id in ('122', '123', '132', '137', '141', |
---|
| 473 | '142', '143', '144', '146', '147',): |
---|
| 474 | gateway_amt = round(0.015 * self.context.amount_auth, 2) |
---|
[10765] | 475 | xmldict['detail_ref'] = self.context.p_id |
---|
| 476 | xmldict['provider_amt'] = 100 * provider_amt |
---|
| 477 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 478 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 479 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
[14889] | 480 | xmldict['institution_amt'] = institution_amt = 100 * ( |
---|
| 481 | self.context.amount_auth - provider_amt - gateway_amt) |
---|
[12511] | 482 | xmldict['institution_item_name'] = self.context.category |
---|
[10765] | 483 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
| 484 | xmltext = """<payment_item_detail> |
---|
| 485 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
| 486 | <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" /> |
---|
| 487 | <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" /> |
---|
| 488 | </item_details> |
---|
| 489 | </payment_item_detail>""" % xmldict |
---|
[14889] | 490 | |
---|
| 491 | # isouaba: All certificates in SPAT are part time thus any payments |
---|
| 492 | # coming from those certificates (Application, Acceptance, school fees |
---|
| 493 | # etc) 40% should be split to keystone account. |
---|
| 494 | if self.applicant.__parent__.application_category in ( |
---|
| 495 | 'ndpt', 'hndpt', 'ndwe', 'hndwe'): |
---|
| 496 | xmldict['institution_amt_2'] = 0.4 * institution_amt |
---|
| 497 | xmldict['institution_amt_1'] = 0.6 * institution_amt |
---|
| 498 | xmltext = """<payment_item_detail> |
---|
| 499 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
| 500 | <item_detail item_id="1" item_name="%(institution_item_name)s 1" item_amt="%(institution_amt_1)d" bank_id="%(institution_bank_id)s" acct_num="%(institution_acct)s" /> |
---|
| 501 | <item_detail item_id="2" item_name="%(institution_item_name)s 2" item_amt="%(institution_amt_2)d" bank_id="123" acct_num="1002883141" /> |
---|
| 502 | <item_detail item_id="3" item_name="%(provider_item_name)s" item_amt="%(provider_amt)d" bank_id="%(provider_bank_id)s" acct_num="%(provider_acct)s" /> |
---|
| 503 | </item_details> |
---|
| 504 | </payment_item_detail>""" % xmldict |
---|
| 505 | |
---|
[10765] | 506 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
| 507 | self.context.provider_amt = provider_amt |
---|
| 508 | self.context.gateway_amt = GATEWAY_AMT |
---|
[12479] | 509 | |
---|
| 510 | hashargs = ( |
---|
| 511 | self.context.p_id + |
---|
| 512 | PRODUCT_ID + |
---|
| 513 | self.pay_item_id + |
---|
| 514 | str(int(self.amount_auth)) + |
---|
| 515 | self.site_redirect_url + |
---|
| 516 | self.mac) |
---|
| 517 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
[10765] | 518 | return |
---|
| 519 | |
---|
[11638] | 520 | class CustomInterswitchPaymentRequestWebservicePageStudent( |
---|
[10765] | 521 | InterswitchPaymentRequestWebservicePageStudent): |
---|
[13587] | 522 | """Request webservice view for the CollegePAY gateway |
---|
[10765] | 523 | """ |
---|
| 524 | grok.context(ICustomStudentOnlinePayment) |
---|
| 525 | product_id = PRODUCT_ID |
---|
| 526 | gateway_host = HOST |
---|
| 527 | gateway_url = URL |
---|
[15021] | 528 | mac = MAC |
---|
[10765] | 529 | |
---|
[13587] | 530 | class CustomInterswitchPaymentVerifyWebservicePageStudent( |
---|
| 531 | InterswitchPaymentVerifyWebservicePageStudent): |
---|
| 532 | """Payment verify view for the CollegePAY gateway |
---|
| 533 | """ |
---|
| 534 | grok.context(ICustomStudentOnlinePayment) |
---|
| 535 | product_id = PRODUCT_ID |
---|
| 536 | gateway_host = HOST |
---|
| 537 | gateway_url = URL |
---|
[15021] | 538 | mac = MAC |
---|
[13587] | 539 | |
---|
[11638] | 540 | class CustomInterswitchPaymentRequestWebservicePageApplicant( |
---|
[10765] | 541 | InterswitchPaymentRequestWebservicePageApplicant): |
---|
[13587] | 542 | """Request webservice view for the CollegePAY gateway |
---|
[10765] | 543 | """ |
---|
| 544 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 545 | product_id = PRODUCT_ID |
---|
| 546 | gateway_host = HOST |
---|
[12479] | 547 | gateway_url = URL |
---|
[15021] | 548 | mac = MAC |
---|
[13587] | 549 | |
---|
| 550 | class CustomInterswitchPaymentVerifyWebservicePageApplicant( |
---|
| 551 | InterswitchPaymentVerifyWebservicePageApplicant): |
---|
| 552 | """Payment verify view for the CollegePAY gateway |
---|
| 553 | """ |
---|
| 554 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 555 | product_id = PRODUCT_ID |
---|
| 556 | gateway_host = HOST |
---|
[14722] | 557 | gateway_url = URL |
---|
[15021] | 558 | mac = MAC |
---|