source: WAeUP_SRP/base/skins/waeup_utilities/ti_507_resolve.py @ 3702

Last change on this file since 3702 was 3376, checked in by joachim, 16 years ago

add functionality to edit the current_mode in the study_course object.

  • Property svn:keywords set to Id
File size: 3.0 KB
Line 
1## Script (Python) "ti_507_resolve"
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: ti_507_resolve.py 3376 2008-03-26 10:11:44Z joachim $
11"""
12"""
13try:
14    from Products.zdb import set_trace
15except:
16    def set_trace():
17        pass
18
19mtool = context.portal_membership
20member = mtool.getAuthenticatedMember()
21if str(member) not in ('admin','joachim'):
22    return
23
24import logging
25import DateTime
26logger = logging.getLogger('Skins.ti_507_resolve')
27from Products.AdvancedQuery import Eq, Between, Le,In
28aq_students = context.students_catalog.evalAdvancedQuery
29aq_portal = context.portal_catalog_real.evalAdvancedQuery
30students_folder = context.portal_url.getPortalObject().campus.students
31
32request = context.REQUEST
33session = request.SESSION
34response = request.RESPONSE
35setheader = request.RESPONSE.setHeader
36logger.info('start')
37count = 0
38found = 0
39commit_after = 1000
40certificates = context.getCertificatesDict()
41students = context.students_catalog()
42wrong = {}
43missing_courses = []
44wrong_modes = {}
45students_with_missing_courses = []
46for student in students:
47    count += 1
48    if student.mode and student.course:
49        certificate = certificates.get(student.course,None)
50        if certificate is None:
51            students_with_missing_courses += student.id,
52            if student.course not in missing_courses:
53                missing_courses += student.course,
54                #logger.info('missing course %s' % student.course)
55            continue
56        current_mode = student.mode
57        study_mode = certificate.get('study_mode','xxx')
58        if current_mode != study_mode:
59            w_count =  wrong_modes.get((current_mode,study_mode),0)
60            if w_count == 0:
61                logger.info('%s != %s' % (student.mode,
62                                          study_mode))
63            w_count += 1
64            wrong_modes[(current_mode,study_mode)] = w_count
65            d = {}
66            d['student_id'] = student.id
67            d['current_mode'] = study_mode
68            d['current_mode_old'] = current_mode
69            wrong[student.id] = d
70    # if wrong and not (len(wrong) % commit_after):
71    #     logger.info('found %d wrong of %d' % (len(wrong),count))
72for k,v in wrong_modes.items():
73    logger.info('wrong mode %s counted %d' % (k,v))
74logger.info('missing courses %s (%d counted)' % (', '.join(missing_courses),len(students_with_missing_courses)))
75logger.info('found %d wrong of %d' % (len(wrong),count))
76count = 0
77for student_id,d in wrong.items():
78    #set_trace()
79    try:
80        getattr(getattr(students_folder,student_id),'study_course').getContent().edit(mapping=d)
81        failed = False
82    except:
83        failed = True
84    if failed:
85        logger.info("%(student_id)s change failed")
86    else:
87        logger.info("%(student_id)s changed current_mode from %(current_mode_old)s to %(current_mode)s" % d)
88    if count and not count % commit_after:
89        context.waeup_tool.doCommit()
90        logger.info("committing %d of total %d" % (commit_after,count))
91    count += 1
Note: See TracBrowser for help on using the repository browser.