source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/container.py @ 15497

Last change on this file since 15497 was 15497, checked in by Henrik Bettermann, 5 years ago

Extend traverse method of ApplicantsContainer? (requested by DSPG).

  • Property svn:keywords set to Id
File size: 5.0 KB
Line 
1## $Id: container.py 15497 2019-07-15 19:34:12Z 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##
18"""
19Containers for university applicants.
20"""
21from random import SystemRandom as r
22import grok
23import pytz
24from datetime import datetime
25import zope.location.location
26from zope.component import getUtility, ComponentLookupError
27from zope.component.factory import Factory
28from zope.component.interfaces import IFactory
29from zope.catalog.interfaces import ICatalog
30from waeup.kofa.interfaces import MessageFactory as _
31from waeup.kofa.applicants.interfaces import (
32    IApplicantsContainer, IApplicantsContainerAdd, IApplicant,
33    IApplicantsUtils)
34from waeup.kofa.utils.helpers import attrs_to_fields
35from waeup.kofa.utils.batching import VirtualExportJobContainer
36
37def generate_applicant_id(container=None):
38    if container is not None:
39        key = r().randint(99999,1000000)
40        while str(key) in container.keys():
41            key = r().randint(99999,1000000)
42        return u"%s_%d" % (container.code, key)
43    else:
44        # In some tests we don't use containers
45        return u"xxx_1234"
46
47class VirtualApplicantsExportJobContainer(VirtualExportJobContainer):
48    """A virtual export job container for certificates.
49    """
50
51class ApplicantsContainer(grok.Container):
52    """An applicants container contains university applicants.
53    """
54    grok.implements(IApplicantsContainer,IApplicantsContainerAdd)
55
56    description_dict = {}
57
58    local_roles = [
59        'waeup.local.ApplicationsManager',
60        ]
61
62    def addApplicant(self, applicant):
63        """Add an applicant.
64        """
65        if not IApplicant.providedBy(applicant):
66            raise TypeError(
67                'ApplicantsContainers contain only IApplicant instances')
68        if applicant.applicant_id is None:
69            applicant_id = generate_applicant_id(container=self)
70            applicant.applicant_id = applicant_id
71        self[applicant.application_number] = applicant
72        return
73
74    @property
75    def counts(self):
76        total = len(self)
77        code = self.code + '+'
78        cat = getUtility(ICatalog, name='applicants_catalog')
79        results = list(
80           cat.searchResults(container_code=(code, code)))
81        return len(self), len(results)
82
83    @property
84    def first_unused(self):
85        code = self.code + '-'
86        cat = getUtility(ICatalog, name='applicants_catalog')
87        results = list(
88           cat.searchResults(container_code=(code, code)))
89        if results:
90            return results[0]
91        return
92
93    @property
94    def statistics(self):
95        try:
96          statistics = getUtility(
97              IApplicantsUtils).getApplicantsStatistics(self)
98        except ComponentLookupError:  # happens in unit tests
99            return
100        return statistics
101
102    @property
103    def expired(self):
104        # Check if application has started ...
105        if not self.startdate or (
106            self.startdate > datetime.now(pytz.utc)):
107            return True
108        # ... or ended
109        if not self.enddate or (
110            self.enddate < datetime.now(pytz.utc)):
111            return True
112        return False
113
114    def writeLogMessage(self, view, message):
115        ob_class = view.__implemented__.__name__.replace('waeup.kofa.','')
116        self.__parent__.logger.info(
117            '%s - %s - %s' % (ob_class, self.code, message))
118        return
119
120    def traverse(self, name):
121        """Deliver virtual export container.
122        """
123        # create a virtual exports container and return it
124        container = VirtualApplicantsExportJobContainer()
125        if name == 'exports':
126            zope.location.location.located(container, self, 'exports')
127            return container
128        if name == 'bursary_exports':
129            zope.location.location.located(container, self, 'bursary_exports')
130            return container
131        return None
132
133ApplicantsContainer = attrs_to_fields(ApplicantsContainer)
134
135# ApplicantsContainers must be importable. So we need a factory.
136class ApplicantsContainerFactory(grok.GlobalUtility):
137    """A factory for student online payments.
138    """
139    grok.implements(IFactory)
140    grok.name(u'waeup.ApplicantsContainer')
141    title = u"Create a new container for applicants.",
142    description = u"This factory instantiates new IApplicantsContainer instances."
143
144    def __call__(self, *args, **kw):
145        return ApplicantsContainer()
146
147    def getInterfaces(self):
148        return implementedBy(ApplicantsContainer)
Note: See TracBrowser for help on using the repository browser.