[2828] | 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 |
---|
[3048] | 37 | student_record = context.students_catalog.getRecordByKey(student_id) |
---|
| 38 | if student_record is None: |
---|
[2828] | 39 | logger.info('%s not found in students_catalog' % student_id) |
---|
| 40 | return None |
---|
| 41 | |
---|
| 42 | ekehuan_certificates = ('BARTAPG', |
---|
| 43 | 'BARTAPM', |
---|
| 44 | 'BARTCER', |
---|
| 45 | 'BARTFAA', |
---|
| 46 | 'BARTFAP', |
---|
| 47 | 'BARTSCP', |
---|
| 48 | 'BARTTXT', |
---|
| 49 | 'BARTMAS', |
---|
| 50 | 'BARTTHR', |
---|
| 51 | ) |
---|
| 52 | pti_certificates = ('BENGIEP', |
---|
| 53 | 'BENGGCPP', |
---|
| 54 | 'BENGEEP', |
---|
| 55 | 'BENGGEP', |
---|
| 56 | 'BENGPEP', |
---|
| 57 | 'BENGMEP', |
---|
| 58 | ) |
---|
| 59 | info['error'] = None |
---|
[3048] | 60 | info['matric_no']=student_record.matric_no |
---|
| 61 | info['jamb_reg_no']=student_record.jamb_reg_no |
---|
| 62 | info['name']=student_record.name |
---|
| 63 | info['email']=student_record.email |
---|
| 64 | info['level']=student_record.level |
---|
| 65 | info['verdict']=getattr(student_record,'verdict','') |
---|
| 66 | review_state = info['review_state'] = student_record.review_state |
---|
[2828] | 67 | |
---|
[2914] | 68 | info['session'] = session = context.getSessionId() |
---|
| 69 | |
---|
[2828] | 70 | students_object = context.portal_url.getPortalObject().campus.students |
---|
| 71 | student = getattr(students_object, student_id) |
---|
[2903] | 72 | info['student_id'] = student_id |
---|
[2828] | 73 | info['student'] = student |
---|
| 74 | |
---|
| 75 | booking_allowed = False |
---|
[3048] | 76 | if review_state in ('cleared_and_validated','returning','school_fee_paid','courses_registered', 'courses_validated',) and student_record.session == session[0]: |
---|
[2828] | 77 | booking_allowed = True |
---|
[3048] | 78 | if student_record.matric_no: |
---|
| 79 | res = context.results_import(matric_no = student_record.matric_no) |
---|
[2828] | 80 | if res: |
---|
| 81 | booking_allowed = info['verdict'] in ("A", |
---|
| 82 | "B",) |
---|
| 83 | |
---|
[2903] | 84 | #booking_allowed = False |
---|
[2828] | 85 | |
---|
| 86 | info['booking_allowed'] = booking_allowed |
---|
| 87 | if not booking_allowed: |
---|
| 88 | info['acco'] = None |
---|
[3048] | 89 | # return info |
---|
[2914] | 90 | |
---|
[2828] | 91 | acco_id = 'accommodation_' + session[0] |
---|
| 92 | acco = getattr(student,acco_id,None) |
---|
| 93 | info['acco'] = acco |
---|
| 94 | info['acco_id'] = acco_id |
---|
| 95 | bt = 're' |
---|
[2903] | 96 | info['maintenance_paid'] = False |
---|
[2828] | 97 | if acco is not None: |
---|
| 98 | info['acco_doc'] = acco.getContent() |
---|
| 99 | info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None) |
---|
[2914] | 100 | info['maintenance_paid'] = info['acco_review_state'] == "maintenance_fee_paid" |
---|
| 101 | |
---|
| 102 | |
---|
[2828] | 103 | d = {} |
---|
| 104 | if review_state == "cleared_and_validated": |
---|
| 105 | bt = 'fr' |
---|
[3048] | 106 | elif int(student_record.level) < 100: |
---|
| 107 | bt = 'pr' |
---|
| 108 | elif int(student_record.level) < int(student_record.end_level): |
---|
[2828] | 109 | bt = 're' |
---|
| 110 | else: |
---|
[3048] | 111 | bt = 'fi' |
---|
| 112 | # else: |
---|
| 113 | # res = context.portal_catalog(portal_type = "Certificate", id = student_record.course) |
---|
| 114 | # if res: |
---|
| 115 | # c_brain = res[0] |
---|
| 116 | # #from Products.zdb import set_trace; set_trace() |
---|
| 117 | # certificate = c_brain.getObject().getContent() |
---|
| 118 | # try: |
---|
| 119 | # certlevel = int(certificate.end_level) |
---|
| 120 | # except: |
---|
| 121 | # info["error"] = '"no end_level for","%s"' % c_brain.getId |
---|
| 122 | # return info |
---|
| 123 | # try: |
---|
| 124 | # studentlevel = int(student_record.level) |
---|
| 125 | # except: |
---|
| 126 | # info["error"] = '"no level for","%s"' % student_record.getId |
---|
| 127 | # return info |
---|
| 128 | # if studentlevel >= certlevel: |
---|
| 129 | # bt = "fi" |
---|
[2828] | 130 | d['sex'] = 'male' |
---|
[3048] | 131 | if student_record.sex: |
---|
[2828] | 132 | d['sex'] = 'female' |
---|
[3048] | 133 | if student_record.faculty in ('MED') and int(student_record.level) > 400: |
---|
| 134 | bt += "_med" |
---|
| 135 | elif student_record.course in ekehuan_certificates: |
---|
[2828] | 136 | bt += "_ekenhuan" |
---|
[3048] | 137 | elif student_record.course in pti_certificates: |
---|
[2828] | 138 | bt += "_pti" |
---|
| 139 | |
---|
| 140 | |
---|
| 141 | info['sex']=d['sex'] |
---|
| 142 | |
---|
| 143 | |
---|
| 144 | d['bt'] = bt |
---|
| 145 | student_status = "%(sex)s_%(bt)s" % d |
---|
| 146 | info['student_status'] = student_status |
---|
| 147 | return info |
---|
| 148 | |
---|