[3521] | 1 | import grok |
---|
[6522] | 2 | from hurry.file.interfaces import IFileRetrieval |
---|
[6362] | 3 | from zope.authentication.interfaces import IAuthentication |
---|
[5071] | 4 | from zope.component import createObject, getUtilitiesFor |
---|
[6137] | 5 | from zope.component.interfaces import ObjectEvent |
---|
[6362] | 6 | from zope.pluggableauth import PluggableAuthentication |
---|
[5054] | 7 | from waeup.sirp.authentication import setup_authentication |
---|
| 8 | from waeup.sirp.datacenter import DataCenter |
---|
[6522] | 9 | from waeup.sirp.imagestorage import ImageStorageFileRetrieval, ImageStorage |
---|
[5016] | 10 | from waeup.sirp.interfaces import ( |
---|
[6578] | 11 | IUniversity, IWAeUPSIRPPluggable, IObjectUpgradeEvent, ) |
---|
[4920] | 12 | from waeup.sirp.users import UserContainer |
---|
[6578] | 13 | from waeup.sirp.utils.logger import Logger |
---|
[6361] | 14 | from waeup.sirp.utils.helpers import attrs_to_fields |
---|
[4789] | 15 | |
---|
[6578] | 16 | class University(grok.Application, grok.Container, Logger): |
---|
[4789] | 17 | """A university. |
---|
| 18 | """ |
---|
[4968] | 19 | grok.implements(IUniversity) |
---|
[6129] | 20 | |
---|
[4789] | 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, |
---|
[5054] | 25 | setup = setup_authentication,) |
---|
[5345] | 26 | |
---|
[6522] | 27 | grok.local_utility( |
---|
| 28 | ImageStorageFileRetrieval, provides = IFileRetrieval) |
---|
| 29 | |
---|
[6361] | 30 | def __init__(self, name=None, skin=None, title=None, |
---|
| 31 | frontpage=None, **kw): |
---|
[3521] | 32 | super(University, self).__init__(**kw) |
---|
[6361] | 33 | if name is not None: |
---|
| 34 | self.name = name |
---|
| 35 | if skin is not None: |
---|
| 36 | self.skin = skin |
---|
| 37 | if title is not None: |
---|
| 38 | self.title = title |
---|
| 39 | if frontpage is not None: |
---|
| 40 | self.frontpage = frontpage |
---|
[4789] | 41 | self.setup() |
---|
[3521] | 42 | |
---|
[4789] | 43 | def setup(self): |
---|
[5345] | 44 | """Setup some hard-wired components. |
---|
| 45 | |
---|
| 46 | Create local datacenter, containers for users, students and |
---|
| 47 | the like. |
---|
| 48 | """ |
---|
[4789] | 49 | self['users'] = UserContainer() |
---|
| 50 | self['datacenter'] = DataCenter() |
---|
[6522] | 51 | self['images'] = ImageStorage() |
---|
[4874] | 52 | |
---|
[5016] | 53 | self['students'] = createObject(u'waeup.StudentContainer') |
---|
| 54 | self['hostels'] = createObject(u'waeup.HostelContainer') |
---|
| 55 | self._createPlugins() |
---|
| 56 | |
---|
| 57 | def _createPlugins(self): |
---|
| 58 | """Create instances of all plugins defined somewhere. |
---|
| 59 | """ |
---|
[5071] | 60 | for name, plugin in getUtilitiesFor(IWAeUPSIRPPluggable): |
---|
| 61 | plugin.setup(self, name, self.logger) |
---|
| 62 | return |
---|
[5421] | 63 | |
---|
| 64 | def updatePlugins(self): |
---|
| 65 | """Lookup all plugins and call their `update()` method. |
---|
| 66 | """ |
---|
[6138] | 67 | name = getattr(self, '__name__', '<Unnamed>') |
---|
| 68 | self.logger.info('Fire upgrade event for site %s' % name) |
---|
| 69 | grok.notify(ObjectUpgradeEvent(self)) |
---|
| 70 | self.logger.info('Done.') |
---|
| 71 | self.logger.info('Now upgrading any plugins.') |
---|
[5421] | 72 | for name, plugin in getUtilitiesFor(IWAeUPSIRPPluggable): |
---|
| 73 | plugin.update(self, name, self.logger) |
---|
[6138] | 74 | self.logger.info('Plugin update finished.') |
---|
[5421] | 75 | return |
---|
[6361] | 76 | attrs_to_fields(University) |
---|
[4884] | 77 | |
---|
[6137] | 78 | class ObjectUpgradeEvent(ObjectEvent): |
---|
| 79 | """An event fired, when datacenter storage moves. |
---|
| 80 | """ |
---|
| 81 | grok.implements(IObjectUpgradeEvent) |
---|
[6578] | 82 | |
---|
| 83 | @grok.subscribe(University, grok.IObjectAddedEvent) |
---|
| 84 | def handle_university_add(app, event): |
---|
| 85 | app.logger.info('University `%s` added.' % getattr(app, '__name__', None)) |
---|
| 86 | return |
---|