[2857] | 1 | ## Script (Python) "interswitch_acco_cb" |
---|
[1885] | 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_acco_cb.py 2964 2007-12-21 07:53:50Z henrik $ |
---|
| 11 | """ |
---|
| 12 | payment callback |
---|
| 13 | """ |
---|
[1937] | 14 | try: |
---|
| 15 | from Products.zdb import set_trace |
---|
| 16 | except: |
---|
| 17 | def set_trace(): |
---|
| 18 | pass |
---|
[1885] | 19 | import logging |
---|
[2857] | 20 | logger = logging.getLogger('Skins.interswitch_acco_cb') |
---|
[1885] | 21 | from AccessControl import Unauthorized |
---|
| 22 | import DateTime |
---|
[2857] | 23 | current = DateTime.DateTime() |
---|
| 24 | |
---|
[1885] | 25 | if context.portal_membership.isAnonymousUser(): |
---|
| 26 | return None |
---|
| 27 | |
---|
| 28 | request = context.REQUEST |
---|
| 29 | students = context.portal_url.getPortalObject().campus.students |
---|
| 30 | wftool = context.portal_workflow |
---|
| 31 | mtool = context.portal_membership |
---|
| 32 | member = mtool.getAuthenticatedMember() |
---|
| 33 | member_id = str(member) |
---|
| 34 | student_id = context.getStudentId() |
---|
[1973] | 35 | if student_id is None: # or student_id != member_id: |
---|
[1885] | 36 | logger.info('%s tried to access payment object of %s' % (member_id,student_id)) |
---|
| 37 | referer = request.get('HTTP_REFERER','none') |
---|
| 38 | logger.info('%s:%s illegal access, referer = %s' % (member_id,student_id,referer)) |
---|
| 39 | real_ip = request.get('HTTP_X_REAL_IP',"none") |
---|
| 40 | logger.info('%s:%s illegal access, real_x_ip = %s' % (member_id,student_id,real_ip)) |
---|
| 41 | return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
| 42 | |
---|
| 43 | student = getattr(students,student_id) |
---|
| 44 | resp_codes = (("desc","resp_desc"), |
---|
| 45 | ("resp","resp_code"), |
---|
[1944] | 46 | ("txnRef","pay_reference"), |
---|
| 47 | ("payRef","resp_pay_reference"), |
---|
[1885] | 48 | ("retRef","retRef"), |
---|
[1944] | 49 | ("cardNum","resp_card_num"), |
---|
[1885] | 50 | ("apprAmt","resp_approved_amount"), |
---|
| 51 | ) |
---|
| 52 | pd = {} |
---|
| 53 | for rc,pdk in resp_codes: |
---|
[1937] | 54 | pd[pdk] = request.get(rc,'') |
---|
[2895] | 55 | |
---|
| 56 | |
---|
[2891] | 57 | ## for testing purposes |
---|
[2900] | 58 | #pd['resp_desc'] = 'Simulated Callback' |
---|
| 59 | #pd['resp_pay_reference'] = 'XXXX' |
---|
| 60 | #pd['resp_code'] = '00' |
---|
| 61 | #pd['resp_card_num'] = '0000' |
---|
| 62 | #pd['resp_approved_amount'] = '10000' |
---|
[1992] | 63 | |
---|
[1948] | 64 | if pd['resp_code'] == '00' and len(pd['resp_approved_amount']) > 4: |
---|
[1937] | 65 | pd['resp_approved_amount'] = pd['resp_approved_amount'][:-2] |
---|
[2891] | 66 | pd['status'] = 'paid' |
---|
[1937] | 67 | else: |
---|
| 68 | pd['resp_approved_amount'] = '0' |
---|
[2895] | 69 | pd['status'] = 'failed' |
---|
[1948] | 70 | |
---|
[1944] | 71 | review_state = wftool.getInfoFor(context,'review_state',None) |
---|
| 72 | if pd['resp_code'] == '' and review_state == 'opened': |
---|
| 73 | logger.info('%s requeried payment %s and got empty response' % (student_id,context.getId())) |
---|
| 74 | wftool.doActionFor(context,'close') |
---|
| 75 | return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url()) |
---|
[2857] | 76 | pay_doc = context.getContent() |
---|
| 77 | pay_doc.edit(mapping = pd) |
---|
[1885] | 78 | resp = pd['resp_code'] |
---|
[1992] | 79 | |
---|
| 80 | s_brain = context.students_catalog(id=student_id)[0] |
---|
| 81 | session = s_brain.session |
---|
[2454] | 82 | #next_session, next_session_str = context.getNextSessionId(session) |
---|
[1992] | 83 | |
---|
[2895] | 84 | if pay_doc.category == 'hostel_maintenance': |
---|
[2857] | 85 | if resp == '00': |
---|
[2964] | 86 | acco_info = context.getAccommodationInfo() |
---|
[2857] | 87 | d = {} |
---|
| 88 | d['acco_maint_date'] = pay_doc.date |
---|
| 89 | d['acco_maint_fee'] = pay_doc.amount |
---|
| 90 | d['acco_maint_pay_id'] = context.getId() |
---|
| 91 | acco_info['acco_doc'].edit(mapping=d) |
---|
| 92 | referer = request.get('HTTP_REFERER','none') |
---|
| 93 | logger.info('%s valid callback referer = %s' % (student_id,referer)) |
---|
| 94 | real_ip = request.get('HTTP_X_REAL_IP',"none") |
---|
| 95 | logger.info('%s valid callback real_ip = %s' % (student_id,real_ip)) |
---|
[2957] | 96 | try: |
---|
| 97 | wftool.doActionFor(acco_info['acco'],'pay_maintenance_fee',dest_container=acco_info['acco']) |
---|
| 98 | except: |
---|
| 99 | logger.info('%s no workflow action pay_maintenance_fee' % student_id) |
---|
[2962] | 100 | #return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url()) |
---|
[1892] | 101 | else: |
---|
[2857] | 102 | logger.info('%s received unsuccessfull callback: %s' % (student_id,pd['resp_desc'])) |
---|
| 103 | try: |
---|
[2891] | 104 | wftool.doActionFor(context,'close') |
---|
| 105 | except: |
---|
[2895] | 106 | logger.info('%s no workflow action close' % student_id) |
---|
[2964] | 107 | return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url()) |
---|
[2891] | 108 | |
---|
[2895] | 109 | |
---|
[2962] | 110 | #else: |
---|
| 111 | # next_info = context.getNextInfo(s_brain) |
---|
| 112 | # next_session_id = next_info['next_session_id'] |
---|
| 113 | # next_session_str = next_info['next_session_str'] |
---|
| 114 | # next_level_id = next_info['next_level_id'] |
---|
| 115 | # next_transition = next_info['next_transition'] |
---|
| 116 | # next_verdict = next_info['next_verdict'] |
---|
| 117 | # next_previous_verdict = next_info['next_previous_verdict'] |
---|
| 118 | # |
---|
| 119 | # if resp == '00': |
---|
| 120 | # if context.getStudentReviewState() == "school_fee_paid": |
---|
| 121 | # logger.info('%s paid school_fee in state school_fee_paid' % (student_id)) |
---|
| 122 | # else: |
---|
| 123 | # study_course = getattr(student,'study_course') |
---|
| 124 | # try: |
---|
| 125 | # wftool.doActionFor(study_course,'open') |
---|
| 126 | # except: |
---|
| 127 | # pass |
---|
| 128 | # verdict = s_brain.verdict |
---|
| 129 | # if next_previous_verdict == 'N/A': |
---|
| 130 | # next_previous_verdict = '' |
---|
| 131 | # study_course.getContent().edit(mapping= {'current_level': next_level_id, |
---|
| 132 | # 'current_session': next_session_id, |
---|
| 133 | # 'current_verdict': next_verdict, |
---|
| 134 | # 'previous_verdict': next_previous_verdict, |
---|
| 135 | # }) |
---|
| 136 | # if next_transition: |
---|
| 137 | # wftool.doActionFor(student,next_transition) |
---|
[2957] | 138 | |
---|
[2962] | 139 | # logger.info('%s received valid callback' % student_id) |
---|
| 140 | # referer = request.get('HTTP_REFERER','none') |
---|
| 141 | # logger.info('%s valid callback referer = %s' % (student_id,referer)) |
---|
| 142 | # real_ip = request.get('HTTP_X_REAL_IP',"none") |
---|
| 143 | # logger.info('%s valid callback real_ip = %s' % (student_id,real_ip)) |
---|
| 144 | # else: |
---|
| 145 | # logger.info('%s received unsuccessfull callback: %s' % (student_id,pd['resp_desc'])) |
---|
| 146 | # try: |
---|
| 147 | # wftool.doActionFor(context,'close') |
---|
| 148 | # except: |
---|
| 149 | # logger.info('%s no workflow action close' % student_id) |
---|
[2891] | 150 | |
---|
| 151 | |
---|