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 1726 2007-05-02 06:21:50Z henrik $ |
---|
11 | """ |
---|
12 | return Info about the current Student |
---|
13 | """ |
---|
14 | import logging |
---|
15 | logger = logging.getLogger('Skins.getAccommodationInfo') |
---|
16 | import DateTime |
---|
17 | |
---|
18 | booking_disabled = False |
---|
19 | |
---|
20 | request = context.REQUEST |
---|
21 | mtool = context.portal_membership |
---|
22 | wf = context.portal_workflow |
---|
23 | member = mtool.getAuthenticatedMember() |
---|
24 | member_id = str(member) |
---|
25 | path_info = request.get('PATH_INFO').split('/') |
---|
26 | |
---|
27 | if mtool.isAnonymousUser(): |
---|
28 | return None |
---|
29 | info = {} |
---|
30 | if student_id is None: |
---|
31 | requested_id = context.getStudentId() |
---|
32 | if requested_id and not context.isStaff() and member_id != requested_id: |
---|
33 | logger.info('%s tried to access %s' % (member_id,requested_id)) |
---|
34 | return None |
---|
35 | elif context.isStaff(): |
---|
36 | student_id = requested_id |
---|
37 | else: |
---|
38 | student_id = member_id |
---|
39 | student_record = context.students_catalog.getRecordByKey(student_id) |
---|
40 | if student_record is None: |
---|
41 | logger.info('%s not found in students_catalog' % student_id) |
---|
42 | return None |
---|
43 | |
---|
44 | info['error'] = None |
---|
45 | info['matric_no']=student_record.matric_no |
---|
46 | info['jamb_reg_no']=student_record.jamb_reg_no |
---|
47 | info['name']=student_record.name |
---|
48 | info['email']=student_record.email |
---|
49 | info['level']=student_record.level |
---|
50 | info['verdict']=getattr(student_record,'verdict','') |
---|
51 | review_state = info['review_state'] = student_record.review_state |
---|
52 | info['session'] = session = context.getSessionId() |
---|
53 | students_object = context.portal_url.getPortalObject().campus.students |
---|
54 | student = getattr(students_object, student_id) |
---|
55 | info['student_id'] = student_id |
---|
56 | info['student'] = student |
---|
57 | |
---|
58 | booking_allowed = False |
---|
59 | |
---|
60 | # customize from here |
---|
61 | |
---|
62 | ekehuan_certificates = ('BARTAPG', |
---|
63 | 'BARTAPM', |
---|
64 | 'BARTCER', |
---|
65 | 'BARTFAA', |
---|
66 | 'BARTFAP', |
---|
67 | 'BARTSCP', |
---|
68 | 'BARTTXT', |
---|
69 | 'BARTMAS', |
---|
70 | 'BARTTHR', |
---|
71 | ) |
---|
72 | |
---|
73 | new_states = ('cleared_and_validated', |
---|
74 | 'school_fee_paid', |
---|
75 | 'courses_registered', |
---|
76 | 'courses_validated', |
---|
77 | ) |
---|
78 | |
---|
79 | try: |
---|
80 | new = int(student_record.entry_session) == int(session[0]) |
---|
81 | except: |
---|
82 | logger.info('%s has invalid entry_session %s' % (student_id,student_record.entry_session)) |
---|
83 | try: |
---|
84 | arrived = int(student_record.session) == int(session[0]) |
---|
85 | except: |
---|
86 | logger.info('%s has invalid session %s' % (student_id,student_record.session)) |
---|
87 | |
---|
88 | level = None |
---|
89 | end_level = None |
---|
90 | previous = None |
---|
91 | |
---|
92 | try: |
---|
93 | level = int(student_record.level) |
---|
94 | except: |
---|
95 | logger.info('%s has invalid level %s' % (student_id,student_record.level)) |
---|
96 | try: |
---|
97 | end_level = int(student_record.end_level) |
---|
98 | except: |
---|
99 | logger.info('%s has invalid end_level %s' % (student_id,student_record.end_level)) |
---|
100 | try: |
---|
101 | previous = int(student_record.session) == int(session[0]) - 1 |
---|
102 | except: |
---|
103 | logger.info('%s has invalid session %s' % (student_id,student_record.session)) |
---|
104 | |
---|
105 | if level is None or end_level is None or student_record.review_state == 'deactivated': |
---|
106 | pass |
---|
107 | elif arrived: |
---|
108 | if new: |
---|
109 | booking_allowed = student_record.review_state in new_states |
---|
110 | else: |
---|
111 | booking_allowed = not (level % 100) |
---|
112 | elif previous: |
---|
113 | booking_allowed = student_record.verdict in ('A','B',) |
---|
114 | |
---|
115 | info['booking_allowed'] = booking_allowed |
---|
116 | if not booking_allowed: |
---|
117 | info['acco'] = None |
---|
118 | info['student_status'] = '' |
---|
119 | return info |
---|
120 | |
---|
121 | acco_id = 'accommodation_' + session[0] |
---|
122 | acco = getattr(student,acco_id,None) |
---|
123 | info['acco'] = acco |
---|
124 | info['acco_id'] = acco_id |
---|
125 | bt = 're' |
---|
126 | info['maintenance_paid'] = False |
---|
127 | if acco is not None: |
---|
128 | info['acco_doc'] = acco.getContent() |
---|
129 | info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None) |
---|
130 | info['maintenance_paid'] = info['acco_review_state'] == "maintenance_fee_paid" |
---|
131 | elif booking_disabled: |
---|
132 | info['booking_allowed'] = False |
---|
133 | |
---|
134 | d = {} |
---|
135 | delta = 0 |
---|
136 | if previous: |
---|
137 | delta = 100 |
---|
138 | if new: |
---|
139 | bt = 'fr' |
---|
140 | elif level + delta < end_level: |
---|
141 | bt = 're' |
---|
142 | else: |
---|
143 | bt = 'fi' |
---|
144 | |
---|
145 | d['sex'] = 'male' |
---|
146 | if student_record.sex: |
---|
147 | d['sex'] = 'female' |
---|
148 | if student_record.faculty in ('MED','DEN') and level > 400: |
---|
149 | bt += "_med" |
---|
150 | elif student_record.course in ekehuan_certificates: |
---|
151 | bt += "_ekenhuan" |
---|
152 | #elif student_record.course in pti_certificates: |
---|
153 | # bt += "_pti" |
---|
154 | info['sex']=d['sex'] |
---|
155 | d['bt'] = bt |
---|
156 | student_status = "%(sex)s_%(bt)s" % d |
---|
157 | info['student_status'] = student_status |
---|
158 | return info |
---|