[3784] | 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 | |
---|
[5042] | 18 | booking_disabled = True |
---|
[3843] | 19 | |
---|
[3784] | 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 | |
---|
[4007] | 58 | # do not change these settings! |
---|
| 59 | |
---|
[3784] | 60 | booking_allowed = False |
---|
[4007] | 61 | info['booking_disabled'] = False |
---|
[3784] | 62 | |
---|
| 63 | # customize from here |
---|
| 64 | |
---|
| 65 | try: |
---|
| 66 | level = int(student_record.level) |
---|
| 67 | except: |
---|
| 68 | logger.info('%s has invalid level %s' % (student_id,student_record.level)) |
---|
[3795] | 69 | info['acco'] = None |
---|
| 70 | info['booking_allowed'] = False |
---|
| 71 | info['student_status'] = '' |
---|
| 72 | return info |
---|
[3784] | 73 | |
---|
[4004] | 74 | if review_state in ('cleared_and_validated','school_fee_paid','courses_registered', 'courses_validated',) and student_record.session == session[0]: |
---|
[3795] | 75 | info['booking_allowed'] = True |
---|
| 76 | info['online_payment'] = True |
---|
[5042] | 77 | # returning student can also book without having paid the school fee (see ticket #29) |
---|
| 78 | #elif review_state == 'returning' and int(student_record.session)+1 == int(session[0]): |
---|
| 79 | # info['booking_allowed'] = True |
---|
| 80 | # info['online_payment'] = True |
---|
[3795] | 81 | else: |
---|
[3784] | 82 | info['acco'] = None |
---|
[3795] | 83 | info['booking_allowed'] = False |
---|
[3784] | 84 | info['student_status'] = '' |
---|
[4009] | 85 | logger.info('%s: not eligible' % (student_id)) |
---|
[3784] | 86 | return info |
---|
| 87 | |
---|
[4007] | 88 | d = {} |
---|
| 89 | d['sex'] = 'male' |
---|
| 90 | d['bt'] = 'all' |
---|
| 91 | if student_record.sex: |
---|
| 92 | d['sex'] = 'female' |
---|
| 93 | |
---|
| 94 | info['sex']=d['sex'] |
---|
| 95 | student_status = "%(sex)s_%(bt)s" % d |
---|
| 96 | info['student_status'] = student_status |
---|
| 97 | |
---|
| 98 | # customize end |
---|
| 99 | |
---|
[3784] | 100 | acco_id = 'accommodation_' + session[0] |
---|
| 101 | acco = getattr(student,acco_id,None) |
---|
| 102 | info['acco'] = acco |
---|
| 103 | info['acco_id'] = acco_id |
---|
| 104 | info['maintenance_paid'] = False |
---|
| 105 | if acco is not None: |
---|
| 106 | info['acco_doc'] = acco.getContent() |
---|
| 107 | info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None) |
---|
| 108 | info['maintenance_paid'] = info['acco_review_state'] == "maintenance_fee_paid" |
---|
[3843] | 109 | elif booking_disabled: |
---|
[4007] | 110 | info['booking_disabled'] = True |
---|
| 111 | logger.info('%s: %s eligible but booking disabled' % (student_id,student_status)) |
---|
[3795] | 112 | |
---|
[3784] | 113 | return info |
---|