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 |
---|
20 | from zope.component.interfaces import IFactory |
---|
21 | from waeup.sirp.interfaces import ( |
---|
22 | ISessionConfiguration, IConfigurationContainer, ISessionConfigurationAdd) |
---|
23 | from waeup.sirp.utils.helpers import attrs_to_fields |
---|
24 | |
---|
25 | class ConfigurationContainer(grok.Container): |
---|
26 | """ |
---|
27 | The node containing the session configuration models |
---|
28 | """ |
---|
29 | |
---|
30 | grok.implements(IConfigurationContainer) |
---|
31 | |
---|
32 | def addSessionConfiguration(self, sessionconfiguration): |
---|
33 | """Add a session configuration object. |
---|
34 | """ |
---|
35 | if not ISessionConfiguration.providedBy(sessionconfiguration): |
---|
36 | raise TypeError( |
---|
37 | 'ConfigurationContainers contain only ISessionConfiguration instances') |
---|
38 | code = unicode(sessionconfiguration.academic_session) |
---|
39 | self[code] = sessionconfiguration |
---|
40 | return |
---|
41 | |
---|
42 | ConfigurationContainer = attrs_to_fields(ConfigurationContainer) |
---|
43 | |
---|
44 | class SessionConfiguration(grok.Model): |
---|
45 | """ |
---|
46 | Session configuration model |
---|
47 | """ |
---|
48 | |
---|
49 | grok.implements(ISessionConfiguration, ISessionConfigurationAdd) |
---|
50 | |
---|
51 | SessionConfiguration = attrs_to_fields(SessionConfiguration) |
---|
52 | |
---|
53 | class SessionConfigurationFactory(grok.GlobalUtility): |
---|
54 | """A factory for session configuration objects. |
---|
55 | """ |
---|
56 | grok.implements(IFactory) |
---|
57 | grok.name(u'waeup.SessionConfiguration') |
---|
58 | title = u"Create a new session configuration object.", |
---|
59 | description = u"This factory instantiates new session configurations." |
---|
60 | |
---|
61 | def __call__(self, *args, **kw): |
---|
62 | return SessionConfiguration(*args, **kw) |
---|
63 | |
---|
64 | def getInterfaces(self): |
---|
65 | return implementedBy(SessionConfiguration) |
---|