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