source: main/waeup.ikoba/trunk/src/waeup/ikoba/app.py @ 12281

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

Change contract_id generation algorithm. Use Universally Unique IDentifiers instead of consecutive numbers.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.9 KB
Line 
1## $Id: app.py 12258 2014-12-18 14:44:30Z 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##
18import grok
19from zope.authentication.interfaces import IAuthentication
20from zope.component import getUtility, getUtilitiesFor
21from zope.component.interfaces import ObjectEvent
22from zope.pluggableauth import PluggableAuthentication
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 (
27    ICompany, IIkobaPluggable, IObjectUpgradeEvent, IJobManager,
28    VIRT_JOBS_CONTAINER_NAME)
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
33
34from waeup.ikoba.customers.container import CustomersContainer
35from waeup.ikoba.products.container import ProductsContainer
36from waeup.ikoba.documents.container import DocumentsContainer
37
38
39class Company(grok.Application, grok.Container, Logger):
40    """A company.
41    """
42    grok.implements(ICompany)
43
44    # Setup authentication for this app. Note: this is only
45    # initialized, when a new instance of this app is created.
46    grok.local_utility(
47        PluggableAuthentication, provides = IAuthentication,
48        setup = setup_authentication,)
49
50    def __init__(self, *args, **kw):
51        super(Company, self).__init__(*args, **kw)
52        self.setup()
53        return
54
55    def setup(self):
56        """Setup some hard-wired components.
57
58        Create local datacenter, containers for users and
59        the like.
60        """
61
62        self['users'] = UsersContainer()
63        self['datacenter'] = DataCenter()
64        self['configuration'] = ConfigurationContainer()
65        self['mandates'] = MandatesContainer()
66        self['customers'] = CustomersContainer()
67        self['products'] = ProductsContainer()
68        self['documents'] = DocumentsContainer()
69        self._createPlugins()
70
71    def _createPlugins(self):
72        """Create instances of all plugins defined somewhere.
73        """
74        for name, plugin in getUtilitiesFor(IIkobaPluggable):
75            plugin.setup(self, name, self.logger)
76        return
77
78    def traverse(self, name):
79        if name == VIRT_JOBS_CONTAINER_NAME:
80            return getUtility(IJobManager)
81        return None
82
83    def updatePlugins(self):
84        """Lookup all plugins and call their `update()` method.
85        """
86        name = getattr(self, '__name__', '<Unnamed>')
87        self.logger.info('Fire upgrade event for site %s' % name)
88        grok.notify(ObjectUpgradeEvent(self))
89        self.logger.info('Done.')
90        self.logger.info('Now upgrading any plugins.')
91        for name, plugin in getUtilitiesFor(IIkobaPluggable):
92            plugin.update(self, name, self.logger)
93        self.logger.info('Plugin update finished.')
94        return
95
96attrs_to_fields(Company)
97
98
99class ObjectUpgradeEvent(ObjectEvent):
100    """An event fired, when datacenter storage moves.
101    """
102    grok.implements(IObjectUpgradeEvent)
103
104@grok.subscribe(Company, grok.IObjectAddedEvent)
105def handle_company_added(app, event):
106    """If a company is added, a message is logged.
107    """
108    app.logger.info('Company `%s` added.' % getattr(app, '__name__', None))
109    return
Note: See TracBrowser for help on using the repository browser.