[6907] | 1 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 2 | ## This program is free software; you can redistribute it and/or modify |
---|
| 3 | ## it under the terms of the GNU General Public License as published by |
---|
| 4 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 5 | ## (at your option) any later version. |
---|
| 6 | ## |
---|
| 7 | ## This program is distributed in the hope that it will be useful, |
---|
| 8 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 9 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 10 | ## GNU General Public License for more details. |
---|
| 11 | ## |
---|
| 12 | ## You should have received a copy of the GNU General Public License |
---|
| 13 | ## along with this program; if not, write to the Free Software |
---|
| 14 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 15 | ## |
---|
| 16 | """ |
---|
| 17 | Containers for session configuration objects. |
---|
| 18 | """ |
---|
| 19 | import grok |
---|
[6916] | 20 | from zope.component.interfaces import IFactory |
---|
[6920] | 21 | from zope.interface import implementedBy |
---|
[6907] | 22 | from waeup.sirp.interfaces import ( |
---|
[6918] | 23 | ISessionConfiguration, IConfigurationContainer, ISessionConfigurationAdd, |
---|
| 24 | academic_sessions_vocab) |
---|
[6907] | 25 | from waeup.sirp.utils.helpers import attrs_to_fields |
---|
| 26 | |
---|
| 27 | class ConfigurationContainer(grok.Container): |
---|
| 28 | """ |
---|
| 29 | The node containing the session configuration models |
---|
| 30 | """ |
---|
| 31 | |
---|
| 32 | grok.implements(IConfigurationContainer) |
---|
| 33 | |
---|
| 34 | def addSessionConfiguration(self, sessionconfiguration): |
---|
| 35 | """Add a session configuration object. |
---|
| 36 | """ |
---|
| 37 | if not ISessionConfiguration.providedBy(sessionconfiguration): |
---|
| 38 | raise TypeError( |
---|
[6916] | 39 | 'ConfigurationContainers contain only ISessionConfiguration instances') |
---|
| 40 | code = unicode(sessionconfiguration.academic_session) |
---|
| 41 | self[code] = sessionconfiguration |
---|
[6907] | 42 | return |
---|
| 43 | |
---|
| 44 | ConfigurationContainer = attrs_to_fields(ConfigurationContainer) |
---|
[6916] | 45 | |
---|
| 46 | class SessionConfiguration(grok.Model): |
---|
| 47 | """ |
---|
| 48 | Session configuration model |
---|
| 49 | """ |
---|
| 50 | |
---|
| 51 | grok.implements(ISessionConfiguration, ISessionConfigurationAdd) |
---|
| 52 | |
---|
[6918] | 53 | def getSessionString(self): |
---|
| 54 | return academic_sessions_vocab.getTerm(self.academic_session).title |
---|
| 55 | |
---|
[6916] | 56 | SessionConfiguration = attrs_to_fields(SessionConfiguration) |
---|
| 57 | |
---|
| 58 | class SessionConfigurationFactory(grok.GlobalUtility): |
---|
| 59 | """A factory for session configuration objects. |
---|
| 60 | """ |
---|
| 61 | grok.implements(IFactory) |
---|
| 62 | grok.name(u'waeup.SessionConfiguration') |
---|
| 63 | title = u"Create a new session configuration object.", |
---|
| 64 | description = u"This factory instantiates new session configurations." |
---|
| 65 | |
---|
| 66 | def __call__(self, *args, **kw): |
---|
| 67 | return SessionConfiguration(*args, **kw) |
---|
| 68 | |
---|
| 69 | def getInterfaces(self): |
---|
| 70 | return implementedBy(SessionConfiguration) |
---|