Preference.py 3.78 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
##############################################################################
#
# Copyright (c) 2005 Nexedi SARL and Contributors. All Rights Reserved.
#                    Jerome Perrin <jerome@nexedi.com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#
##############################################################################

from AccessControl import ClassSecurityInfo

31
from Products.ERP5Type import Permissions, PropertySheet, Constraint
Jean-Paul Smets's avatar
Jean-Paul Smets committed
32
from Products.ERP5Type.Core.Folder import Folder
Ivan Tyagov's avatar
Ivan Tyagov committed
33
from Products.CMFCore.utils import getToolByName
34
from Products.ERP5Form.PreferenceTool import PreferenceTool
35 36

class Priority:
37 38 39
  """ names for priorities
      XXX This was moved to PreferenceTool directly
  """
40 41 42
  SITE  = 1
  GROUP = 2
  USER  = 3
43

44 45
class Preference( Folder ):
  """
46 47 48 49 50 51
    A system or user preference

    TODO:
      - migrate to ERP5Type the whole preference system
  """

52
  # CMF Type Definition
53
  meta_type       = 'ERP5 Preference'
54 55
  portal_type     = 'Preference'
  add_permission  = Permissions.AddPortalContent
56 57
  
  # Declarative properties
58 59
  property_sheets = \
                    ( PropertySheet.Base
60 61 62 63
                    , PropertySheet.XMLObject
                    , PropertySheet.DublinCore
                    )
  
64 65
  # Declarative security
  security = ClassSecurityInfo()
66
  security.declareObjectProtected(Permissions.AccessContentsInformation)
67

68 69
  def _clearCache(self):
    """Clear caches used by methods of this preference
70

71
    # TODO: clear different caches according to the preference priority
72 73 74 75 76 77 78
    # TODO: (XXX) currently, if one use enables / disables a cache, caches
            for all other users are reset. This is not good for a system
            in which users do a lot of preference validation. A better solution
            is needed for this. But it is not easy because the concept of
            "per user cache" has been proven to be ambiguous or useless.
            In theory, a solution could consist in using more keys to
            select caches or to delete "manually" certain cache keys.
79
    """
Ivan Tyagov's avatar
Ivan Tyagov committed
80 81
    portal_caches = getToolByName(self.getPortalObject(), 'portal_caches')
    portal_caches.clearCache(cache_factory_list=('erp5_ui_short',))
82 83 84 85 86 87 88 89 90 91 92 93 94

  def _edit(self, **kw):
    """edit and clear all caches"""
    self._clearCache()
    Folder._edit(self, **kw)

  def enable(self):
    """Workflow method"""
    self._clearCache()

  def disable(self):
    """Workflow method"""
    self._clearCache()
95 96 97 98 99 100 101 102

  def _aq_dynamic(self, id):
    """ force _aq_dynamic on preference tool, because list of property sheet of
        preferences depends on the code of PreferenceTool._aq_dynamic"""
    if not PreferenceTool.aq_preference_generated:
      portal = self.getPortalObject()
      portal.portal_preferences._aq_dynamic('dummy')
    return Preference.inheritedAttribute('_aq_dynamic')(self, id)