[7195] | 1 | ## $Id: facultiescontainer.py 8367 2012-05-06 11:19:38Z 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 | ## |
---|
[3526] | 18 | import grok |
---|
[4789] | 19 | from zope.component.interfaces import IFactory |
---|
| 20 | from zope.interface import implementedBy |
---|
[7819] | 21 | from waeup.kofa.interfaces import IKofaPluggable |
---|
[7811] | 22 | from waeup.kofa.university.interfaces import IFacultiesContainer, IFaculty |
---|
[3526] | 23 | |
---|
[7333] | 24 | class FacultiesContainer(grok.Container): |
---|
[4789] | 25 | """See interfaces for description. |
---|
| 26 | """ |
---|
[7333] | 27 | grok.implements(IFacultiesContainer) |
---|
[4789] | 28 | |
---|
| 29 | def addFaculty(self, faculty): |
---|
| 30 | if not IFaculty.providedBy(faculty): |
---|
[7725] | 31 | raise TypeError( |
---|
| 32 | 'FacultiesContainers contain only IFaculty instances') |
---|
[4789] | 33 | self[faculty.code] = faculty |
---|
| 34 | return |
---|
| 35 | |
---|
[7333] | 36 | class FacultiesContainerFactory(grok.GlobalUtility): |
---|
[4789] | 37 | """A factory for faculty containers. |
---|
| 38 | """ |
---|
| 39 | grok.implements(IFactory) |
---|
[7333] | 40 | grok.name(u'waeup.FacultiesContainer') |
---|
| 41 | title = u"Create a new facultiescontainer.", |
---|
| 42 | description = u"This factory instantiates new containers for faculties." |
---|
[4789] | 43 | |
---|
[4976] | 44 | def __call__(self, *args, **kw): |
---|
[7333] | 45 | return FacultiesContainer(*args, **kw) |
---|
[4789] | 46 | |
---|
| 47 | def getInterfaces(self): |
---|
[7333] | 48 | return implementedBy(FacultiesContainer) |
---|
[5014] | 49 | |
---|
| 50 | class AcademicsPlugin(grok.GlobalUtility): |
---|
[7333] | 51 | """A plugin that creates container for faculties inside a university. |
---|
[5014] | 52 | """ |
---|
[7819] | 53 | grok.implements(IKofaPluggable) |
---|
[5070] | 54 | grok.name('faculties') |
---|
[5014] | 55 | |
---|
[5070] | 56 | def setup(self, site, name, logger): |
---|
| 57 | if 'faculties' in site.keys(): |
---|
[7819] | 58 | logger.warn('Could not create container for faculties in Kofa.') |
---|
[5070] | 59 | return |
---|
[7333] | 60 | site['faculties'] = FacultiesContainer() |
---|
| 61 | logger.info('Container for faculties created') |
---|
[5070] | 62 | return |
---|
[5014] | 63 | |
---|
[5070] | 64 | def update(self, site, name, logger): |
---|
[6575] | 65 | if not 'faculties' in site.keys(): |
---|
| 66 | self.setup(site, name, logger) |
---|
| 67 | |
---|