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

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

First products browser components.

  • work in progress -
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.6 KB
Line 
1## $Id: app.py 12065 2014-11-26 18:23:23Z 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
36
37
38class Company(grok.Application, grok.Container, Logger):
39    """A company.
40    """
41    grok.implements(ICompany)
42
43    _curr_doc_id = 101
44
45    # Setup authentication for this app. Note: this is only
46    # initialized, when a new instance of this app is created.
47    grok.local_utility(
48        PluggableAuthentication, provides = IAuthentication,
49        setup = setup_authentication,)
50
51    def __init__(self, *args, **kw):
52        super(Company, self).__init__(*args, **kw)
53        self.setup()
54        return
55
56    @property
57    def unique_document_id(self):
58        """A unique document id for all documents in company.
59
60        The document id returned is guaranteed to be unique. It
61        consists of some prefix (normally a single letter) followed by
62        a number with at least 7 digits.
63
64        Once a document id was issued, it won't be issued again.
65
66        Obtaining a document id is currently not thread-safe but can be
67        made easily by enabling commented lines.
68        """
69        # lock.acquire() # lock data
70        new_id = u'd%s' % (self._curr_doc_id)
71        self._curr_doc_id += 1
72        # self._p_changed = True
73        # commit()
74        # lock.release() # end of lock
75        return new_id
76
77    def setup(self):
78        """Setup some hard-wired components.
79
80        Create local datacenter, containers for users and
81        the like.
82        """
83
84        self['users'] = UsersContainer()
85        self['datacenter'] = DataCenter()
86        self['configuration'] = ConfigurationContainer()
87        self['mandates'] = MandatesContainer()
88        self['customers'] = CustomersContainer()
89        self['products'] = ProductsContainer()
90        self._createPlugins()
91
92    def _createPlugins(self):
93        """Create instances of all plugins defined somewhere.
94        """
95        for name, plugin in getUtilitiesFor(IIkobaPluggable):
96            plugin.setup(self, name, self.logger)
97        return
98
99    def traverse(self, name):
100        if name == VIRT_JOBS_CONTAINER_NAME:
101            return getUtility(IJobManager)
102        return None
103
104    def updatePlugins(self):
105        """Lookup all plugins and call their `update()` method.
106        """
107        name = getattr(self, '__name__', '<Unnamed>')
108        self.logger.info('Fire upgrade event for site %s' % name)
109        grok.notify(ObjectUpgradeEvent(self))
110        self.logger.info('Done.')
111        self.logger.info('Now upgrading any plugins.')
112        for name, plugin in getUtilitiesFor(IIkobaPluggable):
113            plugin.update(self, name, self.logger)
114        self.logger.info('Plugin update finished.')
115        return
116
117attrs_to_fields(Company)
118
119
120class ObjectUpgradeEvent(ObjectEvent):
121    """An event fired, when datacenter storage moves.
122    """
123    grok.implements(IObjectUpgradeEvent)
124
125@grok.subscribe(Company, grok.IObjectAddedEvent)
126def handle_company_added(app, event):
127    """If a company is added, a message is logged.
128    """
129    app.logger.info('Company `%s` added.' % getattr(app, '__name__', None))
130    return
Note: See TracBrowser for help on using the repository browser.