[3353] | 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 | """ |
---|
| 13 | try: |
---|
| 14 | from Products.zdb import set_trace |
---|
| 15 | except: |
---|
| 16 | def set_trace(): |
---|
| 17 | pass |
---|
| 18 | |
---|
| 19 | mtool = context.portal_membership |
---|
| 20 | member = mtool.getAuthenticatedMember() |
---|
| 21 | if str(member) not in ('admin','joachim'): |
---|
| 22 | return |
---|
| 23 | |
---|
| 24 | import logging |
---|
| 25 | import DateTime |
---|
| 26 | logger = logging.getLogger('Skins.ti_507_resolve') |
---|
| 27 | from Products.AdvancedQuery import Eq, Between, Le,In |
---|
| 28 | aq_students = context.students_catalog.evalAdvancedQuery |
---|
| 29 | aq_portal = context.portal_catalog_real.evalAdvancedQuery |
---|
| 30 | students_folder = context.portal_url.getPortalObject().campus.students |
---|
| 31 | |
---|
| 32 | request = context.REQUEST |
---|
| 33 | session = request.SESSION |
---|
| 34 | response = request.RESPONSE |
---|
| 35 | setheader = request.RESPONSE.setHeader |
---|
| 36 | logger.info('start') |
---|
| 37 | count = 0 |
---|
| 38 | found = 0 |
---|
[3376] | 39 | commit_after = 1000 |
---|
[3353] | 40 | certificates = context.getCertificatesDict() |
---|
| 41 | students = context.students_catalog() |
---|
[3376] | 42 | wrong = {} |
---|
[3353] | 43 | missing_courses = [] |
---|
[3361] | 44 | wrong_modes = {} |
---|
[3365] | 45 | students_with_missing_courses = [] |
---|
[3353] | 46 | for student in students: |
---|
| 47 | count += 1 |
---|
[3368] | 48 | if student.mode and student.course: |
---|
[3353] | 49 | certificate = certificates.get(student.course,None) |
---|
| 50 | if certificate is None: |
---|
[3365] | 51 | students_with_missing_courses += student.id, |
---|
[3353] | 52 | if student.course not in missing_courses: |
---|
| 53 | missing_courses += student.course, |
---|
[3365] | 54 | #logger.info('missing course %s' % student.course) |
---|
[3353] | 55 | continue |
---|
[3368] | 56 | current_mode = student.mode |
---|
[3365] | 57 | study_mode = certificate.get('study_mode','xxx') |
---|
[3368] | 58 | if current_mode != study_mode: |
---|
| 59 | w_count = wrong_modes.get((current_mode,study_mode),0) |
---|
[3361] | 60 | if w_count == 0: |
---|
[3368] | 61 | logger.info('%s != %s' % (student.mode, |
---|
[3361] | 62 | study_mode)) |
---|
| 63 | w_count += 1 |
---|
[3368] | 64 | wrong_modes[(current_mode,study_mode)] = w_count |
---|
[3376] | 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)) |
---|
[3361] | 72 | for k,v in wrong_modes.items(): |
---|
| 73 | logger.info('wrong mode %s counted %d' % (k,v)) |
---|
[3365] | 74 | logger.info('missing courses %s (%d counted)' % (', '.join(missing_courses),len(students_with_missing_courses))) |
---|
[3353] | 75 | logger.info('found %d wrong of %d' % (len(wrong),count)) |
---|
[3376] | 76 | count = 0 |
---|
| 77 | for 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 |
---|