source: main/waeup.sirp/trunk/src/waeup/sirp/app.py @ 6918

Last change on this file since 6918 was 6907, checked in by Henrik Bettermann, 13 years ago

Implement a configuration container. Transfer attributes from University class to ConfigurationContainer? class.

  • Property svn:eol-style set to native
File size: 2.9 KB
Line 
1import grok
2from hurry.file.interfaces import IFileRetrieval
3from zope.authentication.interfaces import IAuthentication
4from zope.component import getUtilitiesFor
5from zope.component.interfaces import ObjectEvent
6from zope.pluggableauth import PluggableAuthentication
7from waeup.sirp.authentication import setup_authentication
8from waeup.sirp.datacenter import DataCenter
9from waeup.sirp.students.container import StudentsContainer
10from waeup.sirp.imagestorage import ImageStorageFileRetrieval, ImageStorage
11from waeup.sirp.interfaces import (
12    IUniversity, IWAeUPSIRPPluggable, IObjectUpgradeEvent, )
13from waeup.sirp.users import UserContainer
14from waeup.sirp.utils.logger import Logger
15from waeup.sirp.utils.helpers import attrs_to_fields
16from waeup.sirp.configuration import ConfigurationContainer
17
18class University(grok.Application, grok.Container, Logger):
19    """A university.
20    """
21    grok.implements(IUniversity)
22
23    # Setup authentication for this app. Note: this is only
24    # initialized, when a new instance of this app is created.
25    grok.local_utility(
26        PluggableAuthentication, provides = IAuthentication,
27        setup = setup_authentication,)
28
29    grok.local_utility(
30        ImageStorageFileRetrieval, provides = IFileRetrieval)
31
32    def __init__(self, *args, **kw):
33        super(University, self).__init__(*args, **kw)
34        self.setup()
35        return
36
37    def setup(self):
38        """Setup some hard-wired components.
39
40        Create local datacenter, containers for users, students and
41        the like.
42        """
43        self['users'] = UserContainer()
44        self['datacenter'] = DataCenter()
45        self['images'] = ImageStorage()
46        self['students'] = StudentsContainer()
47        self['configuration'] = ConfigurationContainer()
48        self._createPlugins()
49
50    def _createPlugins(self):
51        """Create instances of all plugins defined somewhere.
52        """
53        for name, plugin in getUtilitiesFor(IWAeUPSIRPPluggable):
54            plugin.setup(self, name, self.logger)
55        return
56
57    def updatePlugins(self):
58        """Lookup all plugins and call their `update()` method.
59        """
60        name = getattr(self, '__name__', '<Unnamed>')
61        self.logger.info('Fire upgrade event for site %s' % name)
62        grok.notify(ObjectUpgradeEvent(self))
63        self.logger.info('Done.')
64        self.logger.info('Now upgrading any plugins.')
65        for name, plugin in getUtilitiesFor(IWAeUPSIRPPluggable):
66            plugin.update(self, name, self.logger)
67        self.logger.info('Plugin update finished.')
68        return
69attrs_to_fields(University)
70
71class ObjectUpgradeEvent(ObjectEvent):
72    """An event fired, when datacenter storage moves.
73    """
74    grok.implements(IObjectUpgradeEvent)
75
76@grok.subscribe(University, grok.IObjectAddedEvent)
77def handle_university_added(app, event):
78    app.logger.info('University `%s` added.' % getattr(app, '__name__', None))
79    return
Note: See TracBrowser for help on using the repository browser.