source: WAeUP_SRP/base/skins/waeup_epayment/interswitch_acco_cb.py @ 2857

Last change on this file since 2857 was 2857, checked in by joachim, 17 years ago
  • Property svn:keywords set to Id
File size: 5.3 KB
Line 
1## Script (Python) "interswitch_acco_cb"
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 2857 2007-12-04 16:28:13Z joachim $
11"""
12payment callback
13"""
14try:
15    from Products.zdb import set_trace
16except:
17    def set_trace():
18        pass
19import logging
20logger = logging.getLogger('Skins.interswitch_acco_cb')
21from AccessControl import Unauthorized
22import DateTime
23current = DateTime.DateTime()
24
25if context.portal_membership.isAnonymousUser():
26    return None
27
28request = context.REQUEST
29students = context.portal_url.getPortalObject().campus.students
30wftool = context.portal_workflow
31mtool = context.portal_membership
32member = mtool.getAuthenticatedMember()
33member_id = str(member)
34student_id = context.getStudentId()
35if student_id is None: # or student_id != member_id:
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
43student = getattr(students,student_id)
44resp_codes = (("desc","resp_desc"),
45              ("resp","resp_code"),
46              ("txnRef","pay_reference"),
47              ("payRef","resp_pay_reference"),
48              ("retRef","retRef"),
49              ("cardNum","resp_card_num"),
50              ("apprAmt","resp_approved_amount"),
51              )
52pd = {}
53for rc,pdk in resp_codes:
54    pd[pdk] = request.get(rc,'')
55
56if pd['resp_code'] == '00' and len(pd['resp_approved_amount']) > 4:
57    pd['resp_approved_amount'] = pd['resp_approved_amount'][:-2]
58else:
59    pd['resp_approved_amount'] = '0'
60
61review_state = wftool.getInfoFor(context,'review_state',None)
62if pd['resp_code'] == '' and review_state == 'opened':
63    logger.info('%s requeried payment %s and got empty response' % (student_id,context.getId()))
64    wftool.doActionFor(context,'close')
65    return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url())
66pay_doc = context.getContent()
67pay_doc.edit(mapping = pd)
68resp = pd['resp_code']
69
70s_brain = context.students_catalog(id=student_id)[0]
71session = s_brain.session
72#next_session, next_session_str = context.getNextSessionId(session)
73
74if pay_doc.subject == 'hostel_maintenance':
75    if  resp == '00':
76        d = {}
77        acco_info = context.getAccommodationInfo()
78        d['acco_maint_date'] = pay_doc.date
79        d['acco_maint_fee'] = pay_doc.amount
80        d['acco_maint_pay_id'] = context.getId()
81        acco_info['acco_doc'].edit(mapping=d)
82        referer = request.get('HTTP_REFERER','none')
83        logger.info('%s valid callback referer = %s' % (student_id,referer))
84        real_ip = request.get('HTTP_X_REAL_IP',"none")
85        logger.info('%s valid callback real_ip = %s' % (student_id,real_ip))
86    else:
87        logger.info('%s received unsuccessfull callback: %s' % (student_id,pd['resp_desc']))
88    try:
89        wftool.doActionFor(acco_info['acco'],'pay_maintenance_fee',dest_container=acco_info['acco'])
90        return request.RESPONSE.redirect("%s/accommodation_view" % acco_info['student'].absolute_url())
91    except:
92        logger.info('%s no workflow action pay_maintainance_fee' % student_id)
93        return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url())
94   
95else:       
96    next_info = context.getNextInfo(s_brain)
97    next_session_id = next_info['next_session_id']
98    next_session_str = next_info['next_session_str']
99    next_level_id = next_info['next_level_id']
100    next_transition = next_info['next_transition']
101    next_verdict = next_info['next_verdict']
102    next_previous_verdict = next_info['next_previous_verdict']
103   
104    if  resp == '00':
105        if context.getStudentReviewState() == "school_fee_paid":
106            logger.info('%s paid school_fee in state school_fee_paid' % (student_id))
107        else:
108            study_course = getattr(student,'study_course')
109            try:
110                wftool.doActionFor(study_course,'open')
111            except:
112                pass
113            verdict = s_brain.verdict
114            if next_previous_verdict == 'N/A':
115                next_previous_verdict = ''
116            study_course.getContent().edit(mapping= {'current_level': next_level_id,
117                                                    'current_session': next_session_id,
118                                                    'current_verdict': next_verdict,
119                                                    'previous_verdict': next_previous_verdict,
120                                                    })
121            if next_transition:
122                wftool.doActionFor(student,next_transition)
123   
124        logger.info('%s received valid callback' % student_id)
125        referer = request.get('HTTP_REFERER','none')
126        logger.info('%s valid callback referer = %s' % (student_id,referer))
127        real_ip = request.get('HTTP_X_REAL_IP',"none")
128        logger.info('%s valid callback real_ip = %s' % (student_id,real_ip))
129    else:
130        logger.info('%s received unsuccessfull callback: %s' % (student_id,pd['resp_desc']))
131    try:
132        wftool.doActionFor(context,'close')
133    except:
134        logger.info('%s no workflow action close' % student_id)
135   
136
Note: See TracBrowser for help on using the repository browser.