## $Id: container.py 8665 2012-06-10 08:59:49Z henrik $ ## ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## """ Containers for university applicants. """ from random import SystemRandom as r import grok import pytz from datetime import datetime from zope.component import getUtility from zope.component.factory import Factory from zope.component.interfaces import IFactory from waeup.kofa.interfaces import MessageFactory as _ from waeup.kofa.applicants.interfaces import ( IApplicantsContainer, IApplicantsContainerAdd, IApplicant, IApplicantsUtils) from waeup.kofa.utils.helpers import attrs_to_fields def generate_applicant_id(container=None): if container is not None: key = r().randint(99999,1000000) while str(key) in container.keys(): key = r().randint(99999,1000000) return u"%s_%d" % (container.code, key) else: # In some tests we don't use containers return u"xxx_1234" class ApplicantsContainer(grok.Container): """An applicants container contains university applicants. """ grok.implements(IApplicantsContainer,IApplicantsContainerAdd) #: A dictionary to hold per language translations of description string. description_dict = {} @property def local_roles(self): return [] def archive(self, app_ids=None): """Create on-dist archive of applicants stored in this term. If app_ids is `None`, all applicants are archived. If app_ids contains a single id string, only the respective applicants are archived. If app_ids contains a list of id strings all of the respective applicants types are saved to disk. """ raise NotImplementedError() def clear(self, app_ids=None, archive=True): """Remove applicants of type given by 'id'. Optionally archive the applicants. If id is `None`, all applicants are archived. If id contains a single id string, only the respective applicants are archived. If id contains a list of id strings all of the respective applicant types are saved to disk. If `archive` is ``False`` none of the archive-handling is done and respective applicants are simply removed from the database. """ raise NotImplementedError() def addApplicant(self, applicant): """Add an applicant. """ if not IApplicant.providedBy(applicant): raise TypeError( 'ApplicantsContainers contain only IApplicant instances') if applicant.applicant_id is None: applicant_id = generate_applicant_id(container=self) applicant.applicant_id = applicant_id self[applicant.application_number] = applicant return @property def statistics(self): return getUtility(IApplicantsUtils).getApplicantsStatistics(self) @property def expired(self): # Check if application has started ... if not self.startdate or ( self.startdate > datetime.now(pytz.utc)): return True # ... or ended if not self.enddate or ( self.enddate < datetime.now(pytz.utc)): return True return False ApplicantsContainer = attrs_to_fields(ApplicantsContainer) # ApplicantsContainers must be importable. So we need a factory. class ApplicantsContainerFactory(grok.GlobalUtility): """A factory for student online payments. """ grok.implements(IFactory) grok.name(u'waeup.ApplicantsContainer') title = u"Create a new container for applicants.", description = u"This factory instantiates new IApplicantsContainer instances." def __call__(self, *args, **kw): return ApplicantsContainer() def getInterfaces(self): return implementedBy(ApplicantsContainer)