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