[1220] | 1 | ## Script (Python) "getMemberInfo" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters= |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: getApplicationInfo.py 1161 2006-12-31 07:50:50Z henrik $ |
---|
| 11 | """ |
---|
| 12 | return Info about the current Student |
---|
| 13 | """ |
---|
| 14 | import logging |
---|
| 15 | logger = logging.getLogger('Student.Member.Info') |
---|
| 16 | |
---|
| 17 | request = context.REQUEST |
---|
| 18 | mtool = context.portal_membership |
---|
| 19 | wf = context.portal_workflow |
---|
| 20 | member = mtool.getAuthenticatedMember() |
---|
| 21 | member_id = str(member) |
---|
| 22 | path_info = request.get('PATH_INFO').split('/') |
---|
| 23 | ##from Products.zdb import set_trace |
---|
| 24 | ##set_trace() |
---|
| 25 | if mtool.isAnonymousUser(): |
---|
| 26 | return None |
---|
| 27 | info = {} |
---|
| 28 | requested_id = context.getStudentId() |
---|
| 29 | if requested_id and not context.isStaff() and member_id != requested_id: |
---|
[1596] | 30 | logger.info('%s tried to access personal object of %s' % (member_id,requested_id)) |
---|
[1220] | 31 | student_id = requested_id |
---|
[1596] | 32 | return None |
---|
[1220] | 33 | elif context.isStaff(): |
---|
| 34 | student_id = requested_id |
---|
| 35 | else: |
---|
| 36 | student_id = member_id |
---|
| 37 | |
---|
| 38 | |
---|
| 39 | students_object = context.portal_url.getPortalObject().campus.students |
---|
| 40 | student = getattr(students_object, student_id) |
---|
[1223] | 41 | |
---|
[1281] | 42 | if hasattr(student,"application"): |
---|
[1254] | 43 | |
---|
[1281] | 44 | info['student'] = student |
---|
| 45 | info['id'] = student_id |
---|
| 46 | info['review_state'] = wf.getInfoFor(student,'review_state',None) |
---|
| 47 | info['per'] = student.personal |
---|
| 48 | info['app'] = student.application |
---|
| 49 | info['per_doc'] = student.personal.getContent() |
---|
| 50 | info['app_doc'] = student.application.getContent() |
---|
| 51 | info['clear_doc'] = student.clearance.getContent() |
---|
| 52 | info['password'] = context.waeup_tool.getCredential(student_id) |
---|
| 53 | |
---|
| 54 | if info['per_doc'].email: |
---|
| 55 | info['email'] = info['per_doc'].email |
---|
| 56 | else: |
---|
| 57 | info['email'] = info['app_doc'].app_email |
---|
| 58 | |
---|
| 59 | msg=""" |
---|
[1268] | 60 | Your SRP Member Details |
---|
| 61 | ----------------------- |
---|
| 62 | |
---|
[1223] | 63 | Fullname: %s |
---|
| 64 | Student Id: %s |
---|
| 65 | Matriculation Number: %s |
---|
| 66 | JAMB Registration Number: %s |
---|
[1541] | 67 | Registration Status: %s |
---|
[1254] | 68 | Email Address in Application Data: %s |
---|
| 69 | Email Address in Personal Data: %s |
---|
[1223] | 70 | Date of Birth: %s |
---|
[1316] | 71 | Password: '%s' |
---|
[1223] | 72 | |
---|
| 73 | """ |
---|
| 74 | |
---|
[1281] | 75 | info['message'] = msg % ( |
---|
| 76 | student.Title(), |
---|
| 77 | student_id, |
---|
| 78 | info['clear_doc'].matric_no, |
---|
| 79 | info['app_doc'].jamb_reg_no, |
---|
[1541] | 80 | info['review_state'], |
---|
[1281] | 81 | info['app_doc'].app_email, |
---|
| 82 | info['per_doc'].email, |
---|
| 83 | info['clear_doc'].birthday, |
---|
| 84 | info['password'] |
---|
| 85 | ) |
---|
| 86 | else: |
---|
[1316] | 87 | |
---|
[1281] | 88 | info['student'] = student |
---|
| 89 | info['id'] = student_id |
---|
| 90 | info['review_state'] = wf.getInfoFor(student,'review_state',None) |
---|
| 91 | info['password'] = context.waeup_tool.getCredential(student_id) |
---|
[1448] | 92 | info['email'] = 'N/A' |
---|
[1223] | 93 | |
---|
[1281] | 94 | msg=""" |
---|
| 95 | Your SRP Member Details |
---|
| 96 | ----------------------- |
---|
| 97 | |
---|
| 98 | Fullname: %s |
---|
| 99 | Student Id: %s |
---|
| 100 | Password: %s |
---|
| 101 | |
---|
| 102 | """ |
---|
| 103 | |
---|
| 104 | info['message'] = msg % ( |
---|
[1448] | 105 | 'N/A', |
---|
[1281] | 106 | student_id, |
---|
| 107 | info['password'] |
---|
| 108 | ) |
---|
| 109 | |
---|
[1316] | 110 | |
---|
| 111 | |
---|
| 112 | |
---|
| 113 | |
---|
[1220] | 114 | return info |
---|