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: |
---|
30 | logger.info('"%s", "accessed personal object of", "%s"' % (member_id,requested_id)) |
---|
31 | student_id = requested_id |
---|
32 | elif context.isStaff(): |
---|
33 | student_id = requested_id |
---|
34 | else: |
---|
35 | student_id = member_id |
---|
36 | |
---|
37 | |
---|
38 | students_object = context.portal_url.getPortalObject().campus.students |
---|
39 | student = getattr(students_object, student_id) |
---|
40 | info['student'] = student |
---|
41 | info['id'] = student_id |
---|
42 | info['review_state'] = wf.getInfoFor(student,'review_state',None) |
---|
43 | info['per'] = student.personal |
---|
44 | info['app'] = student.application |
---|
45 | info['per_doc'] = student.personal.getContent() |
---|
46 | info['app_doc'] = student.application.getContent() |
---|
47 | info['clear_doc'] = student.clearance.getContent() |
---|
48 | #info['password'] = member.getPassword() |
---|
49 | |
---|
50 | msg=""" |
---|
51 | Fullname: %s |
---|
52 | Student Id: %s |
---|
53 | Matriculation Number: %s |
---|
54 | JAMB Registration Number: %s |
---|
55 | Email address in application data: %s |
---|
56 | Email address in personal data: %s |
---|
57 | Date of Birth: %s |
---|
58 | Password: |
---|
59 | |
---|
60 | """ |
---|
61 | |
---|
62 | info['message'] = msg % ( |
---|
63 | student.Title(), |
---|
64 | student_id, |
---|
65 | info['clear_doc'].matric_no, |
---|
66 | info['app_doc'].jamb_reg_no, |
---|
67 | info['app_doc'].app_email, |
---|
68 | info['per_doc'].email, |
---|
69 | info['clear_doc'].birthday, |
---|
70 | ) |
---|
71 | |
---|
72 | return info |
---|