[1948] | 1 | ## Script (Python) "interswitch_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_cb.py 1992 2007-07-05 20:50:28Z 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 |
---|
[1948] | 20 | logger = logging.getLogger('Skins.interswitch_cb') |
---|
[1885] | 21 | from AccessControl import Unauthorized |
---|
| 22 | import DateTime |
---|
| 23 | if context.portal_membership.isAnonymousUser(): |
---|
| 24 | return None |
---|
| 25 | |
---|
| 26 | request = context.REQUEST |
---|
| 27 | students = context.portal_url.getPortalObject().campus.students |
---|
| 28 | wftool = context.portal_workflow |
---|
| 29 | mtool = context.portal_membership |
---|
| 30 | member = mtool.getAuthenticatedMember() |
---|
| 31 | member_id = str(member) |
---|
| 32 | student_id = context.getStudentId() |
---|
[1973] | 33 | if student_id is None: # or student_id != member_id: |
---|
[1885] | 34 | logger.info('%s tried to access payment object of %s' % (member_id,student_id)) |
---|
| 35 | referer = request.get('HTTP_REFERER','none') |
---|
| 36 | logger.info('%s:%s illegal access, referer = %s' % (member_id,student_id,referer)) |
---|
| 37 | real_ip = request.get('HTTP_X_REAL_IP',"none") |
---|
| 38 | logger.info('%s:%s illegal access, real_x_ip = %s' % (member_id,student_id,real_ip)) |
---|
| 39 | return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
| 40 | |
---|
| 41 | student = getattr(students,student_id) |
---|
| 42 | resp_codes = (("desc","resp_desc"), |
---|
| 43 | ("resp","resp_code"), |
---|
[1944] | 44 | ("txnRef","pay_reference"), |
---|
| 45 | ("payRef","resp_pay_reference"), |
---|
[1885] | 46 | ("retRef","retRef"), |
---|
[1944] | 47 | ("cardNum","resp_card_num"), |
---|
[1885] | 48 | ("apprAmt","resp_approved_amount"), |
---|
| 49 | ) |
---|
| 50 | pd = {} |
---|
| 51 | for rc,pdk in resp_codes: |
---|
[1937] | 52 | pd[pdk] = request.get(rc,'') |
---|
[1992] | 53 | |
---|
| 54 | # for testing purposes |
---|
| 55 | #pd['resp_desc'] = 'Simulated Callback' |
---|
| 56 | #pd['resp_pay_reference'] = 'XXXX' |
---|
| 57 | #pd['resp_code'] = '00' |
---|
| 58 | #pd['resp_card_num'] = '0000' |
---|
| 59 | #pd['resp_approved_amount'] = '10000' |
---|
| 60 | |
---|
[1948] | 61 | if pd['resp_code'] == '00' and len(pd['resp_approved_amount']) > 4: |
---|
[1937] | 62 | pd['resp_approved_amount'] = pd['resp_approved_amount'][:-2] |
---|
| 63 | else: |
---|
| 64 | pd['resp_approved_amount'] = '0' |
---|
[1948] | 65 | |
---|
[1944] | 66 | review_state = wftool.getInfoFor(context,'review_state',None) |
---|
| 67 | if pd['resp_code'] == '' and review_state == 'opened': |
---|
| 68 | logger.info('%s requeried payment %s and got empty response' % (student_id,context.getId())) |
---|
| 69 | wftool.doActionFor(context,'close') |
---|
| 70 | return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url()) |
---|
| 71 | context.getContent().edit(mapping = pd) |
---|
[1885] | 72 | resp = pd['resp_code'] |
---|
[1992] | 73 | |
---|
| 74 | s_brain = context.students_catalog(id=student_id)[0] |
---|
| 75 | session = s_brain.session |
---|
| 76 | next_session, next_session_str = context.getNextSessionId(session) |
---|
| 77 | |
---|
[1885] | 78 | if resp == '00': |
---|
[1892] | 79 | if context.getStudentReviewState() == "school_fee_paid": |
---|
| 80 | logger.info('%s paid school_fee in state school_fee_paid' % (student_id)) |
---|
| 81 | else: |
---|
[1992] | 82 | if next_session == context.getSessionId()[-2:]: |
---|
| 83 | wftool.doActionFor(student,'pay_school_fee') |
---|
| 84 | else: |
---|
| 85 | study_course = getattr(student,'study_course') |
---|
| 86 | try: |
---|
| 87 | wftool.doActionFor(study_course,'open') |
---|
| 88 | except: |
---|
| 89 | pass |
---|
| 90 | study_course_doc = study_course.getContent() |
---|
| 91 | next_level = "%s" % (int(s_brain.level) + 100) |
---|
| 92 | study_course_doc.edit(mapping= {'current_level': next_level, |
---|
| 93 | 'current_session': next_session,}) |
---|
[1885] | 94 | logger.info('%s received valid callback' % student_id) |
---|
| 95 | referer = request.get('HTTP_REFERER','none') |
---|
| 96 | logger.info('%s valid callback referer = %s' % (student_id,referer)) |
---|
| 97 | real_ip = request.get('HTTP_X_REAL_IP',"none") |
---|
| 98 | logger.info('%s valid callback real_ip = %s' % (student_id,real_ip)) |
---|
| 99 | |
---|
| 100 | else: |
---|
[1956] | 101 | logger.info('%s received unsuccessfull callback: %s' % (student_id,pd['resp_desc'])) |
---|
[1885] | 102 | try: |
---|
| 103 | wftool.doActionFor(context,'close') |
---|
| 104 | except: |
---|
| 105 | logger.info('%s no workflow action close' % student_id) |
---|
| 106 | |
---|
[1948] | 107 | |
---|
[1885] | 108 | return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url()) |
---|