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

Last change on this file since 15778 was 15778, checked in by Henrik Bettermann, 5 years ago

Adjust to changes in base package.

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