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 | """ |
---|
12 | return Info about the current Student |
---|
13 | """ |
---|
14 | try: |
---|
15 | from Products.zdb import set_trace |
---|
16 | except: |
---|
17 | def set_trace(): |
---|
18 | pass |
---|
19 | import logging |
---|
20 | logger = logging.getLogger('Skins.getClearanceInfo') |
---|
21 | from DateTime import DateTime |
---|
22 | |
---|
23 | request = context.REQUEST |
---|
24 | mtool = context.portal_membership |
---|
25 | wf = context.portal_workflow |
---|
26 | member = mtool.getAuthenticatedMember() |
---|
27 | member_id = str(member) |
---|
28 | path_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 | |
---|
44 | info = context.waeup_tool.getAccessInfo(context) |
---|
45 | student_id = info['student_id'] |
---|
46 | if student_id is None: |
---|
47 | return None |
---|
48 | |
---|
49 | student_record = context.students_catalog.getRecordByKey(student_id) |
---|
50 | students_object = context.portal_url.getPortalObject().campus.students |
---|
51 | student = 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')) |
---|
57 | info['penalty'] = False |
---|
58 | info['id'] = student_id |
---|
59 | info['student'] = student |
---|
60 | info['student_name'] = student_record.name |
---|
61 | #info['review_state'] = context.getStudentReviewState() |
---|
62 | info['review_state'] = student_record.review_state |
---|
63 | info['app'] = student.application |
---|
64 | try: |
---|
65 | info['app_doc'] = student.application.getContent() |
---|
66 | except: |
---|
67 | return |
---|
68 | info['clear'] = student.clearance |
---|
69 | try: |
---|
70 | info['clear_doc'] = student.clearance.getContent() |
---|
71 | except: |
---|
72 | return |
---|
73 | info['clear_review_state'] = wf.getInfoFor(student.clearance,'review_state',None) |
---|
74 | info['per'] = student.personal |
---|
75 | info['per_review_state'] = wf.getInfoFor(student.personal,'review_state',None) |
---|
76 | ci = {} |
---|
77 | ci['course'] = student_record.course |
---|
78 | ci['faculty'] = student_record.faculty |
---|
79 | ci['department'] = student_record.department |
---|
80 | info['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 |
---|
100 | return info |
---|