## $Id: browser.py 16380 2021-01-21 10:27:32Z 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 kofacustom.nigeria.interswitch.browser import ( InterswitchPaymentRequestWebservicePageApplicant, InterswitchPaymentRequestWebservicePageStudent, InterswitchPaymentVerifyWebservicePageApplicant, InterswitchPaymentVerifyWebservicePageStudent, InterswitchPageStudent, InterswitchPageApplicant, ) from kofacustom.coewarri.students.interfaces import ICustomStudentOnlinePayment from kofacustom.coewarri.applicants.interfaces import ICustomApplicantOnlinePayment from kofacustom.coewarri.interfaces import MessageFactory as _ PRODUCT_ID = '6667' SITE_NAME = 'coewarri-kofa.waeup.org' PROVIDER_ACCT = '0427773399' PROVIDER_BANK_ID = '10' PROVIDER_ITEM_NAME = 'BT Education' INSTITUTION_NAME = 'COE Warri' CURRENCY = '566' GATEWAY_AMT = 250.0 MAC = '9309B5CBF1BFB09693C6F5F578046E3FCAB0A2538C3FE4221A6E63AFD348DE888E655F9C7E9F112151A702B6B09E6A7ACC5B3BF3C701F0C1B0D8EA6C1872AE94' POST_ACTION = 'https://webpay.interswitchng.com/paydirect/pay' #POST_ACTION = 'https://stageserv.interswitchng.com/test_paydirect/pay' HOST = 'webpay.interswitchng.com' #HOST = 'stageserv.interswitchng.com' URL = '/paydirect/api/v1/gettransaction.json' #URL = '/test_paydirect/api/v1/gettransaction.json' httplib.HTTPSConnection.debuglevel = 0 HTTPS = True class CustomInterswitchPageStudent(InterswitchPageStudent): """ View which sends a POST request to the Interswitch CollegePAY payment gateway. """ grok.context(ICustomStudentOnlinePayment) action = POST_ACTION site_name = SITE_NAME currency = CURRENCY product_id = PRODUCT_ID mac = MAC def update(self): error = self.init_update() if error: self.flash(error, type='danger') self.redirect(self.url(self.context, '@@index')) return self.context.r_company = u'interswitch' student = self.student xmldict = self.xmldict self.pay_item_id = '0000' # 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 provider_amt = 0.0 share_amt = 0.0 # Institution data xmldict['institution_acct'] = '2000746414' xmldict['institution_bank_id'] = '8' xmldict['institution_item_name'] = self.context.category xmldict['institution_name'] = INSTITUTION_NAME if self.context.p_category == 'clearance': self.pay_item_id = '102' provider_amt = 500.0 elif self.context.p_category.startswith('schoolfee'): self.pay_item_id = '103' if self.context.p_category in ('schoolfee_1', 'schoolfee_2') \ and not self.context.p_item == 'Balance': provider_amt = 1400.0 share_amt = 600.0 if self.context.p_category == 'schoolfee' \ and not self.context.p_item == 'Balance': provider_amt = 2800.0 share_amt = 1200.0 xmldict['provider_amt'] = 100 * provider_amt xmldict['share_amt'] = 100 * share_amt xmldict['institution_amt'] = 100 * ( self.context.amount_auth - provider_amt - share_amt - GATEWAY_AMT) # Interswitch amount is not part of the xml data if provider_amt == 0: xmltext = """ """ % xmldict elif share_amt == 0: xmltext = """ """ % xmldict else: xmltext = """ """ % xmldict self.xml_data = """""" % xmltext self.context.provider_amt = provider_amt self.context.gateway_amt = GATEWAY_AMT self.amount_auth = int(100 * self.context.amount_auth) 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() return class CustomInterswitchPageApplicant(InterswitchPageApplicant): """ View which sends a POST request to the Interswitch CollegePAY payment gateway. """ grok.context(ICustomApplicantOnlinePayment) action = POST_ACTION site_name = SITE_NAME currency = CURRENCY pay_item_id = '101' product_id = PRODUCT_ID mac = MAC def update(self): error = self.init_update() if error: self.flash(error, type='danger') self.redirect(self.url(self.context, '@@index')) return self.context.r_company = u'interswitch' xmldict = {} provider_amt = 500.0 xmldict['institution_acct'] = '2000746414' xmldict['institution_bank_id'] = '8' 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) xmldict['institution_item_name'] = self.context.category xmldict['institution_name'] = INSTITUTION_NAME # 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.amount_auth = int(100 * self.context.amount_auth) 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() return class CustomInterswitchPaymentRequestWebservicePageStudent( InterswitchPaymentRequestWebservicePageStudent): """Request webservice view for the CollegePAY gateway """ grok.context(ICustomStudentOnlinePayment) product_id = PRODUCT_ID gateway_host = HOST gateway_url = URL mac = MAC class CustomInterswitchPaymentVerifyWebservicePageStudent( InterswitchPaymentVerifyWebservicePageStudent): """Payment verify view for the CollegePAY gateway """ grok.context(ICustomStudentOnlinePayment) product_id = PRODUCT_ID gateway_host = HOST gateway_url = URL mac = MAC class CustomInterswitchPaymentRequestWebservicePageApplicant( InterswitchPaymentRequestWebservicePageApplicant): """Request webservice view for the CollegePAY gateway """ grok.context(ICustomApplicantOnlinePayment) product_id = PRODUCT_ID gateway_host = HOST gateway_url = URL mac = MAC class CustomInterswitchPaymentVerifyWebservicePageApplicant( InterswitchPaymentVerifyWebservicePageApplicant): """Payment verify view for the CollegePAY gateway """ grok.context(ICustomApplicantOnlinePayment) product_id = PRODUCT_ID gateway_host = HOST gateway_url = URL mac = MAC