source: main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/app.py @ 11957

Last change on this file since 11957 was 11956, checked in by Henrik Bettermann, 10 years ago

Add container for customers.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.7 KB
RevLine 
[7193]1## $Id: app.py 11956 2014-11-14 07:26:14Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
[3521]18import grok
[6362]19from zope.authentication.interfaces import IAuthentication
[9217]20from zope.component import getUtility, getUtilitiesFor
[6137]21from zope.component.interfaces import ObjectEvent
[6362]22from zope.pluggableauth import PluggableAuthentication
[11949]23from waeup.ikoba.authentication import setup_authentication
24from waeup.ikoba.datacenter import DataCenter
25from waeup.ikoba.mandates.container import MandatesContainer
26from waeup.ikoba.interfaces import (
[11954]27    ICompany, IIkobaPluggable, IObjectUpgradeEvent, IJobManager,
[9217]28    VIRT_JOBS_CONTAINER_NAME)
[11949]29from waeup.ikoba.userscontainer import UsersContainer
30from waeup.ikoba.utils.logger import Logger
31from waeup.ikoba.utils.helpers import attrs_to_fields
32from waeup.ikoba.configuration import ConfigurationContainer
[4789]33
[11956]34from waeup.ikoba.customers.container import CustomersContainer
35
[11954]36class Company(grok.Application, grok.Container, Logger):
37    """A company.
[4789]38    """
[11954]39    grok.implements(ICompany)
[6129]40
[4789]41    # Setup authentication for this app. Note: this is only
42    # initialized, when a new instance of this app is created.
43    grok.local_utility(
44        PluggableAuthentication, provides = IAuthentication,
[5054]45        setup = setup_authentication,)
[5345]46
[6592]47    def __init__(self, *args, **kw):
[11954]48        super(Company, self).__init__(*args, **kw)
[4789]49        self.setup()
[6592]50        return
[3521]51
[4789]52    def setup(self):
[5345]53        """Setup some hard-wired components.
54
[11947]55        Create local datacenter, containers for users and
[5345]56        the like.
57        """
[9217]58
[7172]59        self['users'] = UsersContainer()
[4789]60        self['datacenter'] = DataCenter()
[6907]61        self['configuration'] = ConfigurationContainer()
[8846]62        self['mandates'] = MandatesContainer()
[11956]63        self['customers'] = CustomersContainer()
[5016]64        self._createPlugins()
65
66    def _createPlugins(self):
67        """Create instances of all plugins defined somewhere.
68        """
[11949]69        for name, plugin in getUtilitiesFor(IIkobaPluggable):
[5071]70            plugin.setup(self, name, self.logger)
71        return
[5421]72
[9217]73    def traverse(self, name):
74        if name == VIRT_JOBS_CONTAINER_NAME:
75            return getUtility(IJobManager)
76        return None
77
[5421]78    def updatePlugins(self):
79        """Lookup all plugins and call their `update()` method.
80        """
[6138]81        name = getattr(self, '__name__', '<Unnamed>')
82        self.logger.info('Fire upgrade event for site %s' % name)
83        grok.notify(ObjectUpgradeEvent(self))
84        self.logger.info('Done.')
85        self.logger.info('Now upgrading any plugins.')
[11949]86        for name, plugin in getUtilitiesFor(IIkobaPluggable):
[5421]87            plugin.update(self, name, self.logger)
[6138]88        self.logger.info('Plugin update finished.')
[5421]89        return
[11954]90attrs_to_fields(Company)
[4884]91
[6137]92class ObjectUpgradeEvent(ObjectEvent):
93    """An event fired, when datacenter storage moves.
94    """
95    grok.implements(IObjectUpgradeEvent)
[6578]96
[11954]97@grok.subscribe(Company, grok.IObjectAddedEvent)
98def handle_company_added(app, event):
99    """If a company is added, a message is logged.
[11477]100    """
[11954]101    app.logger.info('Company `%s` added.' % getattr(app, '__name__', None))
[6578]102    return
Note: See TracBrowser for help on using the repository browser.