[2829] | 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 | info['session'] = current_session = context.getSessionId()[0] |
---|
| 55 | |
---|
| 56 | students_object = context.portal_url.getPortalObject().campus.students |
---|
| 57 | student = getattr(students_object, student_id) |
---|
[2857] | 58 | info['student_id'] = student_id |
---|
[2829] | 59 | info['student'] = student |
---|
| 60 | |
---|
| 61 | booking_allowed = False |
---|
| 62 | if review_state in ('school_fee_paid','courses_registered', 'courses_validated',) and s_brain.session == current_session: |
---|
| 63 | booking_allowed = True |
---|
| 64 | |
---|
| 65 | |
---|
[2902] | 66 | #booking_allowed = False |
---|
[2829] | 67 | |
---|
| 68 | |
---|
| 69 | info['booking_allowed'] = booking_allowed |
---|
[2857] | 70 | info['online_payment'] = True # for Okene |
---|
[2829] | 71 | if not booking_allowed: |
---|
| 72 | info['acco'] = None |
---|
| 73 | return info |
---|
| 74 | acco_id = 'accommodation_' + str(current_session) |
---|
| 75 | acco = getattr(student,acco_id,None) |
---|
| 76 | info['acco'] = acco |
---|
| 77 | info['acco_id'] = acco_id |
---|
| 78 | |
---|
| 79 | bt = 're' |
---|
[2857] | 80 | info['maintenance_paid'] = False |
---|
[2829] | 81 | if acco is not None: |
---|
| 82 | info['acco_doc'] = acco.getContent() |
---|
| 83 | info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None) |
---|
[2857] | 84 | info['maintenance_paid'] = info['acco_review_state'] == "maintenance_fee_paid" |
---|
[2829] | 85 | d = {} |
---|
| 86 | if review_state == "cleared_and_validated": |
---|
| 87 | bt = 'fr' |
---|
| 88 | elif int(s_brain.level) < 300: |
---|
| 89 | bt = 're' |
---|
| 90 | elif int(s_brain.level) < 100: |
---|
| 91 | bt = 'pr' |
---|
| 92 | else: |
---|
| 93 | if s_brain.end_level and s_brain.end_level: |
---|
| 94 | certlevel = int(certificate.end_level) |
---|
| 95 | else: |
---|
| 96 | info["error"] = '"no level information provided","%s"' % c_brain.getId |
---|
| 97 | return info |
---|
| 98 | if s_brain.end_level >= s_brain.end_level: |
---|
| 99 | bt = "fi" |
---|
| 100 | d['sex'] = 'male' |
---|
| 101 | if s_brain.sex: |
---|
| 102 | d['sex'] = 'female' |
---|
| 103 | |
---|
| 104 | |
---|
| 105 | info['sex']=d['sex'] |
---|
| 106 | |
---|
| 107 | |
---|
| 108 | d['bt'] = bt |
---|
| 109 | #from Products.zdb import set_trace |
---|
| 110 | #set_trace() |
---|
| 111 | student_status = "%(sex)s_%(bt)s" % d |
---|
| 112 | info['student_status'] = student_status |
---|
| 113 | return info |
---|
| 114 | |
---|