[7929] | 1 | ## $Id: browser.py 10070 2013-04-09 15:36:33Z 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 | from datetime import datetime |
---|
| 19 | import httplib |
---|
[10070] | 20 | import urllib |
---|
[10069] | 21 | import urllib2 |
---|
[7929] | 22 | from xml.dom.minidom import parseString |
---|
| 23 | import grok |
---|
[8704] | 24 | from zope.component import getUtility |
---|
| 25 | from zope.catalog.interfaces import ICatalog |
---|
[8698] | 26 | from waeup.kofa.interfaces import IUniversity |
---|
[10032] | 27 | from waeup.kofa.payments.interfaces import IPayer |
---|
| 28 | from waeup.kofa.webservices import PaymentDataWebservice |
---|
[7929] | 29 | from waeup.kofa.browser.layout import KofaPage, UtilityView |
---|
[8430] | 30 | from waeup.kofa.students.viewlets import ApprovePaymentActionButton as APABStudent |
---|
| 31 | from waeup.kofa.applicants.viewlets import ApprovePaymentActionButton as APABApplicant |
---|
[8710] | 32 | from waeup.aaue.interfaces import academic_sessions_vocab |
---|
[9904] | 33 | from kofacustom.nigeria.interswitch.browser import ( |
---|
| 34 | InterswitchActionButtonStudent, |
---|
| 35 | InterswitchRequestWebserviceActionButtonStudent, |
---|
| 36 | InterswitchActionButtonApplicant, |
---|
| 37 | InterswitchRequestWebserviceActionButtonApplicant) |
---|
[8444] | 38 | from waeup.aaue.interfaces import MessageFactory as _ |
---|
| 39 | from waeup.aaue.students.interfaces import ICustomStudentOnlinePayment |
---|
| 40 | from waeup.aaue.applicants.interfaces import ICustomApplicantOnlinePayment |
---|
[7929] | 41 | |
---|
[10032] | 42 | class CustomPaymentDataWebservice(PaymentDataWebservice): |
---|
| 43 | """A simple webservice to publish payment and payer details on request from |
---|
| 44 | accepted IP addresses without authentication. |
---|
[8746] | 45 | |
---|
[10032] | 46 | Etranzact is asking for the PAYEE_ID which is indeed misleading. |
---|
| 47 | These are not the data of the payee but of the payer. And it's |
---|
| 48 | not the id of the payer but of the payment. |
---|
| 49 | """ |
---|
| 50 | grok.name('feerequest') |
---|
[8769] | 51 | |
---|
[10032] | 52 | #ACCEPTED_IP = ('195.219.3.181', '195.219.3.184') |
---|
| 53 | ACCEPTED_IP = None |
---|
[8698] | 54 | |
---|
| 55 | def update(self, PAYEE_ID=None): |
---|
[9508] | 56 | if PAYEE_ID == None: |
---|
| 57 | self.output = '-1' |
---|
| 58 | return |
---|
[8746] | 59 | real_ip = self.request.get('HTTP_X_FORWARDED_FOR', None) |
---|
[8769] | 60 | # We can forego the logging once eTranzact payments run smoothly |
---|
| 61 | # and the accepted IP addresses are used. |
---|
| 62 | if real_ip: |
---|
[10032] | 63 | self.context.logger.info('PaymentDataWebservice called: %s' % real_ip) |
---|
| 64 | if real_ip and self.ACCEPTED_IP: |
---|
| 65 | if real_ip not in self.ACCEPTED_IP: |
---|
[8746] | 66 | self.output = '-4' |
---|
| 67 | return |
---|
[8754] | 68 | |
---|
| 69 | # It seems eTranzact sends a POST request with an empty body but the URL |
---|
| 70 | # contains a query string. So it's actually a GET request pretended |
---|
| 71 | # to be a POST request. Although this does not comply with the |
---|
| 72 | # RFC 2616 HTTP guidelines we may try to fetch the id from the QUERY_STRING |
---|
| 73 | # value of the request. |
---|
| 74 | #if PAYEE_ID is None: |
---|
| 75 | # try: |
---|
| 76 | # PAYEE_ID = self.request['QUERY_STRING'].split('=')[1] |
---|
| 77 | # except: |
---|
| 78 | # self.output = '-2' |
---|
| 79 | # return |
---|
| 80 | |
---|
[8704] | 81 | cat = getUtility(ICatalog, name='payments_catalog') |
---|
| 82 | results = list(cat.searchResults(p_id=(PAYEE_ID, PAYEE_ID))) |
---|
| 83 | if len(results) != 1: |
---|
| 84 | self.output = '-1' |
---|
[8746] | 85 | return |
---|
| 86 | try: |
---|
[10032] | 87 | owner = IPayer(results[0]) |
---|
[8746] | 88 | full_name = owner.display_fullname |
---|
| 89 | matric_no = owner.id |
---|
| 90 | faculty = owner.faculty |
---|
| 91 | department = owner.department |
---|
| 92 | except (TypeError, AttributeError): |
---|
| 93 | self.output = '-3' |
---|
| 94 | return |
---|
| 95 | amount = results[0].amount_auth |
---|
| 96 | payment_type = results[0].category |
---|
| 97 | programme_type = results[0].p_item |
---|
| 98 | academic_session = academic_sessions_vocab.getTerm( |
---|
| 99 | results[0].p_session).title |
---|
| 100 | status = results[0].p_state |
---|
| 101 | self.output = ( |
---|
| 102 | 'FULL_NAME=%s&' + |
---|
| 103 | 'FACULTY=%s&' + |
---|
| 104 | 'DEPARTMENT=%s&' + |
---|
| 105 | 'RETURN_TYPE=%s&' + |
---|
| 106 | 'PROGRAMME_TYPE=%s&' + |
---|
| 107 | 'PAYMENT_TYPE=%s&' + |
---|
| 108 | 'ACADEMIC_SESSION=%s&' + |
---|
| 109 | 'MATRIC_NO=%s&' + |
---|
| 110 | 'FEE_AMOUNT=%s&' + |
---|
| 111 | 'TRANSACTION_STATUS=%s') % (full_name, faculty, |
---|
| 112 | department, PAYEE_ID, programme_type, payment_type, |
---|
| 113 | academic_session, matric_no, amount, status) |
---|
[8698] | 114 | return |
---|
| 115 | |
---|
| 116 | |
---|
| 117 | # Requerying eTranzact payments |
---|
| 118 | |
---|
[8776] | 119 | TERMINAL_ID = '0330000046' |
---|
| 120 | QUERY_URL = 'https://www.etranzact.net/Query/queryPayoutletTransaction.jsp' |
---|
[8259] | 121 | |
---|
[8680] | 122 | # Test environment |
---|
[8776] | 123 | #QUERY_URL = 'http://demo.etranzact.com:8080/WebConnect/queryPayoutletTransaction.jsp' |
---|
| 124 | #TERMINAL_ID = '5009892289' |
---|
[8680] | 125 | |
---|
[8430] | 126 | def query_etranzact(confirmation_number, payment): |
---|
| 127 | |
---|
[8247] | 128 | postdict = {} |
---|
| 129 | postdict['TERMINAL_ID'] = TERMINAL_ID |
---|
| 130 | #postdict['RESPONSE_URL'] = 'http://dummy' |
---|
| 131 | postdict['CONFIRMATION_NO'] = confirmation_number |
---|
[10070] | 132 | data = urllib.urlencode(postdict) |
---|
[8682] | 133 | payment.conf_number = confirmation_number |
---|
[8247] | 134 | try: |
---|
[10069] | 135 | # eTranzact only accepts HTTP 1.1 requests. Therefore |
---|
| 136 | # the urllib2 package is required here. |
---|
| 137 | f = urllib2.urlopen(url=QUERY_URL, data=data) |
---|
[8247] | 138 | success = f.read() |
---|
[8432] | 139 | success = success.replace('\r\n','') |
---|
[9935] | 140 | if 'CUSTOMER_ID' not in success: |
---|
[8430] | 141 | msg = _('Invalid or unsuccessful callback: ${a}', |
---|
| 142 | mapping = {'a': success}) |
---|
| 143 | log = 'invalid callback for payment %s: %s' % (payment.p_id, success) |
---|
[8247] | 144 | payment.p_state = 'failed' |
---|
[8430] | 145 | return False, msg, log |
---|
[8247] | 146 | success = success.replace('%20',' ').split('&') |
---|
| 147 | # We expect at least two parameters |
---|
| 148 | if len(success) < 2: |
---|
[8430] | 149 | msg = _('Invalid callback: ${a}', mapping = {'a': success}) |
---|
| 150 | log = 'invalid callback for payment %s: %s' % (payment.p_id, success) |
---|
[8247] | 151 | payment.p_state = 'failed' |
---|
[8430] | 152 | return False, msg, log |
---|
[8247] | 153 | try: |
---|
| 154 | success_dict = dict([tuple(i.split('=')) for i in success]) |
---|
| 155 | except ValueError: |
---|
[8430] | 156 | msg = _('Invalid callback: ${a}', mapping = {'a': success}) |
---|
| 157 | log = 'invalid callback for payment %s: %s' % (payment.p_id, success) |
---|
[8247] | 158 | payment.p_state = 'failed' |
---|
[8430] | 159 | return False, msg, log |
---|
[8247] | 160 | except IOError: |
---|
[8430] | 161 | msg = _('eTranzact IOError') |
---|
| 162 | log = 'eTranzact IOError' |
---|
| 163 | return False, msg, log |
---|
[8247] | 164 | payment.r_code = u'ET' |
---|
[9327] | 165 | payment.r_company = u'etranzact' |
---|
[8247] | 166 | payment.r_desc = u'%s' % success_dict.get('TRANS_DESCR') |
---|
| 167 | payment.r_amount_approved = float(success_dict.get('TRANS_AMOUNT',0.0)) |
---|
| 168 | payment.r_card_num = None |
---|
| 169 | payment.r_pay_reference = u'%s' % success_dict.get('RECEIPT_NO') |
---|
| 170 | if payment.r_amount_approved != payment.amount_auth: |
---|
[8430] | 171 | msg = _('Wrong amount') |
---|
| 172 | log = 'wrong callback for payment %s: %s' % (payment.p_id, success) |
---|
[8247] | 173 | payment.p_state = 'failed' |
---|
[8430] | 174 | return False, msg, log |
---|
[9935] | 175 | customer_id = success_dict.get('CUSTOMER_ID') |
---|
| 176 | if payment.p_id != customer_id: |
---|
[8717] | 177 | msg = _('Wrong payment id') |
---|
[8430] | 178 | log = 'wrong callback for payment %s: %s' % (payment.p_id, success) |
---|
[8247] | 179 | payment.p_state = 'failed' |
---|
[8430] | 180 | return False, msg, log |
---|
| 181 | log = 'valid callback for payment %s: %s' % (payment.p_id, success) |
---|
| 182 | msg = _('Successful callback received') |
---|
[8247] | 183 | payment.p_state = 'paid' |
---|
[8433] | 184 | payment.payment_date = datetime.utcnow() |
---|
[8430] | 185 | return True, msg, log |
---|
[8247] | 186 | |
---|
[8430] | 187 | class EtranzactEnterPinActionButtonApplicant(APABApplicant): |
---|
[8253] | 188 | grok.context(ICustomApplicantOnlinePayment) |
---|
[8430] | 189 | grok.require('waeup.payApplicant') |
---|
[8259] | 190 | grok.order(3) |
---|
[7929] | 191 | icon = 'actionicon_call.png' |
---|
| 192 | text = _('Query eTranzact History') |
---|
[7976] | 193 | target = 'enterpin' |
---|
[7929] | 194 | |
---|
[8430] | 195 | class EtranzactEnterPinActionButtonStudent(APABStudent): |
---|
[8253] | 196 | grok.context(ICustomStudentOnlinePayment) |
---|
[8430] | 197 | grok.require('waeup.payStudent') |
---|
[8259] | 198 | grok.order(3) |
---|
[8247] | 199 | icon = 'actionicon_call.png' |
---|
| 200 | text = _('Query eTranzact History') |
---|
| 201 | target = 'enterpin' |
---|
| 202 | |
---|
| 203 | class EtranzactEnterPinPageStudent(KofaPage): |
---|
[7976] | 204 | """ |
---|
| 205 | """ |
---|
[8253] | 206 | grok.context(ICustomStudentOnlinePayment) |
---|
[7976] | 207 | grok.name('enterpin') |
---|
| 208 | grok.template('enterpin') |
---|
[7929] | 209 | grok.require('waeup.payStudent') |
---|
| 210 | |
---|
[7976] | 211 | buttonname = _('Submit to eTranzact') |
---|
| 212 | label = _('Requery eTranzact History') |
---|
| 213 | action = 'query_history' |
---|
[7929] | 214 | |
---|
[8247] | 215 | class EtranzactEnterPinPageApplicant(EtranzactEnterPinPageStudent): |
---|
| 216 | """ |
---|
| 217 | """ |
---|
| 218 | grok.require('waeup.payApplicant') |
---|
[8253] | 219 | grok.context(ICustomApplicantOnlinePayment) |
---|
[8247] | 220 | |
---|
| 221 | class EtranzactQueryHistoryPageStudent(UtilityView, grok.View): |
---|
[7929] | 222 | """ Query history of eTranzact payments |
---|
| 223 | """ |
---|
[8253] | 224 | grok.context(ICustomStudentOnlinePayment) |
---|
[7929] | 225 | grok.name('query_history') |
---|
| 226 | grok.require('waeup.payStudent') |
---|
| 227 | |
---|
| 228 | def update(self, confirmation_number=None): |
---|
| 229 | if self.context.p_state == 'paid': |
---|
| 230 | self.flash(_('This ticket has already been paid.')) |
---|
| 231 | return |
---|
[8763] | 232 | student = self.context.student |
---|
[8430] | 233 | success, msg, log = query_etranzact(confirmation_number,self.context) |
---|
[8764] | 234 | student.writeLogMessage(self, log) |
---|
[8430] | 235 | if not success: |
---|
| 236 | self.flash(msg) |
---|
| 237 | return |
---|
| 238 | success, msg, log = self.context.doAfterStudentPayment() |
---|
| 239 | if log is not None: |
---|
[8764] | 240 | student.writeLogMessage(self, log) |
---|
[8430] | 241 | self.flash(msg) |
---|
[8247] | 242 | return |
---|
[7929] | 243 | |
---|
[8247] | 244 | def render(self): |
---|
| 245 | self.redirect(self.url(self.context, '@@index')) |
---|
| 246 | return |
---|
[7929] | 247 | |
---|
[8247] | 248 | class EtranzactQueryHistoryPageApplicant(UtilityView, grok.View): |
---|
| 249 | """ Query history of eTranzact payments |
---|
| 250 | """ |
---|
[8253] | 251 | grok.context(ICustomApplicantOnlinePayment) |
---|
[8247] | 252 | grok.name('query_history') |
---|
| 253 | grok.require('waeup.payApplicant') |
---|
| 254 | |
---|
| 255 | def update(self, confirmation_number=None): |
---|
[8430] | 256 | ob_class = self.__implemented__.__name__ |
---|
[8247] | 257 | if self.context.p_state == 'paid': |
---|
| 258 | self.flash(_('This ticket has already been paid.')) |
---|
[7929] | 259 | return |
---|
[8247] | 260 | applicant = self.context.__parent__ |
---|
[8430] | 261 | success, msg, log = query_etranzact(confirmation_number,self.context) |
---|
[8769] | 262 | applicant.writeLogMessage(self, log) |
---|
[8430] | 263 | if not success: |
---|
| 264 | self.flash(msg) |
---|
| 265 | return |
---|
| 266 | success, msg, log = self.context.doAfterApplicantPayment() |
---|
| 267 | if log is not None: |
---|
[8769] | 268 | applicant.writeLogMessage(self, log) |
---|
[8430] | 269 | self.flash(msg) |
---|
[7929] | 270 | return |
---|
| 271 | |
---|
| 272 | def render(self): |
---|
| 273 | self.redirect(self.url(self.context, '@@index')) |
---|
[8259] | 274 | return |
---|
[9904] | 275 | |
---|
| 276 | # Disable Interswitch viewlets. This could be avoided by defining the |
---|
| 277 | # action button viewlets of kofacustom.nigeria.interswitch.browser in the |
---|
| 278 | # context of INigeriaStudentOnlinePayment or INigeriaApplicantOnlinePayment |
---|
| 279 | # respectively. But then all interswitch.browser modules have to be extended. |
---|
| 280 | |
---|
| 281 | class InterswitchActionButtonStudent(InterswitchActionButtonStudent): |
---|
| 282 | |
---|
| 283 | @property |
---|
| 284 | def target_url(self): |
---|
| 285 | return '' |
---|
| 286 | |
---|
| 287 | class InterswitchRequestWebserviceActionButtonStudent( |
---|
| 288 | InterswitchRequestWebserviceActionButtonStudent): |
---|
| 289 | |
---|
| 290 | @property |
---|
| 291 | def target_url(self): |
---|
| 292 | return '' |
---|
| 293 | |
---|
| 294 | class InterswitchActionButtonApplicant(InterswitchActionButtonApplicant): |
---|
| 295 | |
---|
| 296 | @property |
---|
| 297 | def target_url(self): |
---|
| 298 | return '' |
---|
| 299 | |
---|
| 300 | class InterswitchRequestWebserviceActionButtonApplicant( |
---|
| 301 | InterswitchRequestWebserviceActionButtonApplicant): |
---|
| 302 | |
---|
| 303 | @property |
---|
| 304 | def target_url(self): |
---|
| 305 | return '' |
---|