[5164] | 1 | ## Script (Python) "interswitch_cb2" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters= |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: interswitch_cb2.py 5182 2010-04-30 14:12:57Z henrik $ |
---|
| 11 | """ |
---|
| 12 | payment callback |
---|
| 13 | """ |
---|
| 14 | try: |
---|
| 15 | from Products.zdb import set_trace |
---|
| 16 | except: |
---|
| 17 | def set_trace(): |
---|
| 18 | pass |
---|
| 19 | import logging |
---|
[5182] | 20 | logger = logging.getLogger('Skins.interswitch_cb2') |
---|
[5164] | 21 | from AccessControl import Unauthorized |
---|
| 22 | import DateTime |
---|
| 23 | |
---|
| 24 | if context.portal_membership.isAnonymousUser(): |
---|
| 25 | return None |
---|
| 26 | |
---|
| 27 | request = context.REQUEST |
---|
| 28 | students = context.portal_url.getPortalObject().campus.students |
---|
| 29 | wftool = context.portal_workflow |
---|
| 30 | mtool = context.portal_membership |
---|
| 31 | member = mtool.getAuthenticatedMember() |
---|
| 32 | member_id = str(member) |
---|
| 33 | #student_id = context.getStudentId() |
---|
| 34 | access_info = context.waeup_tool.getAccessInfo(context) |
---|
| 35 | student_id = access_info['student_id'] |
---|
| 36 | if not context.isSectionOfficer() and (student_id is None or student_id != member_id): |
---|
| 37 | logger.info('%s tried to access payment object of %s' % (member_id,student_id)) |
---|
| 38 | referer = request.get('HTTP_REFERER','none') |
---|
| 39 | logger.info('%s:%s illegal access, referer = %s' % (member_id,student_id,referer)) |
---|
| 40 | real_ip = request.get('HTTP_X_REAL_IP',"none") |
---|
| 41 | logger.info('%s:%s illegal access, real_x_ip = %s' % (member_id,student_id,real_ip)) |
---|
| 42 | return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
| 43 | |
---|
| 44 | referer = request.get('HTTP_REFERER','none') |
---|
| 45 | real_ip = request.get('HTTP_X_REAL_IP',"none") |
---|
| 46 | logger.info('%s, callback referer = %s, IP = %s' % (student_id,referer,real_ip)) |
---|
| 47 | |
---|
| 48 | if not 'webpay.interswitchng.com' in referer and not 'waeup.org' in referer: |
---|
| 49 | logger.info('%s, wrong callback referer %s, callback rejected, IP = %s' % (student_id,referer,real_ip)) |
---|
| 50 | return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url()) |
---|
| 51 | |
---|
| 52 | student = getattr(students,student_id) |
---|
| 53 | resp_codes = (("desc","resp_desc"), |
---|
| 54 | ("resp","resp_code"), |
---|
| 55 | ("txnRef","pay_reference"), |
---|
| 56 | ("payRef","resp_pay_reference"), |
---|
| 57 | ("retRef","retRef"), |
---|
| 58 | ("cardNum","resp_card_num"), |
---|
| 59 | ("apprAmt","resp_approved_amount"), |
---|
| 60 | ) |
---|
| 61 | pd = {} |
---|
| 62 | for rc,pdk in resp_codes: |
---|
| 63 | pd[pdk] = request.get(rc,'') |
---|
| 64 | |
---|
| 65 | ## for testing purposes |
---|
| 66 | #pd['resp_desc'] = 'Simulated Callback' |
---|
| 67 | #pd['resp_pay_reference'] = 'XXXX' |
---|
| 68 | #pd['resp_code'] = '00' |
---|
| 69 | #pd['resp_card_num'] = '0000' |
---|
| 70 | #pd['resp_approved_amount'] = '99999999999999' |
---|
| 71 | |
---|
| 72 | if pd['resp_code'] == '00' and len(pd['resp_approved_amount']) > 4: |
---|
| 73 | pd['resp_approved_amount'] = pd['resp_approved_amount'][:-2] |
---|
| 74 | pd['status'] = 'paid' |
---|
| 75 | else: |
---|
| 76 | pd['resp_approved_amount'] = '0' |
---|
| 77 | pd['status'] = 'failed' |
---|
| 78 | |
---|
| 79 | review_state = wftool.getInfoFor(context,'review_state',None) |
---|
| 80 | if pd['resp_code'] == '': |
---|
| 81 | logger.info('%s requeried payment %s for %s and got empty response' % (member,context.getId(),student_id)) |
---|
| 82 | return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url()) |
---|
| 83 | if access_info['is_student'] and review_state == 'closed': |
---|
| 84 | wftool.doActionFor(context,'open') |
---|
| 85 | pay_doc = context.getContent() |
---|
| 86 | resp = pd['resp_code'] |
---|
| 87 | |
---|
| 88 | if resp == '00': |
---|
| 89 | try: |
---|
| 90 | amount = int(getattr(pay_doc,'amount',0)) |
---|
| 91 | surcharge = int(getattr(pay_doc,'surcharge',0)) |
---|
| 92 | resp_approved_amount = int(pd['resp_approved_amount']) |
---|
| 93 | #set_trace() |
---|
| 94 | if amount + surcharge != resp_approved_amount: |
---|
| 95 | logger.info('Warning: %s, approved amount %s and authorized amount %s are different for payment %s of %s' % (member,resp_approved_amount,amount+surcharge,context.getId(),student_id)) |
---|
| 96 | pd['status'] = 'failed' |
---|
| 97 | pd['resp_desc'] = 'Warning: approved amount in callback does not match!' |
---|
| 98 | resp = '' |
---|
| 99 | else: |
---|
| 100 | pass |
---|
| 101 | except: |
---|
| 102 | logger.info('%s: approved amount could not be verified for payment %s of %s' % (member,context.getId(),student_id)) |
---|
| 103 | pd['status'] = 'failed' |
---|
| 104 | pd['resp_desc'] = 'Warning: approved amount could not be verified!' |
---|
| 105 | resp = '' |
---|
| 106 | |
---|
| 107 | pay_doc.edit(mapping = pd) |
---|
| 108 | |
---|
| 109 | if resp == '00': |
---|
| 110 | logger.info('%s received valid callback' % student_id) |
---|
| 111 | logger.info('%s paid second instalment' % student_id) |
---|
| 112 | else: |
---|
| 113 | logger.info('%s received unsuccessful callback: %s' % (student_id,pd['resp_desc'])) |
---|
| 114 | |
---|
| 115 | review_state = wftool.getInfoFor(context,'review_state',None) |
---|
| 116 | if review_state == 'opened': |
---|
| 117 | wftool.doActionFor(context,'close') |
---|
| 118 | |
---|
| 119 | return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url()) |
---|
| 120 | |
---|