source: WAeUP_SRP/trunk/skins/waeup_student/getStudentFolderInfo.py @ 1423

Last change on this file since 1423 was 1423, checked in by Henrik Bettermann, 18 years ago

syntax error fixed

  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1## Script (Python) "getStudentInfo"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=with_items=None
8##title=
9##
10# $Id: getStudentFolderInfo.py 1423 2007-02-15 14:30:16Z henrik $
11"""
12return Info about the current Student
13"""
14request = context.REQUEST
15form = request.form
16fget = form.get
17wf = context.portal_workflow
18mtool = context.portal_membership
19member = mtool.getAuthenticatedMember()
20path_info = request.get('PATH_INFO').split('/')
21
22import logging
23logger = logging.getLogger('Student.Info')
24
25
26info = {}
27member_id = str(member)
28#from Products.zdb import set_trace;set_trace()
29is_student = info['is_student'] = context.isStudent()
30is_staff = info['is_staff'] = context.isStaff()
31is_sectionofficer = info['is_sectionofficer'] = context.isSectionOfficer()
32while True:
33    if mtool.isAnonymousUser():
34        return None
35    requested_id = context.getStudentId()
36    if not is_student and requested_id:
37        student_id = requested_id
38        break
39    if member_id != requested_id:
40        logger.info('"%s", "tried to access", "%s"' % (member_id,requested_id))
41        student_id = member_id
42        mtool.assertViewable(context)
43        break
44    student_id = member_id
45    break
46student_path = "%s/campus/students/%s" % (context.portal_url.getPortalPath(),student_id)
47res = context.students_catalog(id = student_id)
48if not res:
49    return None
50st_brain = res[0]
51#from Products.zdb import set_trace;set_trace()
52for field in context.students_catalog.schema():
53    info[field] = getattr(st_brain,field)
54res = context.portal_catalog(portal_type='Student',id = student_id)
55if res:
56    info['review_state'] = res[0].review_state
57
58info['session'] = False
59if st_brain.matric_no:
60    res = context.results_import(matric_no = st_brain.matric_no)
61    if res:
62       info['session'] = True
63   
64
65info['id'] = student_id
66items = []
67s_edit_links = {'StudentApplication': 'application_edit_form',
68              'StudentAccommodation': 'reserve_accommodation',
69              'StudentClearance': 'clearance_edit_form',
70              'StudentPersonal': 'personal_edit_form',
71              }
72s_view_links = {'StudentApplication': 'application_view',
73              'StudentAccommodation': 'accommodation_view',
74              'StudentClearance': 'clearance_view',
75              'StudentPersonal': 'personal_view',
76              'StudentStudyCourse': 'study_course_view',
77              'PaymentsFolder': 'payments_view',
78              'StudentPume': 'pume_view',
79              }
80sos = context.portal_catalog(container_path=student_path)
81for so in sos:
82    row = {}
83    row['id'] = so.getId
84    row['title'] = so.Title
85    url = row['url'] = "%s/%s" % (student_path,so.getId)
86    row['type'] = so.portal_type
87    review_state = row['review_state'] = so.review_state
88    row['is_editable'] = (is_student and review_state == "opened") or not is_student
89    sv_link = s_view_links.get(so.portal_type,None) or "waeup_document_view"
90    row['s_view_link'] = "%s/%s" % (url,sv_link)
91    se_link = s_edit_links.get(so.portal_type,None)
92    row['s_edit_link'] = None
93    if se_link:
94        row['s_edit_link'] = "%s/%s" % (url,se_link)
95    row['display'] = review_state in ('opened','closed','bed_reserved','maintenance_fee_paid',)\
96                    and so.portal_type not in  ('StudentPume','StudentAccommodation','PaymentsFolder',) or\
97                    so.portal_type == 'StudentStudyCourse'
98    items.append(row)
99info['items'] = items
100info['member'] = member
101return info
102
Note: See TracBrowser for help on using the repository browser.