source: WAeUP_SRP/trunk/skins/waeup_custom/getAccommodationInfo.py @ 3690

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

Move all customized skins into trunk. The waeup_custom skin together with the default profile is the BASE configuration which is identical to the Uniben set-up.

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