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

Last change on this file since 8376 was 8376, checked in by Henrik Bettermann, 13 years ago

Add the hash symbol at the end of all dates.
This is to avoid annoying automatic date transformation
by Excel or Calc.

  • Property svn:keywords set to Id
File size: 4.6 KB
Line 
1## $Id: export.py 8376 2012-05-07 05:57:46Z 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
21from zope.catalog.interfaces import ICatalog
22from zope.component import queryUtility
23from waeup.kofa.applicants.interfaces import IApplicantBaseData
24from waeup.kofa.interfaces import ICSVExporter
25from waeup.kofa.interfaces import MessageFactory as _
26from waeup.kofa.utils.batching import ExporterBase
27
28class ApplicantsContainerExporter(grok.GlobalUtility, ExporterBase):
29    """Exporter for ApplicantsContainers.
30    """
31    grok.implements(ICSVExporter)
32    grok.name('applicantscontainers')
33
34    #: Fieldnames considered by this exporter
35    fields = ('code', 'title', 'prefix', 'year',
36              'application_category', 'description',
37              'startdate', 'enddate', 'strict_deadline')
38
39    #: The title under which this exporter will be displayed
40    title = _(u'Basic Applicants Containers')
41
42    def mangle_value(self, value, name, context=None):
43        return super(
44            ApplicantsContainerExporter, self).mangle_value(
45            value, name, context=context)
46
47    def export(self, containers, filepath=None):
48        """Export `containers`, an iterable, as CSV file.
49
50        If `filepath` is ``None``, a raw string with CSV data is returned.
51        """
52        writer, outfile = self.get_csv_writer(filepath)
53        for container in containers:
54            self.write_item(container, writer)
55        return self.close_outfile(filepath, outfile)
56
57    def export_all(self, site, filepath=None):
58        """Export applicantscontainer into filepath as CSV data.
59
60        If `filepath` is ``None``, a raw string with CSV data is returned.
61        """
62        writer, outfile = self.get_csv_writer(filepath)
63        containers = site.get('applicants', {})
64        return self.export(containers.values(), filepath)
65
66class ApplicantsExporter(grok.GlobalUtility, ExporterBase):
67    """Exporter for Applicants.
68    """
69    grok.implements(ICSVExporter)
70    grok.name('applicants')
71
72    #: Fieldnames considered by this exporter
73    fields = tuple(sorted(IApplicantBaseData.names()))
74
75    #: The title under which this exporter will be displayed
76    title = _(u'Applicants')
77
78    def mangle_value(self, value, name, context=None):
79        # Add the hash symbol at the end of dates.
80        # This is to avoid annoying automatic date transformation
81        # by Excel or Calc.
82        if name in ('date_of_birth', 'emp_start', 'emp_end',
83            'emp2_start', 'emp2_end') and value is not None:
84            value = str(value) + '#'
85        if name in (
86            'course1', 'course2', 'course_admitted') and value is not None:
87            value = value.code
88        #elif name == 'school_grades':
89        #    value = [eval(entry.to_string()) for entry in value]
90        elif name == 'history':
91            value = value.messages
92        return super(
93            ApplicantsExporter, self).mangle_value(
94            value, name, context=context)
95
96    def export(self, applicants, filepath=None):
97        """Export `applicants`, an iterable, as CSV file.
98
99        If `filepath` is ``None``, a raw string with CSV data is returned.
100        """
101        writer, outfile = self.get_csv_writer(filepath)
102        for applicant in applicants:
103            self.write_item(applicant, writer)
104        return self.close_outfile(filepath, outfile)
105
106    def export_all(self, site, filepath=None):
107        """Export applicants into filepath as CSV data.
108
109        If `filepath` is ``None``, a raw string with CSV data is returned.
110        """
111        catalog = queryUtility(
112            ICatalog, context=site, name='applicants_catalog', default=None)
113        if catalog is None:
114            return self.export([], filepath)
115        applicants = catalog.searchResults(
116            # reg_num might not be set and then would not be found.
117            # We therefore search for applicant_id.
118            applicant_id=(None, None))
119        return self.export(applicants, filepath)
Note: See TracBrowser for help on using the repository browser.