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 | 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 | res = context.students_catalog(id=student_id) |
---|
38 | if len(res) != 1: |
---|
39 | logger.info('%s not found in students_catalog' % student_id) |
---|
40 | return None |
---|
41 | |
---|
42 | |
---|
43 | s_brain = res[0] |
---|
44 | info['error'] = None |
---|
45 | info['matric_no']=s_brain.matric_no |
---|
46 | info['jamb_reg_no']=s_brain.jamb_reg_no |
---|
47 | info['name']=s_brain.name |
---|
48 | info['email']=s_brain.email |
---|
49 | info['level']=s_brain.level |
---|
50 | info['end_level'] = s_brain.end_level |
---|
51 | info['verdict']=getattr(s_brain,'verdict','') |
---|
52 | review_state = info['review_state'] = s_brain.review_state |
---|
53 | |
---|
54 | |
---|
55 | info['session'] = session = context.getSessionId() |
---|
56 | |
---|
57 | students_object = context.portal_url.getPortalObject().campus.students |
---|
58 | student = getattr(students_object, student_id) |
---|
59 | info['student_id'] = student_id |
---|
60 | info['student'] = student |
---|
61 | |
---|
62 | booking_allowed = False |
---|
63 | if review_state in ('school_fee_paid','courses_registered', 'courses_validated',) and s_brain.session == session[0]: |
---|
64 | booking_allowed = True |
---|
65 | |
---|
66 | |
---|
67 | #booking_allowed = False |
---|
68 | |
---|
69 | |
---|
70 | info['booking_allowed'] = booking_allowed |
---|
71 | info['online_payment'] = True # for Okene |
---|
72 | if not booking_allowed: |
---|
73 | info['acco'] = None |
---|
74 | return info |
---|
75 | acco_id = 'accommodation_' + session[0] |
---|
76 | acco = getattr(student,acco_id,None) |
---|
77 | info['acco'] = acco |
---|
78 | info['acco_id'] = acco_id |
---|
79 | |
---|
80 | bt = 're' |
---|
81 | info['maintenance_paid'] = False |
---|
82 | if acco is not None: |
---|
83 | info['acco_doc'] = acco.getContent() |
---|
84 | info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None) |
---|
85 | info['maintenance_paid'] = info['acco_review_state'] == "maintenance_fee_paid" |
---|
86 | d = {} |
---|
87 | if review_state == "cleared_and_validated": |
---|
88 | bt = 'fr' |
---|
89 | elif int(s_brain.level) < 300: |
---|
90 | bt = 're' |
---|
91 | elif int(s_brain.level) < 100: |
---|
92 | bt = 'pr' |
---|
93 | else: |
---|
94 | res = context.portal_catalog(portal_type = "Certificate", id = s_brain.course) |
---|
95 | if res: |
---|
96 | c_brain = res[0] |
---|
97 | certificate = c_brain.getObject().getContent() |
---|
98 | try: |
---|
99 | certlevel = int(certificate.end_level) |
---|
100 | except: |
---|
101 | info["error"] = '"no end_level for","%s"' % c_brain.getId |
---|
102 | return info |
---|
103 | try: |
---|
104 | studentlevel = int(s_brain.level) |
---|
105 | except: |
---|
106 | info["error"] = '"no level for","%s"' % s_brain.getId |
---|
107 | return info |
---|
108 | if studentlevel >= certlevel: |
---|
109 | bt = "fi" |
---|
110 | d['sex'] = 'male' |
---|
111 | if s_brain.sex: |
---|
112 | d['sex'] = 'female' |
---|
113 | |
---|
114 | |
---|
115 | info['sex']=d['sex'] |
---|
116 | |
---|
117 | |
---|
118 | d['bt'] = bt |
---|
119 | #from Products.zdb import set_trace |
---|
120 | #set_trace() |
---|
121 | student_status = "%(sex)s_%(bt)s" % d |
---|
122 | info['student_status'] = student_status |
---|
123 | return info |
---|
124 | |
---|