## $Id: browser.py 11765 2014-07-21 10:12:34Z 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 grok from kofacustom.nigeria.interswitch.browser import ( InterswitchPaymentRequestWebservicePageApplicant, InterswitchPaymentRequestWebservicePageStudent, InterswitchPageStudent, InterswitchPageApplicant, ) from waeup.uniben.students.interfaces import ICustomStudentOnlinePayment from waeup.uniben.applicants.interfaces import ICustomApplicantOnlinePayment from waeup.uniben.interfaces import MessageFactory as _ PRODUCT_ID = '57' SITE_NAME = 'uniben-kofa.waeup.org' PROVIDER_ACCT = '1010764827' PROVIDER_BANK_ID = '117' PROVIDER_ITEM_NAME = 'BT Education' INSTITUTION_NAME = 'Uniben' CURRENCY = '566' GATEWAY_AMT = 150.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 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 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_acct'] = '000000000000' xmldict['institution_bank_id'] = '00' xmldict['institution_amt'] = '0.0' provider_amt = 0.0 self.pay_item_id = '0000' if self.context.p_category == 'schoolfee': if not self.context.p_item == 'Balance': provider_amt = 1500.0 if student.current_mode.endswith('_ft'): self.pay_item_id = '5700' if student.current_mode in ('ug_ft','de_ft','ume_ft'): xmldict['institution_acct'] = '2017506430' xmldict['institution_bank_id'] = '8' elif student.current_mode in ('dp_ft','dp_pt','ct_pt','ct_ft'): xmldict['institution_acct'] = '0009598853' xmldict['institution_bank_id'] = '17' elif student.current_mode in ('pg_ft'): xmldict['institution_acct'] = '6230033428' xmldict['institution_bank_id'] = '51' elif student.current_mode.endswith('_pt'): self.pay_item_id = '5701' if student.current_mode in ('ug_pt','de_pt'): xmldict['institution_acct'] = '0122009929' xmldict['institution_bank_id'] = '16' elif student.current_mode in ('pg_pt', 'special_pg_pt'): xmldict['institution_acct'] = '1013766956' xmldict['institution_bank_id'] = '117' elif self.context.p_category == 'clearance': self.pay_item_id = '5702' provider_amt = 1500.0 if student.faccode == 'FCETA': xmldict['institution_acct'] = '5210007943' xmldict['institution_bank_id'] = '51' else: xmldict['institution_bank_id'] = '10' xmldict['institution_acct'] = '0031716047' elif self.context.p_category == 'gown': self.pay_item_id = '5704' xmldict['institution_bank_id'] = '16' xmldict['institution_acct'] = '0122011401' elif self.context.p_category.startswith('hostel_maintenance'): self.pay_item_id = '5705' xmldict['institution_bank_id'] = '17' xmldict['institution_acct'] = '0009598925' xmldict['provider_amt'] = 100 * provider_amt xmldict['institution_item_name'] = self.category xmldict['institution_name'] = INSTITUTION_NAME xmldict['institution_amt'] = 100 * ( self.context.amount_auth - provider_amt - GATEWAY_AMT) # Interswitch amount is not part of the xml data if provider_amt == 0: xmltext = """ """ % xmldict else: xmltext = """ """ % xmldict self.xml_data = """""" % xmltext self.context.provider_amt = provider_amt self.context.gateway_amt = GATEWAY_AMT 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 = '5703' product_id = PRODUCT_ID def update(self): error = self.init_update() if error: self.flash(error, type='danger') self.redirect(self.url(self.context, '@@index')) return xmldict = {} provider_amt = 400.0 if self.applicant.applicant_id.startswith('pg'): xmldict['institution_acct'] = '0031716030' xmldict['institution_bank_id'] = '10' elif self.applicant.applicant_id.startswith('dp'): xmldict['institution_acct'] = '9201805071' xmldict['institution_bank_id'] = '17' elif self.applicant.applicant_id.startswith('pt'): xmldict['institution_acct'] = '9201805071' xmldict['institution_bank_id'] = '17' else: xmldict['institution_acct'] = '1005999782' xmldict['institution_bank_id'] = '7' 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.p_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 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