source: WAeUP_SRP/trunk/skins/waeup_student/deactivate_students.py @ 4818

Last change on this file since 4818 was 2729, checked in by joachim, 17 years ago

fix for #409

  • Property svn:keywords set to Id
File size: 3.7 KB
Line 
1## Script (Python) "deactivate_students"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=REQUEST
8##title=
9##
10# $Id: deactivate_students.py 2729 2007-11-21 14:32:20Z joachim $
11"""
12remove a list of students
13"""
14try:
15    from Products.zdb import set_trace
16except:
17    def set_trace():
18        pass
19
20import logging
21logger = logging.getLogger('Skins.deactivate_students')
22from Products.AdvancedQuery import Eq, Between, Le,In
23#aq_portal = context.portal_catalog_real.evalAdvancedQuery
24aq_students = context.students_catalog.evalAdvancedQuery
25students_folder = context.portal_url.getPortalObject().campus.students
26stdir = context.portal_directories.students
27mtool = context.portal_membership
28member = mtool.getAuthenticatedMember()
29rget = REQUEST.form.get
30info = {}
31info['member'] = member
32info['is_so'] = context.isSectionOfficer()
33ids = info['choosen_ids'] = rget('ids',[])
34search_list = rget('search_string','')
35delete = rget('delete',None)
36info['search_string'] = search_list
37student_ids = search_list.split()
38students = []
39psm = ''
40deleted_list = []
41if delete:
42    if not ids:
43        psm = "Nothing selected!"
44    else:
45        for student_id in ids:
46            student = getattr(students_folder,student_id,None)
47            student_state = context.portal_workflow.getInfoFor(student,'review_state',None)
48            if student is not None:
49                for object in student.objectValues():
50                    if context.portal_workflow.getInfoFor(object,'review_state',None) in ('open','created'):
51                        context.portal_workflow.doActionFor(object,'close')
52                try:
53                    context.portal_workflow.doActionFor(student,'deactivate')
54                except:
55                    logger.info("%s failed to deactivate student %s in state %s" % (member,student_id,student_state))
56                    deleted_list.append(student_id + ' (failed)')
57                    continue
58                logger.info("%s deactivated student %s" % (member,student_id))
59                deleted_list.append(student_id)
60            else:
61                logger.info("Student object %s not found" % (student_id))
62                continue
63        psm = "Deactivated: %s" % ' '.join(deleted_list)
64
65if student_ids:
66    brains = aq_students(In('id',student_ids) | In('matric_no', student_ids))
67    brains_dict = {}
68    if brains:
69        for b in brains:
70            if b.id in student_ids:
71                brains_dict[b.id] = b
72            elif b.matric_no in student_ids:
73                brains_dict[b.matric_no] = b
74    for student_id in student_ids:
75        student = {}
76        student['deleted'] = delete and student_id in ids
77        if student_id in brains_dict.keys():
78            brain = brains_dict[student_id]
79            student['id'] = brain.id
80            student['review_state'] = brain.review_state
81            student['jamb_reg_no'] = brain.jamb_reg_no
82            student['name'] = brain.name
83            student['matric_no'] = brain.matric_no
84            if brain.review_state == "deactivated":
85                student['found'] = False
86            else:
87                student['found'] = True
88        else:
89            student['found'] = False
90            student['id'] = student_id
91            student['jamb_reg_no'] = ""
92            student['name'] = "not found"
93            student['review_state'] = ""
94            student['matric_no'] = ''
95        student['show_checkbox'] = not student['deleted'] and student['found']
96        students.append(student)
97
98allowed = students_folder.isSectionOfficer()
99
100return context.deactivate_students_form(info = info,
101                                    students = students,
102                                    allowed = allowed,
103                                    psm = psm,
104                                    )
Note: See TracBrowser for help on using the repository browser.