[1780] | 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 | 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 | s_brain = res[0] |
---|
| 60 | info['error'] = None |
---|
| 61 | info['matric_no']=s_brain.matric_no |
---|
| 62 | info['jamb_reg_no']=s_brain.jamb_reg_no |
---|
| 63 | info['name']=s_brain.name |
---|
| 64 | info['email']=s_brain.email |
---|
| 65 | info['level']=s_brain.level |
---|
| 66 | info['verdict']=getattr(s_brain,"verdict","N/A") |
---|
| 67 | |
---|
| 68 | |
---|
| 69 | students_object = context.portal_url.getPortalObject().campus.students |
---|
| 70 | student = getattr(students_object, student_id) |
---|
| 71 | info['id'] = student_id |
---|
| 72 | info['student'] = student |
---|
[1871] | 73 | review_state = info['review_state'] = context.getStudentReviewState() |
---|
[1780] | 74 | booking_allowed = False |
---|
| 75 | if review_state in ('cleared_and_validated','returning','school_fee_paid','courses_registered', 'courses_validated',): |
---|
| 76 | booking_allowed = True |
---|
| 77 | if s_brain.matric_no: |
---|
| 78 | res = context.results_import(matric_no = s_brain.matric_no) |
---|
| 79 | if res: |
---|
| 80 | booking_allowed = info['verdict'] in ("A", |
---|
| 81 | "B",) |
---|
| 82 | info['booking_allowed'] = booking_allowed |
---|
| 83 | if not booking_allowed: |
---|
| 84 | info['acco'] = None |
---|
| 85 | return info |
---|
| 86 | acco_id = 'accommodation_2006' |
---|
| 87 | acco = getattr(student,acco_id,None) |
---|
| 88 | info['acco'] = acco |
---|
| 89 | info['acco_id'] = acco_id |
---|
| 90 | bt = 're' |
---|
| 91 | if acco is not None: |
---|
| 92 | info['acco_doc'] = acco.getContent() |
---|
| 93 | info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None) |
---|
| 94 | d = {} |
---|
| 95 | if review_state == "cleared_and_validated": |
---|
| 96 | bt = 'fr' |
---|
| 97 | elif int(s_brain.level) < 300: |
---|
| 98 | bt = 're' |
---|
[2421] | 99 | elif int(s_brain.level) < 100: |
---|
| 100 | bt = 'pr' |
---|
| 101 | elif s_brain.faculty in ('MED') and int(s_brain.level) >= 400: |
---|
| 102 | bt = "med" |
---|
[1780] | 103 | else: |
---|
| 104 | res = context.portal_catalog(portal_type = "Certificate", id = s_brain.course) |
---|
| 105 | if res: |
---|
| 106 | c_brain = res[0] |
---|
| 107 | #from Products.zdb import set_trace; set_trace() |
---|
| 108 | certificate = c_brain.getObject().getContent() |
---|
| 109 | try: |
---|
| 110 | certlevel = int(certificate.end_level) |
---|
| 111 | except: |
---|
| 112 | info["error"] = '"no end_level for","%s"' % c_brain.getId |
---|
| 113 | return info |
---|
| 114 | try: |
---|
| 115 | studentlevel = int(s_brain.level) |
---|
| 116 | except: |
---|
| 117 | info["error"] = '"no level for","%s"' % s_brain.getId |
---|
| 118 | return info |
---|
| 119 | if studentlevel >= certlevel: |
---|
| 120 | bt = "fi" |
---|
| 121 | d['sex'] = 'male' |
---|
| 122 | if s_brain.sex: |
---|
| 123 | d['sex'] = 'female' |
---|
| 124 | if s_brain.course in ekehuan_certificates: |
---|
| 125 | bt += "_ekenhuan" |
---|
| 126 | elif s_brain.course in pti_certificates: |
---|
| 127 | bt += "_pti" |
---|
| 128 | |
---|
[2421] | 129 | |
---|
[1780] | 130 | info['sex']=d['sex'] |
---|
| 131 | |
---|
| 132 | |
---|
| 133 | d['bt'] = bt |
---|
| 134 | #from Products.zdb import set_trace |
---|
| 135 | #set_trace() |
---|
| 136 | student_status = "%(sex)s_%(bt)s" % d |
---|
| 137 | info['student_status'] = student_status |
---|
| 138 | return info |
---|
| 139 | |
---|