source: WAeUP_SRP/base/skins/waeup_student/getClearanceInfo.py @ 2809

Last change on this file since 2809 was 2670, checked in by Henrik Bettermann, 17 years ago

further modifications for session change

  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1## Script (Python) "getClearanceInfo"
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 2670 2007-11-15 22:07:14Z henrik $
11"""
12return Info about the current Student
13"""
14import logging
15logger = logging.getLogger('Skins.getClearanceInfo')
16from DateTime import DateTime
17
18request = context.REQUEST
19mtool = context.portal_membership
20wf = context.portal_workflow
21member = mtool.getAuthenticatedMember()
22member_id = str(member)
23path_info = request.get('PATH_INFO').split('/')
24
25if mtool.isAnonymousUser():
26    return None
27info = {}
28#from Products.zdb import set_trace
29#set_trace()
30requested_id = context.getStudentId()
31if requested_id and not context.isStaff() and member_id != requested_id:
32    logger.info('%s tried to access %s' % (member_id,requested_id))
33    return None
34elif context.isStaff():
35    student_id = requested_id
36else:
37    student_id = member_id
38
39
40students_object = context.portal_url.getPortalObject().campus.students
41student = getattr(students_object, student_id)
42res = context.portal_catalog(portal_type='Student',id = student_id)
43if len(res) == 0:
44    return None
45creation_date = DateTime(res[0].CreationDate)
46info['penalty'] = creation_date.lessThan(DateTime('2006/12/5'))
47info['id'] = student_id
48info['student'] = student
49info['review_state'] = context.getStudentReviewState()
50info['app'] = student.application
51info['app_doc'] = student.application.getContent()
52info['clear'] = student.clearance
53info['clear_doc'] = student.clearance.getContent()
54info['clear_review_state'] = wf.getInfoFor(student.clearance,'review_state',None)
55info['per'] = student.personal
56info['per_review_state'] = wf.getInfoFor(student.personal,'review_state',None)
57if info['review_state'] in ('clearance_requested', 'cleared_and_validated',):
58    info['penalty'] = info['penalty'] and\
59                      info['clear_doc'].entry_date.greaterThan(DateTime('2006/12/30'))
60course = getattr(student,'study_course',None)
61if course:
62    cert_id = course.getContent().study_course
63    res = context.portal_catalog(portal_type = "Certificate", id = cert_id)
64    ci = {}
65    if len(res) > 0:
66        info['course'] = course
67        brain = res[0]
68        ci['study_course'] = brain.getId
69        ci['title'] = brain.Title
70        pl = brain.getPath().split('/')
71        ci['faculty'] = pl[-4]
72        ci['department'] = pl[-3]
73        info['course_doc'] = ci
74    else:
75        info['course'] = None
76return info
Note: See TracBrowser for help on using the repository browser.