## $Id: browser.py 11867 2014-10-22 03:30:30Z henrik $ ## ## Copyright (C) 2012 Uli Fouquet & Henrik Bettermann ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## import httplib import hashlib import grok from zope.interface import Interface from zope.component import queryAdapter from kofacustom.nigeria.interswitch.browser import ( InterswitchPaymentRequestWebservicePageStudent, InterswitchPaymentRequestWebservicePageApplicant, InterswitchPageStudent, InterswitchPageApplicant, ) from waeup.kwarapoly.students.interfaces import ICustomStudentOnlinePayment from waeup.kwarapoly.applicants.interfaces import ICustomApplicantOnlinePayment from waeup.kwarapoly.interfaces import MessageFactory as _ PRODUCT_ID = '3930' SITE_NAME = 'kwarapoly.waeup.org' PROVIDER_ACCT = '1010764827' PROVIDER_BANK_ID = '117' PROVIDER_ITEM_NAME = 'BT Education' INSTITUTION_NAME = 'KwaraPoly' CURRENCY = '566' GATEWAY_AMT = 300.0 #QUERY_URL = 'https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx' #QUERY_URL = 'https://testwebpay.interswitchng.com/test_paydirect/services/TransactionQueryURL.aspx' POST_ACTION = 'https://webpay.interswitchng.com/paydirect/webpay/pay.aspx' #POST_ACTION = 'https://testwebpay.interswitchng.com/test_paydirect/webpay/pay.aspx' HOST = 'webpay.interswitchng.com' #HOST = 'testwebpay.interswitchng.com' URL = '/paydirect/services/TransactionQueryWs.asmx' #URL = '/test_paydirect/services/TransactionQueryWs.asmx' httplib.HTTPConnection.debuglevel = 0 SPECIAL_PAYMENT_PARAMS = { 'certificate': ('111', 200.0, 300.0, '7000016724', '9'), 'state_result': ('112', 200.0, 300.0, '7000016724', '9'), 'transcript_local': ('113', 200.0, 300.0, '7000016724', '9'), 'transcript_foreign': ('114', 200.0, 300.0, '7000016724', '9'), 'ver_result': ('115', 200.0, 300.0, '7000016724', '9'), 'change_course': ('116', 200.0, 300.0, '7000016724', '9'), 'change_inst': ('117', 200.0, 300.0, '7000016724', '9'), 'jamb_reject': ('118', 200.0, 300.0, '7000016724', '9'), 'cert_of_cert': ('119', 200.0, 300.0, '7000016724', '9'), 'ref_let': ('120', 200.0, 300.0, '7000016724', '9'), 'proc_cert': ('121', 200.0, 300.0, '7000016724', '9'), 'loss_idcard': ('122', 6.0, 9.0, '7000016724', '9'), 'loss_examcard': ('123', 3.0, 4.5, '7000016724', '9'), 'loss_result': ('124', 200.0, 300.0, '7000016724', '9'), 'loss_receipt': ('125', 200.0, 300.0, '7000016724', '9'), 'loss_clearance': ('126', 200.0, 300.0, '7000016724', '9'), 'conv_brochure': ('127', 200.0, 300.0, '7000016724', '9'), 'hnd_certificate': ('128', 200.0, 300.0, '7000016724', '9'), 'hnd_state_result': ('129', 200.0, 300.0, '7000016724', '9'), 'hnd_transcript_local': ('130', 200.0, 300.0, '7000016724', '9'), 'hnd_transcript_foreign': ('131', 200.0, 300.0, '7000016724', '9'), 'staff_loss_idcard': ('132', 6.0, 9.0, '7000016724', '9'), 'hnd_conv_brochure': ('133', 200.0, 300.0, '7000016724', '9'), 'pgd_state_result': ('134', 200.0, 300.0, '7000016724', '9'), 'pgd_conv_brochure': ('135', 200.0, 300.0, '7000016724', '9'), 'pgd_certificate': ('136', 200.0, 300.0, '7000016724', '9'), 'log_book': ('137', 3.0, 4.5, '1010508401', '117'), 'pgd_transcript_foreign': ('138', 200.0, 300.0, '7000016724', '9'), 'pgd_transcript_local': ('139', 200.0, 300.0, '7000016724', '9'), 'jamb_regularization': ('140', 200.0, 300.0, '0838798020', '76'), } class CustomInterswitchPageStudent(InterswitchPageStudent): """ View which sends a POST request to the Interswitch CollegePAY payment gateway. """ grok.context(ICustomStudentOnlinePayment) grok.template('student_goto_interswitch') action = POST_ACTION site_name = SITE_NAME currency = CURRENCY product_id = PRODUCT_ID mac = 'E6BA6CBBA9AF2871EE25C32C8D57C98895B9B001DC5B9CB2C463E2A9BDA44A3F1260C8A364F33789CDF74CB3EE7E6EF5D94F48D3AF7B727E75D97F07618DFA6D' def update(self): error = self.init_update() if error: self.flash(error, type='danger') self.redirect(self.url(self.context, '@@index')) return student = self.student xmldict = self.xmldict # Provider data xmldict['detail_ref'] = self.context.p_id xmldict['provider_acct'] = PROVIDER_ACCT xmldict['provider_bank_id'] = PROVIDER_BANK_ID xmldict['provider_item_name'] = PROVIDER_ITEM_NAME # Institution data xmldict['institution_item_name'] = self.category xmldict['institution_name'] = INSTITUTION_NAME xmldict['institution_amt'] = 0.0 dalash_amt = 200.0 provider_amt = 300.0 gateway_amt = GATEWAY_AMT self.pay_item_id = '000' xmldict['institution_acct'] = "7000016724" xmldict['institution_bank_id'] = "9" if self.context.p_category == 'schoolfee': self.pay_item_id = '101' dalash_amt = 1800.0 provider_amt = 1200.0 if not student.current_mode.endswith('_pt'): if xmldict['faculty'] in ('CPGS',): xmldict['institution_acct'] = "1771586608" #changed account no. from 1771180233 xmldict['institution_bank_id'] = '120' elif xmldict['faculty'] in ('IBAS',): xmldict['institution_acct'] = "1771586608" #Changed from FBN to SKYE Bank xmldict['institution_bank_id'] = '120' self.pay_item_id = '107' elif xmldict['faculty'] in ('IETS',): xmldict['institution_acct'] = "0693033406" #Changed from FBN to Access Bank xmldict['institution_bank_id'] = '31' self.pay_item_id = '109' elif xmldict['faculty'] in ('IFMS',): xmldict['institution_acct'] = "2013910271" #changed bank from GTBank to FBN xmldict['institution_bank_id'] = '8' self.pay_item_id = '106' elif xmldict['faculty'] in ('ITCH',): xmldict['institution_acct'] = "0106259811" #changed from SKYE Bank to GTbank xmldict['institution_bank_id'] = '10' self.pay_item_id = '110' elif xmldict['faculty'] in ('IICT',): xmldict['institution_acct'] = "1100019929" #changed from FBN to Keystone Bank xmldict['institution_bank_id'] = '123' self.pay_item_id = '108' else: xmldict['institution_acct'] = "0838798020" #part-time fees acquired by FCMB xmldict['institution_bank_id'] = '76' elif self.context.p_category in SPECIAL_PAYMENT_PARAMS.keys(): self.pay_item_id = SPECIAL_PAYMENT_PARAMS[self.context.p_category][0] dalash_amt = SPECIAL_PAYMENT_PARAMS[self.context.p_category][1] provider_amt = SPECIAL_PAYMENT_PARAMS[self.context.p_category][2] xmldict['institution_acct'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][3] xmldict['institution_bank_id'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][4] if self.context.amount_auth <= 2000.0: gateway_amt = round(0.015 * self.context.amount_auth, 2) elif 'maintenance' in self.context.p_category: self.pay_item_id = '102' xmldict['institution_acct'] = "0039050937" xmldict['institution_bank_id'] = '31' dalash_amt = 0.0 provider_amt = 0.0 else: xmldict['institution_acct'] = "0000000000000" xmldict['institution_bank_id'] = '0' xmldict['dalash_amt'] = 100 * dalash_amt xmldict['provider_amt'] = 100 * provider_amt xmldict['institution_amt'] = 100 * ( self.context.amount_auth - provider_amt - gateway_amt - dalash_amt) hashargs = ( self.context.p_id + PRODUCT_ID + self.pay_item_id + str(int(self.amount_auth)) + self.site_redirect_url + self.mac) self.hashvalue = hashlib.sha512(hashargs).hexdigest() # Interswitch amount is not part of the xml data if 'maintenance' in self.context.p_category: xmltext = """ """ % xmldict else: xmltext = """ """ % xmldict self.xml_data = """""" % xmltext self.context.provider_amt = provider_amt self.context.gateway_amt = gateway_amt self.context.thirdparty_amt = dalash_amt return class CustomInterswitchPageApplicant(InterswitchPageApplicant): """ View which sends a POST request to the Interswitch CollegePAY payment gateway. """ grok.context(ICustomApplicantOnlinePayment) grok.template('applicant_goto_interswitch') action = POST_ACTION site_name = SITE_NAME currency = CURRENCY pay_item_id = '103' product_id = PRODUCT_ID mac = 'E6BA6CBBA9AF2871EE25C32C8D57C98895B9B001DC5B9CB2C463E2A9BDA44A3F1260C8A364F33789CDF74CB3EE7E6EF5D94F48D3AF7B727E75D97F07618DFA6D' def update(self): super(CustomInterswitchPageApplicant, self).update() xmldict = {} provider_amt = 300.0 dalash_amt = 200.0 gateway_amt = GATEWAY_AMT xmldict['institution_acct'] = '00000000000' xmldict['institution_bank_id'] = '00' if self.applicant.applicant_id.startswith('hnd'): xmldict['institution_acct'] = '1771440667' xmldict['institution_bank_id'] = '120' elif self.applicant.applicant_id.startswith('nd'): xmldict['institution_acct'] = '1771440667' xmldict['institution_bank_id'] = '120' elif self.applicant.applicant_id.startswith('rmd'): xmldict['institution_acct'] = '1771440667' xmldict['institution_bank_id'] = '120' elif self.applicant.applicant_id.startswith('pgft'): xmldict['institution_acct'] = '7000016724' xmldict['institution_bank_id'] = '9' elif self.applicant.applicant_id.startswith('prejambites'): # changed for prejambites from GTBank '0106259811' to FBN '2013910271' xmldict['institution_acct'] = '2013910271' xmldict['institution_bank_id'] = '8' self.pay_item_id = '104' # Until 14/9/2014 we have not sent split amount data for pre applications. # To compenstate the loss we temporarily doubled the split amounts # until 20/9/2014, see ticket 75. #provider_amt = 600.0 #dalash_amt = 400.0 elif self.applicant.applicant_id.startswith('pre'): # changed for prejambites from FBN '2013910271' to GTBank '0106259811' xmldict['institution_acct'] = '0106259811' xmldict['institution_bank_id'] = '10' # Until 14/9/2014 we have not sent split amount data for pre applications. # To compenstate the loss we temporarily doubled the split amounts # until 20/9/2014, see ticket 75. #provider_amt = 600.0 #dalash_amt = 400.0 elif self.applicant.applicant_id.startswith('special'): if self.context.p_category in SPECIAL_PAYMENT_PARAMS.keys(): self.pay_item_id = SPECIAL_PAYMENT_PARAMS[self.context.p_category][0] dalash_amt = SPECIAL_PAYMENT_PARAMS[self.context.p_category][1] provider_amt = SPECIAL_PAYMENT_PARAMS[self.context.p_category][2] xmldict['institution_acct'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][3] xmldict['institution_bank_id'] = SPECIAL_PAYMENT_PARAMS[self.context.p_category][4] if self.context.amount_auth <= 2000.0: gateway_amt = round(0.015 * self.context.amount_auth, 2) xmldict['dalash_amt'] = 100 * dalash_amt xmldict['detail_ref'] = self.context.p_id xmldict['provider_amt'] = 100 * provider_amt xmldict['provider_acct'] = PROVIDER_ACCT xmldict['provider_bank_id'] = PROVIDER_BANK_ID xmldict['provider_item_name'] = PROVIDER_ITEM_NAME xmldict['institution_amt'] = 100 * ( self.context.amount_auth - provider_amt - gateway_amt - dalash_amt) xmldict['institution_item_name'] = self.category xmldict['institution_name'] = INSTITUTION_NAME hashargs = ( self.context.p_id + PRODUCT_ID + self.pay_item_id + str(int(self.amount_auth)) + self.site_redirect_url + self.mac) self.hashvalue = hashlib.sha512(hashargs).hexdigest() # Interswitch amount is not part of the xml data xmltext = """ """ % xmldict self.xml_data = """""" % xmltext self.context.provider_amt = provider_amt self.context.gateway_amt = gateway_amt self.context.thirdparty_amt = dalash_amt return class CustomInterswitchPaymentRequestWebservicePageStudent( InterswitchPaymentRequestWebservicePageStudent): """ Request webservice view for the CollegePAY gateway """ grok.context(ICustomStudentOnlinePayment) product_id = PRODUCT_ID gateway_host = HOST gateway_url = URL class CustomInterswitchPaymentRequestWebservicePageApplicant( InterswitchPaymentRequestWebservicePageApplicant): """ Request webservice view for the CollegePAY gateway """ grok.context(ICustomApplicantOnlinePayment) product_id = PRODUCT_ID gateway_host = HOST gateway_url = URL