[8057] | 1 | ## $Id: export.py 8947 2012-07-09 06:59:43Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
[7944] | 18 | """Exporters for student related stuff. |
---|
| 19 | """ |
---|
| 20 | import grok |
---|
| 21 | from zope.catalog.interfaces import ICatalog |
---|
| 22 | from zope.component import queryUtility |
---|
| 23 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[8015] | 24 | from waeup.kofa.students.interfaces import ( |
---|
[8371] | 25 | IStudent, IStudentStudyCourse, IStudentStudyLevel, ICourseTicket, |
---|
[8411] | 26 | IStudentOnlinePayment, ICSVStudentExporter) |
---|
[7944] | 27 | from waeup.kofa.utils.batching import ExporterBase |
---|
| 28 | from waeup.kofa.utils.helpers import iface_names |
---|
| 29 | |
---|
[8400] | 30 | #: A tuple containing all exporter names referring to students or |
---|
| 31 | #: subobjects thereof. |
---|
| 32 | EXPORTER_NAMES = ('students', 'studentstudycourses', 'studentstudylevels', |
---|
| 33 | 'coursetickets', 'studentpayments') |
---|
| 34 | |
---|
[8414] | 35 | def get_students(site): |
---|
| 36 | """Get all students registered in catalog in `site`. |
---|
[7944] | 37 | """ |
---|
[8414] | 38 | catalog = queryUtility( |
---|
| 39 | ICatalog, context=site, name='students_catalog', default=None) |
---|
| 40 | if catalog is None: |
---|
| 41 | return [] |
---|
| 42 | students = catalog.searchResults(student_id=(None, None)) |
---|
| 43 | return students |
---|
| 44 | |
---|
| 45 | def get_studycourses(students): |
---|
| 46 | """Get studycourses of `students`. |
---|
| 47 | """ |
---|
| 48 | return [x.get('studycourse', None) for x in students |
---|
| 49 | if x is not None] |
---|
| 50 | |
---|
| 51 | def get_levels(students): |
---|
| 52 | """Get all studylevels of `students`. |
---|
| 53 | """ |
---|
| 54 | levels = [] |
---|
| 55 | for course in get_studycourses(students): |
---|
| 56 | for level in course.values(): |
---|
| 57 | levels.append(level) |
---|
| 58 | return levels |
---|
| 59 | |
---|
| 60 | def get_tickets(students): |
---|
| 61 | """Get all course tickets of `students`. |
---|
| 62 | """ |
---|
| 63 | tickets = [] |
---|
| 64 | for level in get_levels(students): |
---|
| 65 | for ticket in level.values(): |
---|
| 66 | tickets.append(ticket) |
---|
| 67 | return tickets |
---|
| 68 | |
---|
| 69 | def get_payments(students): |
---|
| 70 | """Get all payments of `students`. |
---|
| 71 | """ |
---|
| 72 | payments = [] |
---|
| 73 | for student in students: |
---|
| 74 | for payment in student.get('payments', {}).values(): |
---|
| 75 | payments.append(payment) |
---|
| 76 | return payments |
---|
| 77 | |
---|
| 78 | |
---|
| 79 | class StudentExporterBase(ExporterBase): |
---|
| 80 | """Exporter for students or related objects. |
---|
| 81 | |
---|
| 82 | This is a baseclass. |
---|
| 83 | """ |
---|
| 84 | grok.baseclass() |
---|
[8411] | 85 | grok.implements(ICSVStudentExporter) |
---|
| 86 | grok.provides(ICSVStudentExporter) |
---|
[8414] | 87 | |
---|
| 88 | def export(self, values, filepath=None): |
---|
| 89 | """Export `values`, an iterable, as CSV file. |
---|
| 90 | |
---|
| 91 | If `filepath` is ``None``, a raw string with CSV data is returned. |
---|
| 92 | """ |
---|
| 93 | writer, outfile = self.get_csv_writer(filepath) |
---|
| 94 | for value in values: |
---|
| 95 | self.write_item(value, writer) |
---|
| 96 | return self.close_outfile(filepath, outfile) |
---|
| 97 | |
---|
| 98 | |
---|
| 99 | class StudentsExporter(grok.GlobalUtility, StudentExporterBase): |
---|
| 100 | """Exporter for Students. |
---|
| 101 | """ |
---|
[7944] | 102 | grok.name('students') |
---|
| 103 | |
---|
| 104 | #: Fieldnames considered by this exporter |
---|
[8493] | 105 | fields = tuple(sorted(iface_names( |
---|
| 106 | IStudent, omit=['loggerInfo']))) + ( |
---|
| 107 | 'password', 'state', 'history', 'certcode') |
---|
[7944] | 108 | |
---|
| 109 | #: The title under which this exporter will be displayed |
---|
| 110 | title = _(u'Students') |
---|
| 111 | |
---|
[8493] | 112 | def mangle_value(self, value, name, context=None): |
---|
| 113 | if name == 'history': |
---|
| 114 | value = value.messages |
---|
[8947] | 115 | if name == 'phone': |
---|
| 116 | # Append hash '#' to dates to circumvent unwanted excel automatic |
---|
| 117 | value = str('%s#' % value) |
---|
[8493] | 118 | return super( |
---|
| 119 | StudentsExporter, self).mangle_value( |
---|
| 120 | value, name, context=context) |
---|
| 121 | |
---|
[7944] | 122 | def export_all(self, site, filepath=None): |
---|
| 123 | """Export students into filepath as CSV data. |
---|
| 124 | |
---|
| 125 | If `filepath` is ``None``, a raw string with CSV data is returned. |
---|
| 126 | """ |
---|
[8414] | 127 | return self.export(get_students(site), filepath) |
---|
[7994] | 128 | |
---|
[8411] | 129 | def export_student(self, student, filepath=None): |
---|
| 130 | return self.export([student], filepath=filepath) |
---|
| 131 | |
---|
[8414] | 132 | |
---|
| 133 | class StudentStudyCourseExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[7994] | 134 | """Exporter for StudentStudyCourses. |
---|
| 135 | """ |
---|
| 136 | grok.name('studentstudycourses') |
---|
| 137 | |
---|
| 138 | #: Fieldnames considered by this exporter |
---|
[8493] | 139 | fields = tuple(sorted(iface_names(IStudentStudyCourse))) + ('student_id',) |
---|
[7994] | 140 | |
---|
| 141 | #: The title under which this exporter will be displayed |
---|
| 142 | title = _(u'Student Study Courses') |
---|
| 143 | |
---|
| 144 | def mangle_value(self, value, name, context=None): |
---|
[8493] | 145 | """Treat location values special. |
---|
[7994] | 146 | """ |
---|
| 147 | if name == 'certificate' and value is not None: |
---|
| 148 | # XXX: hopefully cert codes are unique site-wide |
---|
| 149 | value = value.code |
---|
[8493] | 150 | if name == 'student_id' and context is not None: |
---|
[8736] | 151 | student = context.student |
---|
[8493] | 152 | value = getattr(student, name, None) |
---|
[7994] | 153 | return super( |
---|
| 154 | StudentStudyCourseExporter, self).mangle_value( |
---|
| 155 | value, name, context=context) |
---|
| 156 | |
---|
| 157 | def export_all(self, site, filepath=None): |
---|
| 158 | """Export study courses into filepath as CSV data. |
---|
| 159 | |
---|
| 160 | If `filepath` is ``None``, a raw string with CSV data is returned. |
---|
| 161 | """ |
---|
[8414] | 162 | return self.export(get_studycourses(get_students(site)), filepath) |
---|
[8015] | 163 | |
---|
[8411] | 164 | def export_student(self, student, filepath=None): |
---|
[8414] | 165 | """Export studycourse of a single student object. |
---|
| 166 | """ |
---|
| 167 | return self.export(get_studycourses([student]), filepath) |
---|
[8411] | 168 | |
---|
| 169 | |
---|
[8414] | 170 | class StudentStudyLevelExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[8015] | 171 | """Exporter for StudentStudyLevels. |
---|
| 172 | """ |
---|
| 173 | grok.name('studentstudylevels') |
---|
| 174 | |
---|
| 175 | #: Fieldnames considered by this exporter |
---|
[8493] | 176 | fields = tuple(sorted(iface_names( |
---|
| 177 | IStudentStudyLevel) + ['level'])) + ('student_id',) |
---|
[8015] | 178 | |
---|
| 179 | #: The title under which this exporter will be displayed |
---|
| 180 | title = _(u'Student Study Levels') |
---|
| 181 | |
---|
| 182 | def mangle_value(self, value, name, context=None): |
---|
[8493] | 183 | """Treat location values special. |
---|
[8015] | 184 | """ |
---|
[8493] | 185 | if name == 'student_id' and context is not None: |
---|
[8736] | 186 | student = context.student |
---|
[8493] | 187 | value = getattr(student, name, None) |
---|
[8015] | 188 | return super( |
---|
| 189 | StudentStudyLevelExporter, self).mangle_value( |
---|
| 190 | value, name, context=context) |
---|
| 191 | |
---|
| 192 | def export_all(self, site, filepath=None): |
---|
| 193 | """Export study levels into filepath as CSV data. |
---|
| 194 | |
---|
| 195 | If `filepath` is ``None``, a raw string with CSV data is returned. |
---|
| 196 | """ |
---|
[8414] | 197 | return self.export(get_levels(get_students(site)), filepath) |
---|
[8342] | 198 | |
---|
[8411] | 199 | def export_student(self, student, filepath=None): |
---|
[8414] | 200 | return self.export(get_levels([student]), filepath) |
---|
[8411] | 201 | |
---|
[8414] | 202 | class CourseTicketExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[8342] | 203 | """Exporter for CourseTickets. |
---|
| 204 | """ |
---|
| 205 | grok.name('coursetickets') |
---|
| 206 | |
---|
| 207 | #: Fieldnames considered by this exporter |
---|
[8493] | 208 | fields = tuple(sorted(iface_names(ICourseTicket) + |
---|
| 209 | ['level', 'code', 'title', 'credits', |
---|
| 210 | 'passmark', 'semester', 'fcode', 'dcode'])) + ('student_id',) |
---|
[8342] | 211 | |
---|
| 212 | #: The title under which this exporter will be displayed |
---|
| 213 | title = _(u'Course Tickets') |
---|
| 214 | |
---|
| 215 | def mangle_value(self, value, name, context=None): |
---|
| 216 | """Treat location values special. |
---|
| 217 | """ |
---|
| 218 | if context is not None: |
---|
[8736] | 219 | student = context.student |
---|
[8493] | 220 | if name == 'student_id' and student is not None: |
---|
[8342] | 221 | value = getattr(student, name, None) |
---|
| 222 | if name == 'level': |
---|
[8393] | 223 | value = getattr(context, 'getLevel', lambda: None)() |
---|
[8342] | 224 | return super( |
---|
| 225 | CourseTicketExporter, self).mangle_value( |
---|
| 226 | value, name, context=context) |
---|
| 227 | |
---|
| 228 | def export_all(self, site, filepath=None): |
---|
| 229 | """Export course tickets into filepath as CSV data. |
---|
| 230 | |
---|
| 231 | If `filepath` is ``None``, a raw string with CSV data is returned. |
---|
| 232 | """ |
---|
[8414] | 233 | return self.export(get_tickets(get_students(site)), filepath) |
---|
[8342] | 234 | |
---|
[8411] | 235 | def export_student(self, student, filepath=None): |
---|
[8414] | 236 | return self.export(get_tickets([student]), filepath) |
---|
[8411] | 237 | |
---|
[8414] | 238 | |
---|
| 239 | class PaymentsExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[8371] | 240 | """Exporter for OnlinePayment instances. |
---|
| 241 | """ |
---|
| 242 | grok.name('studentpayments') |
---|
| 243 | |
---|
| 244 | #: Fieldnames considered by this exporter |
---|
| 245 | fields = tuple( |
---|
[8493] | 246 | sorted(iface_names( |
---|
| 247 | IStudentOnlinePayment, exclude_attribs=False))) + ('student_id',) |
---|
[8371] | 248 | |
---|
| 249 | #: The title under which this exporter will be displayed |
---|
[8576] | 250 | title = _(u'Student Payments') |
---|
[8371] | 251 | |
---|
| 252 | def mangle_value(self, value, name, context=None): |
---|
| 253 | """Treat location values special. |
---|
| 254 | """ |
---|
| 255 | if context is not None: |
---|
[8736] | 256 | student = context.student |
---|
[8493] | 257 | if name in ['student_id'] and student is not None: |
---|
[8371] | 258 | value = getattr(student, name, None) |
---|
| 259 | return super( |
---|
| 260 | PaymentsExporter, self).mangle_value( |
---|
| 261 | value, name, context=context) |
---|
| 262 | |
---|
| 263 | def export_all(self, site, filepath=None): |
---|
| 264 | """Export payments into filepath as CSV data. |
---|
| 265 | |
---|
| 266 | If `filepath` is ``None``, a raw string with CSV data is returned. |
---|
| 267 | """ |
---|
[8414] | 268 | return self.export(get_payments(get_students(site)), filepath) |
---|
[8411] | 269 | |
---|
| 270 | def export_student(self, student, filepath=None): |
---|
[8414] | 271 | return self.export(get_payments([student]), filepath) |
---|