[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 |
---|
[3131] | 88 | level = None |
---|
| 89 | end_level = None |
---|
| 90 | try: |
---|
| 91 | level = int(student_record.level) |
---|
| 92 | except ValueError: |
---|
| 93 | logger.info('%s has invalid level %s' % (member_id,student_record.level)) |
---|
| 94 | try: |
---|
| 95 | end_level = int(student_record.end_level) |
---|
| 96 | except ValueError: |
---|
| 97 | logger.info('%s has invalid end_level %s' % (member_id,student_record.end_level)) |
---|
| 98 | |
---|
| 99 | if level is None or end_level is None or student_record.review_state == 'deactivated': |
---|
[3108] | 100 | pass |
---|
| 101 | elif arrived: |
---|
[3089] | 102 | if new: |
---|
[3087] | 103 | booking_allowed = student_record.review_state in new_states |
---|
| 104 | else: |
---|
[3131] | 105 | booking_allowed = not (level % 100) |
---|
[3089] | 106 | elif previous: |
---|
[3087] | 107 | booking_allowed = student_record.verdict in ('A','B',) |
---|
[3089] | 108 | |
---|
[2828] | 109 | info['booking_allowed'] = booking_allowed |
---|
| 110 | if not booking_allowed: |
---|
| 111 | info['acco'] = None |
---|
[3122] | 112 | info['student_status'] = '' |
---|
| 113 | return info |
---|
[2914] | 114 | |
---|
[2828] | 115 | acco_id = 'accommodation_' + session[0] |
---|
| 116 | acco = getattr(student,acco_id,None) |
---|
| 117 | info['acco'] = acco |
---|
| 118 | info['acco_id'] = acco_id |
---|
| 119 | bt = 're' |
---|
[2903] | 120 | info['maintenance_paid'] = False |
---|
[2828] | 121 | if acco is not None: |
---|
| 122 | info['acco_doc'] = acco.getContent() |
---|
| 123 | info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None) |
---|
[2914] | 124 | info['maintenance_paid'] = info['acco_review_state'] == "maintenance_fee_paid" |
---|
| 125 | |
---|
| 126 | |
---|
[2828] | 127 | d = {} |
---|
[3111] | 128 | delta = 0 |
---|
| 129 | if previous: |
---|
| 130 | delta = 100 |
---|
[3085] | 131 | if new: |
---|
[2828] | 132 | bt = 'fr' |
---|
[3131] | 133 | elif level + delta < end_level: |
---|
[2828] | 134 | bt = 're' |
---|
| 135 | else: |
---|
[3048] | 136 | bt = 'fi' |
---|
| 137 | # else: |
---|
| 138 | # res = context.portal_catalog(portal_type = "Certificate", id = student_record.course) |
---|
| 139 | # if res: |
---|
| 140 | # c_brain = res[0] |
---|
| 141 | # #from Products.zdb import set_trace; set_trace() |
---|
| 142 | # certificate = c_brain.getObject().getContent() |
---|
| 143 | # try: |
---|
| 144 | # certlevel = int(certificate.end_level) |
---|
| 145 | # except: |
---|
| 146 | # info["error"] = '"no end_level for","%s"' % c_brain.getId |
---|
| 147 | # return info |
---|
| 148 | # try: |
---|
| 149 | # studentlevel = int(student_record.level) |
---|
| 150 | # except: |
---|
| 151 | # info["error"] = '"no level for","%s"' % student_record.getId |
---|
| 152 | # return info |
---|
| 153 | # if studentlevel >= certlevel: |
---|
| 154 | # bt = "fi" |
---|
[2828] | 155 | d['sex'] = 'male' |
---|
[3048] | 156 | if student_record.sex: |
---|
[2828] | 157 | d['sex'] = 'female' |
---|
[3131] | 158 | if student_record.faculty in ('MED','DEN') and level > 400: |
---|
[3048] | 159 | bt += "_med" |
---|
| 160 | elif student_record.course in ekehuan_certificates: |
---|
[2828] | 161 | bt += "_ekenhuan" |
---|
[3085] | 162 | #elif student_record.course in pti_certificates: |
---|
| 163 | # bt += "_pti" |
---|
[2828] | 164 | info['sex']=d['sex'] |
---|
| 165 | d['bt'] = bt |
---|
| 166 | student_status = "%(sex)s_%(bt)s" % d |
---|
| 167 | info['student_status'] = student_status |
---|
| 168 | return info |
---|
| 169 | |
---|