source: WAeUP_SRP/trunk/skins/waeup_student/getClearanceInfo.py @ 1073

Last change on this file since 1073 was 1073, checked in by joachim, 18 years ago

clearance_edit speed improvments.

  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
1## Script (Python) "getStudentInfo"
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: getClearanceInfo.py 1073 2006-12-17 16:39:44Z joachim $
11"""
12return Info about the current Student
13"""
14import logging
15logger = logging.getLogger('getApplicationInfo')
16
17request = context.REQUEST
18mtool = context.portal_membership
19wf = context.portal_workflow
20member = mtool.getAuthenticatedMember()
21member_id = str(member)
22path_info = request.get('PATH_INFO').split('/')
23
24if mtool.isAnonymousUser():
25    return None
26info = {}
27#from Products.zdb import set_trace
28#set_trace()
29requested_id = context.getStudentId()
30if requested_id and not context.isStaff() and member_id != requested_id:
31    logger.info('"%s", "tried to access", "%s"' % (member_id,requested_id))
32    return None
33elif context.isStaff():
34    student_id = requested_id
35else:
36    student_id = member_id
37
38
39students_object = context.portal_url.getPortalObject().campus.students
40student = getattr(students_object, student_id)
41info['id'] = student_id
42info['student'] = student
43info['review_state'] = wf.getInfoFor(student,'review_state',None)
44info['app'] = student.application
45info['app_doc'] = student.application.getContent()
46info['clear'] = student.clearance
47info['clear_doc'] = student.clearance.getContent()
48info['clear_review_state'] = wf.getInfoFor(student.clearance,'review_state',None)
49return info
Note: See TracBrowser for help on using the repository browser.