source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/export.py @ 12294

Last change on this file since 12294 was 12180, checked in by Henrik Bettermann, 10 years ago

Choose consistent exporter names.

  • Property svn:keywords set to Id
File size: 4.8 KB
RevLine 
[7865]1## $Id: export.py 12180 2014-12-09 05:21:31Z henrik $
2##
3## Copyright (C) 2012 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##
18"""Exporters for applicant-related stuff.
19"""
20import grok
[7914]21from zope.catalog.interfaces import ICatalog
22from zope.component import queryUtility
[8724]23from waeup.kofa.applicants.interfaces import (
24    IApplicantBaseData, IApplicantsContainer)
[7865]25from waeup.kofa.interfaces import ICSVExporter
[7906]26from waeup.kofa.interfaces import MessageFactory as _
[7865]27from waeup.kofa.utils.batching import ExporterBase
[8724]28from waeup.kofa.utils.helpers import iface_names
[7865]29
30class ApplicantsContainerExporter(grok.GlobalUtility, ExporterBase):
31    """Exporter for ApplicantsContainers.
32    """
33    grok.implements(ICSVExporter)
34    grok.name('applicantscontainers')
35
36    #: Fieldnames considered by this exporter
[8724]37    fields = tuple(sorted(iface_names(IApplicantsContainer)))
[7906]38    #: The title under which this exporter will be displayed
[12180]39    title = _(u'Applicants Containers')
[7906]40
41    def mangle_value(self, value, name, context=None):
42        return super(
43            ApplicantsContainerExporter, self).mangle_value(
44            value, name, context=context)
45
[7865]46    def export(self, containers, filepath=None):
47        """Export `containers`, an iterable, as CSV file.
48
49        If `filepath` is ``None``, a raw string with CSV data is returned.
50        """
51        writer, outfile = self.get_csv_writer(filepath)
52        for container in containers:
53            self.write_item(container, writer)
54        return self.close_outfile(filepath, outfile)
55
56    def export_all(self, site, filepath=None):
57        """Export applicantscontainer into filepath as CSV data.
58
59        If `filepath` is ``None``, a raw string with CSV data is returned.
60        """
61        writer, outfile = self.get_csv_writer(filepath)
62        containers = site.get('applicants', {})
63        return self.export(containers.values(), filepath)
[7914]64
[12079]65class ApplicantExporter(grok.GlobalUtility, ExporterBase):
[7914]66    """Exporter for Applicants.
67    """
68    grok.implements(ICSVExporter)
69    grok.name('applicants')
70
71    #: Fieldnames considered by this exporter
[8377]72    fields = tuple(sorted(IApplicantBaseData.names())) + ('container_code',)
[7914]73
74    #: The title under which this exporter will be displayed
75    title = _(u'Applicants')
76
[7924]77    def mangle_value(self, value, name, context=None):
78        if name in (
79            'course1', 'course2', 'course_admitted') and value is not None:
80            value = value.code
[8052]81        #elif name == 'school_grades':
82        #    value = [eval(entry.to_string()) for entry in value]
83        elif name == 'history':
84            value = value.messages
[9117]85        elif name == 'phone' and value is not None:
86            # Append hash '#' to phone numbers to circumvent
87            # unwanted excel automatic
88            value = str('%s#' % value)
[7914]89        return super(
[12079]90            ApplicantExporter, self).mangle_value(
[7914]91            value, name, context=context)
92
93    def export(self, applicants, filepath=None):
94        """Export `applicants`, an iterable, as CSV file.
95
96        If `filepath` is ``None``, a raw string with CSV data is returned.
97        """
98        writer, outfile = self.get_csv_writer(filepath)
99        for applicant in applicants:
100            self.write_item(applicant, writer)
101        return self.close_outfile(filepath, outfile)
102
103    def export_all(self, site, filepath=None):
104        """Export applicants into filepath as CSV data.
105
106        If `filepath` is ``None``, a raw string with CSV data is returned.
107        """
108        catalog = queryUtility(
109            ICatalog, context=site, name='applicants_catalog', default=None)
110        if catalog is None:
111            return self.export([], filepath)
112        applicants = catalog.searchResults(
[7924]113            # reg_num might not be set and then would not be found.
114            # We therefore search for applicant_id.
115            applicant_id=(None, None))
[7914]116        return self.export(applicants, filepath)
[10653]117
118    def export_filtered(self, site, filepath=None, **kw):
119        """Export applicants in container.
120
121        If `filepath` is ``None``, a raw string with CSV data should
122        be returned.
123        """
[10654]124        container = grok.getSite()['applicants'][kw['container']]
125        return self.export(container.values(), filepath=filepath)
Note: See TracBrowser for help on using the repository browser.