source: main/waeup.fceokene/trunk/src/waeup/fceokene/interswitch/browser.py @ 15343

Last change on this file since 15343 was 15271, checked in by Henrik Bettermann, 6 years ago

Enable Remita payment gateway.

  • Property svn:keywords set to Id
File size: 8.2 KB
RevLine 
[7894]1## $Id: browser.py 15271 2018-12-18 07:45:14Z 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##
[7898]18import httplib
[7894]19import grok
[9784]20from kofacustom.nigeria.interswitch.browser import (
21    InterswitchPaymentRequestWebservicePageApplicant,
[11635]22    InterswitchPaymentRequestWebservicePageStudent,
[13589]23    InterswitchPaymentVerifyWebservicePageApplicant,
24    InterswitchPaymentVerifyWebservicePageStudent,
[11635]25    InterswitchPageStudent, InterswitchPageApplicant,
[15271]26    module_activated,
[9784]27    )
[8460]28from waeup.fceokene.students.interfaces import ICustomStudentOnlinePayment
29from waeup.fceokene.applicants.interfaces import ICustomApplicantOnlinePayment
30from waeup.fceokene.interfaces import MessageFactory as _
[7894]31
[8644]32PRODUCT_ID = '83'
[8460]33SITE_NAME = 'fceokene-kofa.waeup.org'
[15144]34PROVIDER_ACCT = '0773411069'
[8641]35PROVIDER_BANK_ID = '31'
[15271]36PROVIDER_ITEM_NAME = 'WAeAC'
[8460]37INSTITUTION_NAME = 'FCEOkene'
[13752]38INSTITUTION_ACCT = '2003670143'
39INSTITUTION_BANK_ID = '8'
[7894]40CURRENCY = '566'
[9780]41GATEWAY_AMT = 150.0
[8401]42#QUERY_URL = 'https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx'
[8293]43#QUERY_URL = 'https://testwebpay.interswitchng.com/test_paydirect/services/TransactionQueryURL.aspx'
[8385]44POST_ACTION = 'https://webpay.interswitchng.com/paydirect/webpay/pay.aspx'
[8293]45#POST_ACTION = 'https://testwebpay.interswitchng.com/test_paydirect/webpay/pay.aspx'
[7894]46
[8293]47HOST = 'webpay.interswitchng.com'
48#HOST = 'testwebpay.interswitchng.com'
49URL = '/paydirect/services/TransactionQueryWs.asmx'
50#URL = '/test_paydirect/services/TransactionQueryWs.asmx'
[7898]51httplib.HTTPConnection.debuglevel = 0
52
[11635]53class CustomInterswitchPageStudent(InterswitchPageStudent):
[7894]54    """ View which sends a POST request to the Interswitch
55    CollegePAY payment gateway.
56    """
[8255]57    grok.context(ICustomStudentOnlinePayment)
[7894]58    action = POST_ACTION
59    site_name = SITE_NAME
60    currency = CURRENCY
[9613]61    pay_item_id = ''
[7894]62    product_id = PRODUCT_ID
63
64    def update(self):
[15271]65        if not module_activated(self.context.student.current_session):
66            return
[11649]67        error = self.init_update()
68        if error:
69            self.flash(error, type='danger')
70            self.redirect(self.url(self.context, '@@index'))
71            return
72        student = self.student
73        xmldict = self.xmldict
[8263]74        # Provider data
[9780]75        provider_amt = 1600.0
[8263]76        xmldict['detail_ref'] = self.context.p_id
77        xmldict['provider_acct'] = PROVIDER_ACCT
78        xmldict['provider_bank_id'] = PROVIDER_BANK_ID
79        xmldict['provider_item_name'] = PROVIDER_ITEM_NAME
[9780]80        xmldict['provider_amt'] = 100 * provider_amt
[8263]81        # Institution data
[13752]82        xmldict['institution_acct'] = INSTITUTION_ACCT
83        xmldict['institution_bank_id'] = INSTITUTION_BANK_ID
[9613]84        xmldict['institution_item_name'] = self.category
85        xmldict['institution_name'] = INSTITUTION_NAME
[11919]86        if self.context.p_category in ('schoolfee', 'third_semester'):
[9613]87            self.pay_item_id = '8302'
88        elif 'maintenance' in self.context.p_category:
[9780]89            provider_amt = 0.0
[9613]90            self.pay_item_id = '8300'
[9956]91        elif self.context.p_category == 'clearance':
92            provider_amt = 0.0
93            self.pay_item_id = '8304'
[13752]94        xmldict['institution_amt'] = 100 * (
95            self.context.amount_auth - GATEWAY_AMT - provider_amt)
96        if provider_amt:
[9613]97            xmltext = """<payment_item_detail>
[8263]98<item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s">
99<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" />
[13752]100<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" />
[8263]101</item_details>
102</payment_item_detail>""" % xmldict
[9956]103        else:
[9613]104            xmltext = """<payment_item_detail>
105<item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s">
106<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" />
107</item_details>
108</payment_item_detail>""" % xmldict
109
[8263]110        self.xml_data = """<input type="hidden" name="xml_data" value='%s'  />""" % xmltext
[9780]111        self.context.provider_amt = provider_amt
112        self.context.gateway_amt = GATEWAY_AMT
[7894]113        return
114
[11635]115class CustomInterswitchPageApplicant(InterswitchPageApplicant):
[8256]116    """ View which sends a POST request to the Interswitch
117    CollegePAY payment gateway.
118    """
119    grok.context(ICustomApplicantOnlinePayment)
[8263]120    action = POST_ACTION
121    site_name = SITE_NAME
122    currency = CURRENCY
[8644]123    pay_item_id = '8303'
[8263]124    product_id = PRODUCT_ID
[8256]125
126    def update(self):
[15271]127        if not module_activated(self.context.__parent__.__parent__.year):
128            return
[12976]129        error = self.init_update()
130        if error:
131            self.flash(error, type='danger')
132            self.redirect(self.url(self.context, '@@index'))
133            return
[8256]134        xmldict = {}
[8263]135        # Provider data
[9780]136        provider_amt = 500.0
[11635]137        xmldict['detail_ref'] = self.context.p_id
[9780]138        xmldict['provider_amt'] = 100 * provider_amt
[8263]139        xmldict['provider_acct'] = PROVIDER_ACCT
140        xmldict['provider_bank_id'] = PROVIDER_BANK_ID
141        xmldict['provider_item_name'] = PROVIDER_ITEM_NAME
142        # Institution data
[13752]143        xmldict['institution_acct'] = INSTITUTION_ACCT
144        xmldict['institution_bank_id'] = INSTITUTION_BANK_ID
[9780]145        xmldict['institution_amt'] = 100 * (self.context.amount_auth -
146            provider_amt - GATEWAY_AMT)
[8263]147        xmldict['institution_item_name'] = self.context.p_category
148        xmldict['institution_name'] = INSTITUTION_NAME
149        # Interswitch amount is not part of the xml data
150        xmltext = """<payment_item_detail>
151<item_details detail_ref="%(detail_ref)s" college="%(institution_name)s">
152<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" />
153<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" />
154</item_details>
155</payment_item_detail>""" % xmldict
156        self.xml_data = """<input type="hidden" name="xml_data" value='%s'  />""" % xmltext
[9780]157        self.context.provider_amt = provider_amt
158        self.context.gateway_amt = GATEWAY_AMT
[8256]159        return
160
[7894]161
[11635]162class CustomInterswitchPaymentRequestWebservicePageStudent(
[9784]163    InterswitchPaymentRequestWebservicePageStudent):
[13589]164    """Request webservice view for the CollegePAY gateway
[7919]165    """
[8255]166    grok.context(ICustomStudentOnlinePayment)
[9784]167    product_id = PRODUCT_ID
168    gateway_host = HOST
169    gateway_url = URL
[7919]170
[13589]171class CustomInterswitchPaymentVerifyWebservicePageStudent(
172    InterswitchPaymentVerifyWebservicePageStudent):
173    """Payment verify view for the CollegePAY gateway
174    """
175    grok.context(ICustomStudentOnlinePayment)
176    product_id = PRODUCT_ID
177    gateway_host = HOST
178    gateway_url = URL
179
[11635]180class CustomInterswitchPaymentRequestWebservicePageApplicant(
[9784]181    InterswitchPaymentRequestWebservicePageApplicant):
[13589]182    """Request webservice view for the CollegePAY gateway
[8256]183    """
184    grok.context(ICustomApplicantOnlinePayment)
[9784]185    product_id = PRODUCT_ID
186    gateway_host = HOST
187    gateway_url = URL
[13589]188
189class CustomInterswitchPaymentVerifyWebservicePageApplicant(
190    InterswitchPaymentVerifyWebservicePageApplicant):
191    """Payment verify view for the CollegePAY gateway
192    """
193    grok.context(ICustomApplicantOnlinePayment)
194    product_id = PRODUCT_ID
195    gateway_host = HOST
196    gateway_url = URL
Note: See TracBrowser for help on using the repository browser.