[10765] | 1 | ## $Id: browser.py 12511 2015-01-23 16:05:37Z 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 | ## |
---|
| 18 | import httplib |
---|
[12479] | 19 | import hashlib |
---|
[10765] | 20 | import grok |
---|
| 21 | from kofacustom.nigeria.interswitch.browser import ( |
---|
| 22 | InterswitchPaymentRequestWebservicePageApplicant, |
---|
[11638] | 23 | InterswitchPaymentRequestWebservicePageStudent, |
---|
| 24 | InterswitchPageStudent, InterswitchPageApplicant, |
---|
[10765] | 25 | ) |
---|
| 26 | from kofacustom.skeleton.students.interfaces import ICustomStudentOnlinePayment |
---|
| 27 | from kofacustom.skeleton.applicants.interfaces import ICustomApplicantOnlinePayment |
---|
| 28 | from kofacustom.skeleton.interfaces import MessageFactory as _ |
---|
| 29 | |
---|
| 30 | PRODUCT_ID = '57' |
---|
| 31 | SITE_NAME = 'skeleton-kofa.waeup.org' |
---|
| 32 | PROVIDER_ACCT = '00000000' |
---|
| 33 | PROVIDER_BANK_ID = '00' |
---|
| 34 | PROVIDER_ITEM_NAME = 'BT Education' |
---|
| 35 | INSTITUTION_NAME = 'Skeleton' |
---|
| 36 | CURRENCY = '566' |
---|
| 37 | GATEWAY_AMT = 150.0 |
---|
| 38 | #QUERY_URL = 'https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx' |
---|
| 39 | #QUERY_URL = 'https://testwebpay.interswitchng.com/test_paydirect/services/TransactionQueryURL.aspx' |
---|
| 40 | POST_ACTION = 'https://webpay.interswitchng.com/paydirect/webpay/pay.aspx' |
---|
| 41 | #POST_ACTION = 'https://testwebpay.interswitchng.com/test_paydirect/webpay/pay.aspx' |
---|
| 42 | |
---|
| 43 | HOST = 'webpay.interswitchng.com' |
---|
| 44 | #HOST = 'testwebpay.interswitchng.com' |
---|
| 45 | URL = '/paydirect/services/TransactionQueryWs.asmx' |
---|
| 46 | #URL = '/test_paydirect/services/TransactionQueryWs.asmx' |
---|
[12479] | 47 | httplib.HTTPSConnection.debuglevel = 0 |
---|
| 48 | HTTPS = True |
---|
[10765] | 49 | |
---|
[11638] | 50 | class CustomInterswitchPageStudent(InterswitchPageStudent): |
---|
[10765] | 51 | """ View which sends a POST request to the Interswitch |
---|
| 52 | CollegePAY payment gateway. |
---|
| 53 | """ |
---|
| 54 | grok.context(ICustomStudentOnlinePayment) |
---|
| 55 | action = POST_ACTION |
---|
| 56 | site_name = SITE_NAME |
---|
| 57 | currency = CURRENCY |
---|
| 58 | product_id = PRODUCT_ID |
---|
[12479] | 59 | mac = '' |
---|
[10765] | 60 | |
---|
| 61 | def update(self): |
---|
[12511] | 62 | super(CustomInterswitchPageStudent, self).update() |
---|
[11647] | 63 | student = self.student |
---|
| 64 | xmldict = self.xmldict |
---|
[10765] | 65 | # Provider data |
---|
| 66 | xmldict['detail_ref'] = self.context.p_id |
---|
| 67 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 68 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 69 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
| 70 | # Institution data |
---|
| 71 | xmldict['institution_acct'] = '00000000' |
---|
| 72 | xmldict['institution_bank_id'] = '00' |
---|
| 73 | xmldict['institution_amt'] = '0.0' |
---|
| 74 | provider_amt = 0.0 |
---|
| 75 | self.pay_item_id = '0000' |
---|
| 76 | xmldict['provider_amt'] = 100 * provider_amt |
---|
[12511] | 77 | xmldict['institution_item_name'] = self.context.category |
---|
[10765] | 78 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
| 79 | xmldict['institution_amt'] = 100 * ( |
---|
| 80 | self.context.amount_auth - provider_amt - GATEWAY_AMT) |
---|
| 81 | # Interswitch amount is not part of the xml data |
---|
| 82 | if provider_amt == 0: |
---|
| 83 | xmltext = """<payment_item_detail> |
---|
| 84 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 85 | <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" /> |
---|
| 86 | </item_details> |
---|
| 87 | </payment_item_detail>""" % xmldict |
---|
| 88 | else: |
---|
| 89 | xmltext = """<payment_item_detail> |
---|
| 90 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s" department="%(department)s" faculty="%(faculty)s"> |
---|
| 91 | <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" /> |
---|
| 92 | <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" /> |
---|
| 93 | </item_details> |
---|
| 94 | </payment_item_detail>""" % xmldict |
---|
| 95 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
| 96 | self.context.provider_amt = provider_amt |
---|
| 97 | self.context.gateway_amt = GATEWAY_AMT |
---|
[12479] | 98 | |
---|
| 99 | hashargs = ( |
---|
| 100 | self.context.p_id + |
---|
| 101 | PRODUCT_ID + |
---|
| 102 | self.pay_item_id + |
---|
| 103 | str(int(self.amount_auth)) + |
---|
| 104 | self.site_redirect_url + |
---|
| 105 | self.mac) |
---|
| 106 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
[10765] | 107 | return |
---|
| 108 | |
---|
[11638] | 109 | class CustomInterswitchPageApplicant(InterswitchPageApplicant): |
---|
[10765] | 110 | """ View which sends a POST request to the Interswitch |
---|
| 111 | CollegePAY payment gateway. |
---|
| 112 | """ |
---|
| 113 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 114 | action = POST_ACTION |
---|
| 115 | site_name = SITE_NAME |
---|
| 116 | currency = CURRENCY |
---|
| 117 | pay_item_id = '0000' |
---|
| 118 | product_id = PRODUCT_ID |
---|
[12479] | 119 | mac = '' |
---|
[10765] | 120 | |
---|
| 121 | def update(self): |
---|
[11638] | 122 | super(CustomInterswitchPageApplicant, self).update() |
---|
[10765] | 123 | xmldict = {} |
---|
| 124 | provider_amt = 400.0 |
---|
| 125 | xmldict['institution_acct'] = '00000000000' |
---|
| 126 | xmldict['institution_bank_id'] = '00' |
---|
| 127 | xmldict['detail_ref'] = self.context.p_id |
---|
| 128 | xmldict['provider_amt'] = 100 * provider_amt |
---|
| 129 | xmldict['provider_acct'] = PROVIDER_ACCT |
---|
| 130 | xmldict['provider_bank_id'] = PROVIDER_BANK_ID |
---|
| 131 | xmldict['provider_item_name'] = PROVIDER_ITEM_NAME |
---|
| 132 | xmldict['institution_amt'] = 100 * (self.context.amount_auth - provider_amt - GATEWAY_AMT) |
---|
[12511] | 133 | xmldict['institution_item_name'] = self.context.category |
---|
[10765] | 134 | xmldict['institution_name'] = INSTITUTION_NAME |
---|
| 135 | # Interswitch amount is not part of the xml data |
---|
| 136 | xmltext = """<payment_item_detail> |
---|
| 137 | <item_details detail_ref="%(detail_ref)s" college="%(institution_name)s"> |
---|
| 138 | <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" /> |
---|
| 139 | <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" /> |
---|
| 140 | </item_details> |
---|
| 141 | </payment_item_detail>""" % xmldict |
---|
| 142 | self.xml_data = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
| 143 | self.context.provider_amt = provider_amt |
---|
| 144 | self.context.gateway_amt = GATEWAY_AMT |
---|
[12479] | 145 | |
---|
| 146 | hashargs = ( |
---|
| 147 | self.context.p_id + |
---|
| 148 | PRODUCT_ID + |
---|
| 149 | self.pay_item_id + |
---|
| 150 | str(int(self.amount_auth)) + |
---|
| 151 | self.site_redirect_url + |
---|
| 152 | self.mac) |
---|
| 153 | self.hashvalue = hashlib.sha512(hashargs).hexdigest() |
---|
[10765] | 154 | return |
---|
| 155 | |
---|
[11638] | 156 | class CustomInterswitchPaymentRequestWebservicePageStudent( |
---|
[10765] | 157 | InterswitchPaymentRequestWebservicePageStudent): |
---|
| 158 | """ Request webservice view for the CollegePAY gateway |
---|
| 159 | """ |
---|
| 160 | grok.context(ICustomStudentOnlinePayment) |
---|
| 161 | product_id = PRODUCT_ID |
---|
| 162 | gateway_host = HOST |
---|
| 163 | gateway_url = URL |
---|
[12479] | 164 | https = HTTPS |
---|
[10765] | 165 | |
---|
[11638] | 166 | class CustomInterswitchPaymentRequestWebservicePageApplicant( |
---|
[10765] | 167 | InterswitchPaymentRequestWebservicePageApplicant): |
---|
| 168 | """ Request webservice view for the CollegePAY gateway |
---|
| 169 | """ |
---|
| 170 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 171 | product_id = PRODUCT_ID |
---|
| 172 | gateway_host = HOST |
---|
[12479] | 173 | gateway_url = URL |
---|
| 174 | https = HTTPS |
---|