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

Last change on this file since 3820 was 3619, checked in by Henrik Bettermann, 16 years ago

change permissions

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