Last change
on this file since 11110 was
1596,
checked in by joachim, 18 years ago
|
merged changes from trunk to joachim-event-branch
|
File size:
1.3 KB
|
Line | |
---|
1 | ## Script (Python) "getStudentBaseInfo" |
---|
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: getTransferInfo.py 1339 2007-01-21 22:55:34Z henrik $ |
---|
11 | """ |
---|
12 | return Info about the current Student |
---|
13 | """ |
---|
14 | import logging |
---|
15 | logger = logging.getLogger('Skins.getStudentBaseInfo') |
---|
16 | from DateTime import DateTime |
---|
17 | |
---|
18 | request = context.REQUEST |
---|
19 | mtool = context.portal_membership |
---|
20 | wf = context.portal_workflow |
---|
21 | member = mtool.getAuthenticatedMember() |
---|
22 | member_id = str(member) |
---|
23 | |
---|
24 | if mtool.isAnonymousUser(): |
---|
25 | return None |
---|
26 | info = {} |
---|
27 | #from Products.zdb import set_trace |
---|
28 | #set_trace() |
---|
29 | requested_id = context.getStudentId() |
---|
30 | if 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 |
---|
33 | elif context.isStaff(): |
---|
34 | student_id = requested_id |
---|
35 | else: |
---|
36 | student_id = member_id |
---|
37 | |
---|
38 | |
---|
39 | #students_object = context.portal_url.getPortalObject().campus.students |
---|
40 | #student = getattr(students_object,student_id) |
---|
41 | |
---|
42 | res = context.students_catalog(id = student_id) |
---|
43 | if len(res) != 1: |
---|
44 | return None |
---|
45 | sbrain = res[0] |
---|
46 | info['id'] = student_id |
---|
47 | info['student'] = context.getFormattedStudentEntry(sbrain) |
---|
48 | #info['entry_mode'] = sbrain.entry_mode |
---|
49 | |
---|
50 | |
---|
51 | return info |
---|
Note: See
TracBrowser for help on using the repository browser.