1 | ## Script (Python) "add_course_result" |
---|
2 | ##bind container=container |
---|
3 | ##bind context=context |
---|
4 | ##bind namespace= |
---|
5 | ##bind script=script |
---|
6 | ##bind subpath=traverse_subpath |
---|
7 | ##parameters=REQUEST=None, action_after_validate=None |
---|
8 | ##title= |
---|
9 | ## |
---|
10 | # $Id: add_course_result.py 1653 2007-03-28 02:35:25Z uli $ |
---|
11 | """ |
---|
12 | add a StudentCourseResult object |
---|
13 | """ |
---|
14 | |
---|
15 | import logging |
---|
16 | logger = logging.getLogger('Skins.add_course_result') |
---|
17 | |
---|
18 | from urllib import urlencode |
---|
19 | try: |
---|
20 | from Products.zdb import set_trace |
---|
21 | except: |
---|
22 | def set_trace(): |
---|
23 | pass |
---|
24 | request = context.REQUEST |
---|
25 | course_cat = context.courses_catalog |
---|
26 | from Products.AdvancedQuery import Eq, Between, Le,In |
---|
27 | aq_portal = context.portal_catalog.evalAdvancedQuery |
---|
28 | course_id = request.get('course_id') |
---|
29 | |
---|
30 | mtool = context.portal_membership |
---|
31 | member = mtool.getAuthenticatedMember() |
---|
32 | |
---|
33 | |
---|
34 | d = context.getCourseInfo(course_id) |
---|
35 | args = {} |
---|
36 | err = '' |
---|
37 | while True: |
---|
38 | if d['title'] == 'unknown': |
---|
39 | err = "No such course!" |
---|
40 | #logger.info('%s tried to add StudentCourseResult object %s for non-existing course' % (member,course_id)) |
---|
41 | break |
---|
42 | if context.hasObject(course_id): |
---|
43 | err = "Course already exists!" |
---|
44 | #logger.info('%s tried to add StudentCourseResult object %s which is already in course list' % (member,course_id)) |
---|
45 | break |
---|
46 | if context.hasObject("%s_co" % course_id): |
---|
47 | err = "Course already exists as carryover course!" |
---|
48 | #logger.info('%s tried to add StudentCourseResult object %s which already exists as carryover course' % (member,course_id)) |
---|
49 | break |
---|
50 | break |
---|
51 | |
---|
52 | if err: |
---|
53 | args['course_id'] = course_id |
---|
54 | #args['error'] = err |
---|
55 | args['portal_status_message'] = err |
---|
56 | url = context.absolute_url() + '/' + action_after_validate + '?' + urlencode(args) |
---|
57 | return request.RESPONSE.redirect(url) |
---|
58 | |
---|
59 | |
---|
60 | cr_id = context.invokeFactory('StudentCourseResult',course_id) |
---|
61 | #set_trace() |
---|
62 | cr = getattr(context,cr_id) |
---|
63 | context.portal_workflow.doActionFor(cr,'open') |
---|
64 | cr.getContent().edit(mapping=d) |
---|
65 | context.portal_workflow.doActionFor(cr,'close') |
---|
66 | args['course_id'] = course_id |
---|
67 | |
---|
68 | logger.info('%s added StudentCourseResult object %s for %s' % (member,course_id,context.getStudentId())) |
---|
69 | |
---|
70 | psm = "You successfully added course %s!" % course_id |
---|
71 | args['portal_status_message'] = psm |
---|
72 | if action_after_validate: |
---|
73 | url = context.absolute_url() + '/' + action_after_validate + '?' + urlencode(args) |
---|
74 | else: |
---|
75 | url = context.absolute_url() + '?' + urlencode(args) |
---|
76 | return REQUEST.RESPONSE.redirect(url) |
---|
77 | |
---|