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