1 | ## Script (Python) "getAccommodationInfo" |
---|
2 | ##bind container=container |
---|
3 | ##bind context=context |
---|
4 | ##bind namespace= |
---|
5 | ##bind script=script |
---|
6 | ##bind subpath=traverse_subpath |
---|
7 | ##parameters=student_id=None |
---|
8 | ##title= |
---|
9 | ## |
---|
10 | # $Id: getAccommodationInfo.py 1161 2006-12-31 07:50:50Z henrik $ |
---|
11 | """ |
---|
12 | return Info about the current Student |
---|
13 | """ |
---|
14 | import logging |
---|
15 | logger = logging.getLogger('Student.Accommodation.Info') |
---|
16 | 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 | path_info = request.get('PATH_INFO').split('/') |
---|
24 | |
---|
25 | if mtool.isAnonymousUser(): |
---|
26 | return None |
---|
27 | info = {} |
---|
28 | if student_id is None: |
---|
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 | res = context.students_catalog(id=student_id) |
---|
39 | if len(res) != 1: |
---|
40 | logger.info('"%s","not found in students_catalog"') |
---|
41 | return None |
---|
42 | ekehuan_certificates = ('BARTAPG', |
---|
43 | 'BARTAPM', |
---|
44 | 'BARTCER', |
---|
45 | 'BARTFAA', |
---|
46 | 'BARTFAP', |
---|
47 | 'BARTSCP', |
---|
48 | 'BARTTXT', |
---|
49 | 'BARTMAS', |
---|
50 | 'BARTTHR', |
---|
51 | ) |
---|
52 | pti_certificates = ('BENGIEP', |
---|
53 | 'BENGGCPP', |
---|
54 | 'BENGEEP', |
---|
55 | 'BENGGEP', |
---|
56 | 'BENGPEP', |
---|
57 | 'BENGMEP', |
---|
58 | ) |
---|
59 | s_brain = res[0] |
---|
60 | students_object = context.portal_url.getPortalObject().campus.students |
---|
61 | student = getattr(students_object, student_id) |
---|
62 | info['id'] = student_id |
---|
63 | info['student'] = student |
---|
64 | info['review_state'] = wf.getInfoFor(student,'review_state',None) |
---|
65 | acco_id = 'accommodation_2006' |
---|
66 | acco = getattr(student,acco_id,None) |
---|
67 | info['acco'] = acco |
---|
68 | info['acco_id'] = acco_id |
---|
69 | if acco is not None: |
---|
70 | info['acco_doc'] = acco.getContent() |
---|
71 | info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None) |
---|
72 | d = {} |
---|
73 | bt = 'fr' |
---|
74 | d['sex'] = 'male' |
---|
75 | if s_brain.sex: |
---|
76 | d['sex'] = 'female' |
---|
77 | if s_brain.course in ekehuan_certificates: |
---|
78 | bt += "_ekenhuan" |
---|
79 | elif s_brain.course in pti_certificates: |
---|
80 | bt += "_pti" |
---|
81 | |
---|
82 | d['bt'] = bt |
---|
83 | #from Products.zdb import set_trace |
---|
84 | #set_trace() |
---|
85 | student_status = "%(sex)s_%(bt)s" % d |
---|
86 | info['student_status'] = student_status |
---|
87 | return info |
---|