CatalogTool.py 36.4 KB
Newer Older
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1 2 3
##############################################################################
#
# Copyright (c) 2002 Nexedi SARL and Contributors. All Rights Reserved.
Jean-Paul Smets's avatar
Jean-Paul Smets committed
4
#                    Jean-Paul Smets-Solanes <jp@nexedi.com>
Jean-Paul Smets's avatar
Jean-Paul Smets committed
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
#
# 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 Products.CMFCore.CatalogTool import CatalogTool as CMFCoreCatalogTool
from Products.ZSQLCatalog.ZSQLCatalog import ZCatalog
31
from Products.ZSQLCatalog.SQLCatalog import Query, ComplexQuery
32
from Products.ERP5Type import Permissions
Jean-Paul Smets's avatar
Jean-Paul Smets committed
33
from AccessControl import ClassSecurityInfo, getSecurityManager
Aurel's avatar
Aurel committed
34 35
from Products.CMFCore.utils import UniqueObject, _getAuthenticatedUser, getToolByName
from Products.ERP5Type.Globals import InitializeClass, DTMLFile
36
from Acquisition import aq_base, aq_inner, aq_parent, ImplicitAcquisitionWrapper
37
from Products.CMFActivity.ActiveObject import ActiveObject
38
from Products.ERP5Type.TransactionalVariable import getTransactionalVariable
Jean-Paul Smets's avatar
Jean-Paul Smets committed
39 40 41

from AccessControl.PermissionRole import rolesForPermissionOn

42
from MethodObject import Method
Jean-Paul Smets's avatar
Jean-Paul Smets committed
43

44
from Products.ERP5Security import mergedLocalRoles
45
from Products.ERP5Security.ERP5UserManager import SUPER_USER
46
from Products.ERP5Type.Utils import sqlquote
47

Aurel's avatar
Aurel committed
48
import warnings
49
from zLOG import LOG, PROBLEM, WARNING, INFO
Jean-Paul Smets's avatar
Jean-Paul Smets committed
50

51
ACQUIRE_PERMISSION_VALUE = []
52
DYNAMIC_METHOD_NAME = 'z_related_'
53
DYNAMIC_METHOD_NAME_LEN = len(DYNAMIC_METHOD_NAME)
54
STRICT_DYNAMIC_METHOD_NAME = DYNAMIC_METHOD_NAME + 'strict_'
55
STRICT_DYNAMIC_METHOD_NAME_LEN = len(STRICT_DYNAMIC_METHOD_NAME)
56
RELATED_DYNAMIC_METHOD_NAME = '_related'
57 58
# Negative as it's used as a slice end offset
RELATED_DYNAMIC_METHOD_NAME_LEN = -len(RELATED_DYNAMIC_METHOD_NAME)
59
ZOPE_SECURITY_SUFFIX = '__roles__'
Aurel's avatar
Aurel committed
60

61
class IndexableObjectWrapper(object):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
62

63
    def __init__(self, ob):
64 65
        self.__ob = ob

66 67 68 69
    def __getattr__(self, name):
        return getattr(self.__ob, name)

    # We need to update the uid during the cataloging process
70
    uid = property(lambda self: self.__ob.getUid(),
71
                   lambda self, value: setattr(self.__ob, 'uid', value))
Jean-Paul Smets's avatar
Jean-Paul Smets committed
72

73
    def _getSecurityParameterList(self):
74 75
      result = self.__dict__.get('_cache_result', None)
      if result is None:
Jean-Paul Smets's avatar
Jean-Paul Smets committed
76
        ob = self.__ob
77 78 79 80 81
        # For each group or user, we have a list of roles, this list
        # give in this order : [roles on object, roles acquired on the parent,
        # roles acquired on the parent of the parent....]
        # So if we have ['-Author','Author'] we should remove the role 'Author'
        # but if we have ['Author','-Author'] we have to keep the role 'Author'
82 83
        localroles = {}
        skip_role_set = set()
84 85
        skip_role = skip_role_set.add
        clear_skip_role = skip_role_set.clear
86
        for key, role_list in mergedLocalRoles(ob).iteritems():
87 88 89 90 91 92 93 94 95
          new_role_list = []
          new_role = new_role_list.append
          clear_skip_role()
          for role in role_list:
            if role[:1] == '-':
              skip_role(role[1:])
            elif role not in skip_role_set:
              new_role(role)
          if len(new_role_list)>0:
96
            localroles[key] = new_role_list
97

98
        portal = ob.getPortalObject()
99 100 101 102
        role_dict = dict(portal.portal_catalog.getSQLCatalog().\
                                              getSQLCatalogRoleKeysList())
        getUserById = portal.acl_users.getUserById

103 104 105 106 107 108
        # For each local role of a user:
        #   If the local role grants View permission, add it.
        # Every addition implies 2 lines:
        #   user:<user_id>
        #   user:<user_id>:<role_id>
        # A line must not be present twice in final result.
109
        allowed = set(rolesForPermissionOn('View', ob))
110 111 112 113 114 115
        # XXX the permission name is included by default for verbose
        # logging of security errors, but the catalog does not need to
        # index it. Unfortunately, rolesForPermissionOn does not have
        # an option to disable this behavior at calling time, so
        # discard it explicitly.
        allowed.discard('_View_Permission')
116 117
        # XXX Owner is hardcoded, in order to prevent searching for user on the
        # site root.
118 119
        allowed.discard('Owner')
        add = allowed.add
120 121
        user_role_dict = {}
        user_view_permission_role_dict = {}
122
        for user, roles in localroles.iteritems():
123
          prefix = 'user:' + user
124
          for role in roles:
125
            if (role in role_dict) and (getUserById(user) is not None):
126 127 128 129 130 131
              # If role is monovalued, check if key is a user.
              # If not, continue to index it in roles_and_users table.
              user_role_dict[role] = user
              if role in allowed:
                user_view_permission_role_dict[role] = user
            elif role in allowed:
132 133
              add(prefix)
              add(prefix + ':' + role)
134

135 136 137
        self._cache_result = result = (sorted(allowed), user_role_dict,
                                       user_view_permission_role_dict)
      return result
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174

    def allowedRolesAndUsers(self):
      """
      Return a list of roles and users with View permission.
      Used by Portal Catalog to filter out items you're not allowed to see.

      WARNING (XXX): some user base local role association is currently
      being stored (ex. to be determined). This should be prevented or it will
      make the table explode. To analyse the symptoms, look at the
      user_and_roles table. You will find some user:foo values
      which are not necessary.
      """
      return self._getSecurityParameterList()[0]

    def getAssignee(self):
      """Returns the user ID of the user with 'Assignee' local role on this
      document.

      If there is more than one Assignee local role, the result is undefined.
      """
      return self._getSecurityParameterList()[1].get('Assignee', None)

    def getViewPermissionAssignee(self):
      """Returns the user ID of the user with 'Assignee' local role on this
      document, if the Assignee role has View permission.

      If there is more than one Assignee local role, the result is undefined.
      """
      return self._getSecurityParameterList()[2].get('Assignee', None)

    def getViewPermissionAssignor(self):
      """Returns the user ID of the user with 'Assignor' local role on this
      document, if the Assignor role has View permission.

      If there is more than one Assignor local role, the result is undefined.
      """
      return self._getSecurityParameterList()[2].get('Assignor', None)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
175

176 177 178 179 180 181 182 183
    def getViewPermissionAssociate(self):
      """Returns the user ID of the user with 'Associate' local role on this
      document, if the Associate role has View permission.

      If there is more than one Associate local role, the result is undefined.
      """
      return self._getSecurityParameterList()[2].get('Associate', None)

184 185 186 187
    def __repr__(self):
      return '<Products.ERP5Catalog.CatalogTool.IndexableObjectWrapper'\
          ' for %s>' % ('/'.join(self.__ob.getPhysicalPath()), )

188

189
class RelatedBaseCategory(Method):
190 191
    """A Dynamic Method to act as a related key.
    """
192
    def __init__(self, id, strict_membership=0, related=0):
193
      self._id = id
194 195 196 197 198 199 200
      if strict_membership:
        strict = 'AND %(category_table)s.category_strict_membership = 1\n'
      else:
        strict = ''
      # From the point of view of query_table, we are looking up objects...
      if related:
        # ... which have a relation toward us
Vincent Pelletier's avatar
Vincent Pelletier committed
201 202 203 204
        # query_table's uid = category table's category_uid
        query_table_side = 'category_uid'
        # category table's uid = foreign_table's uid
        foreign_side = 'uid'
205 206
      else:
        # ... toward which we have a relation
Vincent Pelletier's avatar
Vincent Pelletier committed
207 208 209 210
        # query_table's uid = category table's uid
        query_table_side = 'uid'
        # category table's category_uid = foreign_table's uid
        foreign_side = 'category_uid'
211 212
      self._template = """\
%%(category_table)s.base_category_uid = %%(base_category_uid)s
Vincent Pelletier's avatar
Vincent Pelletier committed
213
%(strict)sAND %%(foreign_catalog)s.uid = %%(category_table)s.%(foreign_side)s
214 215
%%(RELATED_QUERY_SEPARATOR)s
%%(category_table)s.%(query_table_side)s = %%(query_table)s.uid""" % {
216
          'strict': strict,
Vincent Pelletier's avatar
Vincent Pelletier committed
217 218
          'foreign_side': foreign_side,
          'query_table_side': query_table_side,
219
      }
220

221 222
    def __call__(self, instance, table_0, table_1, query_table='catalog',
        RELATED_QUERY_SEPARATOR=' AND ', **kw):
223
      """Create the sql code for this related key."""
224 225 226 227 228
      # Note: in normal conditions, our category's uid will not change from
      # one invocation to the next.
      return self._template % {
        'base_category_uid': instance.getPortalObject().portal_categories.\
          _getOb(self._id).getUid(),
Vincent Pelletier's avatar
Vincent Pelletier committed
229
        'query_table': query_table,
230
        'category_table': table_0,
Vincent Pelletier's avatar
Vincent Pelletier committed
231
        'foreign_catalog': table_1,
232
        'RELATED_QUERY_SEPARATOR': RELATED_QUERY_SEPARATOR,
233
      }
234

235
class CatalogTool (UniqueObject, ZCatalog, CMFCoreCatalogTool, ActiveObject):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
236 237 238 239 240 241 242
    """
    This is a ZSQLCatalog that filters catalog queries.
    It is based on ZSQLCatalog
    """
    id = 'portal_catalog'
    meta_type = 'ERP5 Catalog'
    security = ClassSecurityInfo()
Aurel's avatar
Aurel committed
243

Mame Coumba Sall's avatar
Mame Coumba Sall committed
244
    default_result_limit = None
245
    default_count_limit = 1
Aurel's avatar
Aurel committed
246

Vincent Pelletier's avatar
Vincent Pelletier committed
247
    manage_options = ({ 'label' : 'Overview', 'action' : 'manage_overview' },
Jean-Paul Smets's avatar
Jean-Paul Smets committed
248 249 250 251 252
                     ) + ZCatalog.manage_options

    def __init__(self):
        ZCatalog.__init__(self, self.getId())

253
    # Explicit Inheritance
Jean-Paul Smets's avatar
Jean-Paul Smets committed
254 255 256
    __url = CMFCoreCatalogTool.__url
    manage_catalogFind = CMFCoreCatalogTool.manage_catalogFind

Vincent Pelletier's avatar
Vincent Pelletier committed
257 258 259
    security.declareProtected(Permissions.ManagePortal
                , 'manage_schema')
    manage_schema = DTMLFile('dtml/manageSchema', globals())
Jean-Paul Smets's avatar
Jean-Paul Smets committed
260

Aurel's avatar
Aurel committed
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
    def getPreferredSQLCatalogId(self, id=None):
      """
      Get the SQL Catalog from preference.
      """
      if id is None:
        # Check if we want to use an archive
        #if getattr(aq_base(self.portal_preferences), 'uid', None) is not None:
        archive_path = self.portal_preferences.getPreferredArchive(sql_catalog_id=self.default_sql_catalog_id)
        if archive_path not in ('', None):
          try:
            archive = self.restrictedTraverse(archive_path)
          except KeyError:
            # Do not fail if archive object has been removed,
            # but preference is not up to date
            return None
          if archive is not None:
            catalog_id = archive.getCatalogId()
            if catalog_id not in ('', None):
              return catalog_id
        return None
      else:
        return id
283

284
    def _listAllowedRolesAndUsers(self, user):
285
        # We use ERP5Security PAS based authentication
286 287 288
        try:
          # check for proxy role in stack
          eo = getSecurityManager()._context.stack[-1]
289
          proxy_roles = getattr(eo, '_proxy_roles',None)
290 291 292 293 294
        except IndexError:
          proxy_roles = None
        if proxy_roles:
          # apply proxy roles
          user = eo.getOwner()
Vincent Pelletier's avatar
Vincent Pelletier committed
295
          result = list(proxy_roles)
296
        else:
Vincent Pelletier's avatar
Vincent Pelletier committed
297 298 299
          result = list(user.getRoles())
        result.append('Anonymous')
        result.append('user:%s' % user.getId())
300 301 302
        # deal with groups
        getGroups = getattr(user, 'getGroups', None)
        if getGroups is not None:
303
            groups = list(user.getGroups())
304 305 306 307 308 309
            groups.append('role:Anonymous')
            if 'Authenticated' in result:
                groups.append('role:Authenticated')
            for group in groups:
                result.append('user:%s' % group)
        # end groups
310
        return result
311

Jean-Paul Smets's avatar
Jean-Paul Smets committed
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
    # Schema Management
    def editColumn(self, column_id, sql_definition, method_id, default_value, REQUEST=None, RESPONSE=None):
      """
        Modifies a schema column of the catalog
      """
      new_schema = []
      for c in self.getIndexList():
        if c.id == index_id:
          new_c = {'id': index_id, 'sql_definition': sql_definition, 'method_id': method_id, 'default_value': default_value}
        else:
          new_c = c
        new_schema.append(new_c)
      self.setColumnList(new_schema)

    def setColumnList(self, column_list):
      """
      """
      self._sql_schema = column_list

    def getColumnList(self):
      """
      """
      if not hasattr(self, '_sql_schema'): self._sql_schema = []
      return self._sql_schema

    def getColumn(self, column_id):
      """
      """
      for c in self.getColumnList():
        if c.id == column_id:
          return c
      return None

    def editIndex(self, index_id, sql_definition, REQUEST=None, RESPONSE=None):
      """
        Modifies the schema of the catalog
      """
      new_index = []
      for c in self.getIndexList():
        if c.id == index_id:
          new_c = {'id': index_id, 'sql_definition': sql_definition}
        else:
          new_c = c
        new_index.append(new_c)
      self.setIndexList(new_index)

    def setIndexList(self, index_list):
      """
      """
      self._sql_index = index_list

    def getIndexList(self):
      """
      """
      if not hasattr(self, '_sql_index'): self._sql_index = []
      return self._sql_index

    def getIndex(self, index_id):
      """
      """
      for c in self.getIndexList():
        if c.id == index_id:
          return c
      return None


Vincent Pelletier's avatar
Vincent Pelletier committed
378
    security.declarePublic('getAllowedRolesAndUsers')
Aurel's avatar
Aurel committed
379
    def getAllowedRolesAndUsers(self, sql_catalog_id=None, **kw):
380 381
      """
        Return allowed roles and users.
382

383
        This is supposed to be used with Z SQL Methods to check permissions
384
        when you list up documents. It is also able to take into account
385
        a parameter named local_roles so that listed documents only include
386 387
        those documents for which the user (or the group) was
        associated one of the given local roles.
Aurel's avatar
Aurel committed
388

389 390
        The use of getAllowedRolesAndUsers is deprecated, you should use
        getSecurityQuery instead
391 392
      """
      user = _getAuthenticatedUser(self)
393
      user_str = str(user)
394
      user_is_superuser = (user_str == SUPER_USER)
395
      allowedRolesAndUsers = self._listAllowedRolesAndUsers(user)
396
      role_column_dict = {}
397 398 399
      local_role_column_dict = {}
      catalog = self.getSQLCatalog(sql_catalog_id)
      column_map = catalog.getColumnMap()
400

401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
      # We only consider here the Owner role (since it was not indexed)
      # since some objects may only be visible by their owner
      # which was not indexed
      for role, column_id in catalog.getSQLCatalogRoleKeysList():
        # XXX This should be a list
        if not user_is_superuser:
          try:
            # if called by an executable with proxy roles, we don't use
            # owner, but only roles from the proxy.
            eo = getSecurityManager()._context.stack[-1]
            proxy_roles = getattr(eo, '_proxy_roles', None)
            if not proxy_roles:
              role_column_dict[column_id] = user_str
          except IndexError:
            role_column_dict[column_id] = user_str

417 418
      # Patch for ERP5 by JP Smets in order
      # to implement worklists and search of local roles
419 420
      local_roles = kw.get('local_roles', None)
      if local_roles:
421 422
        local_role_dict = dict(catalog.getSQLCatalogLocalRoleKeysList())
        role_dict = dict(catalog.getSQLCatalogRoleKeysList())
423
        # XXX user is not enough - we should also include groups of the user
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
        new_allowedRolesAndUsers = []
        new_role_column_dict = {}
        # Turn it into a list if necessary according to ';' separator
        if isinstance(local_roles, str):
          local_roles = local_roles.split(';')
        # Local roles now has precedence (since it comes from a WorkList)
        for user_or_group in allowedRolesAndUsers:
          for role in local_roles:
            # Performance optimisation
            if local_role_dict.has_key(role):
              # XXX This should be a list
              # If a given role exists as a column in the catalog,
              # then it is considered as single valued and indexed
              # through the catalog.
              if not user_is_superuser:
439
                # XXX This should be a list
440 441 442 443 444 445 446 447 448
                # which also includes all user groups
                column_id = local_role_dict[role]
                local_role_column_dict[column_id] = user_str
            if role_dict.has_key(role):
              # XXX This should be a list
              # If a given role exists as a column in the catalog,
              # then it is considered as single valued and indexed
              # through the catalog.
              if not user_is_superuser:
449
                # XXX This should be a list
450 451 452 453 454 455 456
                # which also includes all user groups
                column_id = role_dict[role]
                new_role_column_dict[column_id] = user_str
            new_allowedRolesAndUsers.append('%s:%s' % (user_or_group, role))
        if local_role_column_dict == {}:
          allowedRolesAndUsers = new_allowedRolesAndUsers
          role_column_dict = new_role_column_dict
457

458

459
      return allowedRolesAndUsers, role_column_dict, local_role_column_dict
460

Aurel's avatar
Aurel committed
461
    def getSecurityUidListAndRoleColumnDict(self, sql_catalog_id=None, **kw):
462
      """
463 464
        Return a list of security Uids and a dictionnary containing available
        role columns.
465 466 467 468

        XXX: This method always uses default catalog. This should not break a
        site as long as security uids are considered consistent among all
        catalogs.
469
      """
470 471
      allowedRolesAndUsers, role_column_dict, local_role_column_dict = \
          self.getAllowedRolesAndUsers(**kw)
Aurel's avatar
Aurel committed
472
      catalog = self.getSQLCatalog(sql_catalog_id)
473
      method = getattr(catalog, catalog.sql_search_security, None)
474
      if allowedRolesAndUsers:
475
        allowedRolesAndUsers.sort()
476
        cache_key = tuple(allowedRolesAndUsers)
477
        tv = getTransactionalVariable()
478 479 480 481 482 483 484
        try:
          security_uid_cache = tv['getSecurityUidListAndRoleColumnDict']
        except KeyError:
          security_uid_cache = tv['getSecurityUidListAndRoleColumnDict'] = {}
        try:
          security_uid_list = security_uid_cache[cache_key]
        except KeyError:
485 486 487 488 489 490 491 492 493 494 495 496
          if method is None:
            warnings.warn("The usage of allowedRolesAndUsers is "\
                          "deprecated. Please update your catalog "\
                          "business template.", DeprecationWarning)
            security_uid_list = [x.security_uid for x in \
              self.unrestrictedSearchResults(
                allowedRolesAndUsers=allowedRolesAndUsers,
                select_expression="security_uid",
                group_by_expression="security_uid")]
          else:
            # XXX: What with this string transformation ?! Souldn't it be done in
            # dtml instead ?
497
            allowedRolesAndUsers = [sqlquote(role) for role in allowedRolesAndUsers]
498
            security_uid_list = [x.uid for x in method(security_roles_list = allowedRolesAndUsers)]
499
          security_uid_cache[cache_key] = security_uid_list
500 501
      else:
        security_uid_list = []
502
      return security_uid_list, role_column_dict, local_role_column_dict
503

Vincent Pelletier's avatar
Vincent Pelletier committed
504
    security.declarePublic('getSecurityQuery')
Aurel's avatar
Aurel committed
505
    def getSecurityQuery(self, query=None, sql_catalog_id=None, **kw):
506
      """
507 508 509
        Build a query based on allowed roles or on a list of security_uid
        values. The query takes into account the fact that some roles are
        catalogued with columns.
510
      """
511
      original_query = query
512 513 514
      security_uid_list, role_column_dict, local_role_column_dict = \
          self.getSecurityUidListAndRoleColumnDict(
              sql_catalog_id=sql_catalog_id, **kw)
515 516 517 518 519
      if role_column_dict:
        query_list = []
        for key, value in role_column_dict.items():
          new_query = Query(**{key : value})
          query_list.append(new_query)
520
        operator_kw = {'operator': 'OR'}
521 522 523 524 525 526 527
        query = ComplexQuery(*query_list, **operator_kw)
        # If security_uid_list is empty, adding it to criterions will only
        # result in "false or [...]", so avoid useless overhead by not
        # adding it at all.
        if security_uid_list:
          query = ComplexQuery(Query(security_uid=security_uid_list, operator='IN'),
                               query, operator='OR')
528
      elif security_uid_list:
529
        query = Query(security_uid=security_uid_list, operator='IN')
530
      else:
Aurel's avatar
Aurel committed
531
        # XXX A false query has to be generated.
532 533 534 535 536 537
        # As it is not possible to use SQLKey for now, pass impossible value
        # on uid (which will be detected as False by MySQL, as it is not in the
        # column range)
        # Do not pass security_uid_list as empty in order to prevent useless
        # overhead
        query = Query(uid=-1)
538 539 540 541 542 543 544 545 546 547

      if local_role_column_dict:
        query_list = []
        for key, value in local_role_column_dict.items():
          new_query = Query(**{key : value})
          query_list.append(new_query)
        operator_kw = {'operator': 'AND'}
        local_role_query = ComplexQuery(*query_list, **operator_kw)
        query = ComplexQuery(query, local_role_query, operator='AND')

548 549 550
      if original_query is not None:
        query = ComplexQuery(query, original_query, operator='AND')
      return query
551

Jean-Paul Smets's avatar
Jean-Paul Smets committed
552
    # searchResults has inherited security assertions.
553
    def searchResults(self, query=None, **kw):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
554
        """
555 556
        Calls ZCatalog.searchResults with extra arguments that
        limit the results to what the user is allowed to see.
Jean-Paul Smets's avatar
Jean-Paul Smets committed
557
        """
558 559 560 561 562
        #if not _checkPermission(
        #    Permissions.AccessInactivePortalContent, self):
        #    now = DateTime()
        #    kw[ 'effective' ] = { 'query' : now, 'range' : 'max' }
        #    kw[ 'expires'   ] = { 'query' : now, 'range' : 'min' }
Jean-Paul Smets's avatar
Jean-Paul Smets committed
563

Aurel's avatar
Aurel committed
564 565
        catalog_id = self.getPreferredSQLCatalogId(kw.pop("sql_catalog_id", None))
        query = self.getSecurityQuery(query=query, sql_catalog_id=catalog_id, **kw)
566
        kw.setdefault('limit', self.default_result_limit)
Aurel's avatar
Aurel committed
567 568 569 570
        # get catalog from preference
        #LOG("searchResult", INFO, catalog_id)
        #         LOG("searchResult", INFO, ZCatalog.searchResults(self, query=query, sql_catalog_id=catalog_id, src__=1, **kw))
        return ZCatalog.searchResults(self, query=query, sql_catalog_id=catalog_id, **kw)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
571 572 573

    __call__ = searchResults

574 575 576 577
    security.declarePrivate('unrestrictedSearchResults')
    def unrestrictedSearchResults(self, REQUEST=None, **kw):
        """Calls ZSQLCatalog.searchResults directly without restrictions.
        """
578
        kw.setdefault('limit', self.default_result_limit)
579 580
        return ZCatalog.searchResults(self, REQUEST, **kw)

581 582
    # We use a string for permissions here due to circular reference in import
    # from ERP5Type.Permissions
583 584
    security.declareProtected('Search ZCatalog', 'getResultValue')
    def getResultValue(self, query=None, **kw):
585 586 587 588
        """
        A method to factor common code used to search a single
        object in the database.
        """
589
        kw.setdefault('limit', 1)
590 591 592 593 594
        result = self.searchResults(query=query, **kw)
        try:
          return result[0].getObject()
        except IndexError:
          return None
595 596 597 598 599 600 601 602

    security.declarePrivate('unrestrictedGetResultValue')
    def unrestrictedGetResultValue(self, query=None, **kw):
        """
        A method to factor common code used to search a single
        object in the database. Same as getResultValue but without
        taking into account security.
        """
603
        kw.setdefault('limit', 1)
604 605 606 607 608 609
        result = self.unrestrictedSearchResults(query=query, **kw)
        try:
          return result[0].getObject()
        except IndexError:
          return None

610
    def countResults(self, query=None, **kw):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
611 612 613 614
        """
            Calls ZCatalog.countResults with extra arguments that
            limit the results to what the user is allowed to see.
        """
615
        # XXX This needs to be set again
616
        #if not _checkPermission(
Vincent Pelletier's avatar
Vincent Pelletier committed
617 618
        #    Permissions.AccessInactivePortalContent, self):
        #    base = aq_base(self)
619 620 621
        #    now = DateTime()
        #    #kw[ 'effective' ] = { 'query' : now, 'range' : 'max' }
        #    #kw[ 'expires'   ] = { 'query' : now, 'range' : 'min' }
Aurel's avatar
Aurel committed
622
        catalog_id = self.getPreferredSQLCatalogId(kw.pop("sql_catalog_id", None))
Aurel's avatar
Aurel committed
623
        query = self.getSecurityQuery(query=query, sql_catalog_id=catalog_id, **kw)
624
        kw.setdefault('limit', self.default_count_limit)
Aurel's avatar
Aurel committed
625 626
        # get catalog from preference
        return ZCatalog.countResults(self, query=query, sql_catalog_id=catalog_id, **kw)
Aurel's avatar
Aurel committed
627

628 629 630 631 632
    security.declarePrivate('unrestrictedCountResults')
    def unrestrictedCountResults(self, REQUEST=None, **kw):
        """Calls ZSQLCatalog.countResults directly without restrictions.
        """
        return ZCatalog.countResults(self, REQUEST, **kw)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
633

634 635 636 637 638 639 640 641 642 643
    def wrapObject(self, object, sql_catalog_id=None, **kw):
        """
          Return a wrapped object for reindexing.
        """
        catalog = self.getSQLCatalog(sql_catalog_id)
        if catalog is None:
          # Nothing to do.
          LOG('wrapObject', 0, 'Warning: catalog is not available')
          return (None, None)

644 645 646
        document_object = aq_inner(object)
        w = IndexableObjectWrapper(document_object)

647
        wf = getToolByName(self, 'portal_workflow')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
648
        if wf is not None:
649
          w.__dict__.update(wf.getCatalogVariablesFor(object))
650

651 652 653
        # Find the parent definition for security
        is_acquired = 0
        while getattr(document_object, 'isRADContent', 0):
Aurel's avatar
Aurel committed
654
          # This condition tells which object should acquire
655 656
          # from their parent.
          # XXX Hardcode _View_Permission for a performance point of view
657 658
          if getattr(aq_base(document_object), '_View_Permission', ACQUIRE_PERMISSION_VALUE) == ACQUIRE_PERMISSION_VALUE\
             and document_object._getAcquireLocalRoles():
659
            document_object = document_object.aq_parent
660 661 662 663
            is_acquired = 1
          else:
            break
        if is_acquired:
664
          document_w = IndexableObjectWrapper(document_object)
665 666 667 668
        else:
          document_w = w

        (security_uid, optimised_roles_and_users) = catalog.getSecurityUid(document_w)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
669
        #LOG('catalog_object optimised_roles_and_users', 0, str(optimised_roles_and_users))
Jean-Paul Smets's avatar
Jean-Paul Smets committed
670
        # XXX we should build vars begore building the wrapper
671
        w.optimised_roles_and_users = optimised_roles_and_users
672 673
        predicate_property_dict = catalog.getPredicatePropertyDict(object)
        if predicate_property_dict is not None:
674
          w.predicate_property_dict = predicate_property_dict
675 676
        else:
          w.predicate_property_dict = dict()
677
        w.security_uid = security_uid
678 679 680
        (subject_set_uid, optimised_subject_list) = catalog.getSubjectSetUid(document_w)
        w.optimised_subject_list = optimised_subject_list
        w.subject_set_uid = subject_set_uid
681 682

        return ImplicitAcquisitionWrapper(w, aq_parent(document_object))
Jean-Paul Smets's avatar
Jean-Paul Smets committed
683 684

    security.declarePrivate('reindexObject')
685
    def reindexObject(self, object, idxs=None, sql_catalog_id=None,**kw):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
686 687 688 689
        '''Update catalog after object data has changed.
        The optional idxs argument is a list of specific indexes
        to update (all of them by default).
        '''
690
        if idxs is None: idxs = []
Jean-Paul Smets's avatar
Jean-Paul Smets committed
691
        url = self.__url(object)
692
        self.catalog_object(object, url, idxs=idxs, sql_catalog_id=sql_catalog_id,**kw)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
693

694

695 696
    def catalogObjectList(self, object_list, *args, **kw):
        """Catalog a list of objects"""
697 698
        m = object_list[0]
        if type(m) is list:
699
          tmp_object_list = [x[0] for x in object_list]
700 701 702 703 704
          super(CatalogTool, self).catalogObjectList(tmp_object_list, **m[2])
          if tmp_object_list:
            for x in object_list:
              if x[0] in tmp_object_list:
                del object_list[3] # no result means failed
705 706 707
        else:
          super(CatalogTool, self).catalogObjectList(object_list, *args, **kw)

708 709 710
    security.declarePrivate('uncatalogObjectList')
    def uncatalogObjectList(self, message_list):
      """Uncatalog a list of objects"""
711 712
      # XXX: this is currently only a placeholder for further optimization
      #      (for the moment, it's not faster than the dummy group method)
713 714
      for m in message_list:
        self.unindexObject(*m[1], **m[2])
715

Jean-Paul Smets's avatar
Jean-Paul Smets committed
716
    security.declarePrivate('unindexObject')
717
    def unindexObject(self, object=None, path=None, uid=None,sql_catalog_id=None):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
718 719 720
        """
          Remove from catalog.
        """
721
        if path is None and uid is None:
722 723
          if object is None:
            raise TypeError, 'One of uid, path and object parameters must not be None'
724
          path = self.__url(object)
725 726
        if uid is None:
          raise TypeError, "unindexObject supports only uid now"
727
        self.uncatalog_object(path=path, uid=uid, sql_catalog_id=sql_catalog_id)
728

Sebastien Robin's avatar
Sebastien Robin committed
729 730 731 732 733 734 735 736 737
    security.declarePrivate('beforeUnindexObject')
    def beforeUnindexObject(self, object, path=None, uid=None,sql_catalog_id=None):
        """
          Remove from catalog.
        """
        if path is None and uid is None:
          path = self.__url(object)
        self.beforeUncatalogObject(path=path,uid=uid, sql_catalog_id=sql_catalog_id)

738 739 740
    security.declarePrivate('getUrl')
    def getUrl(self, object):
      return self.__url(object)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
741

Jean-Paul Smets's avatar
Jean-Paul Smets committed
742
    security.declarePrivate('moveObject')
743
    def moveObject(self, object, idxs=None):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
744 745 746 747 748 749
        """
          Reindex in catalog, taking into account
          peculiarities of ERP5Catalog / ZSQLCatalog

          Useless ??? XXX
        """
750
        if idxs is None: idxs = []
Jean-Paul Smets's avatar
Jean-Paul Smets committed
751 752
        url = self.__url(object)
        self.catalog_object(object, url, idxs=idxs, is_object_moved=1)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
753

754 755 756 757 758 759
    security.declarePublic('getPredicatePropertyDict')
    def getPredicatePropertyDict(self, object):
      """
      Construct a dictionnary with a list of properties
      to catalog into the table predicate
      """
760
      if not object.providesIPredicate():
761 762 763
        return None
      object = object.asPredicate()
      if object is None:
764 765 766 767 768 769 770 771 772 773 774
        return None
      property_dict = {}
      identity_criterion = getattr(object,'_identity_criterion',None)
      range_criterion = getattr(object,'_range_criterion',None)
      if identity_criterion is not None:
        for property, value in identity_criterion.items():
          if value is not None:
            property_dict[property] = value
      if range_criterion is not None:
        for property, (min, max) in range_criterion.items():
          if min is not None:
775
            property_dict['%s_range_min' % property] = min
776
          if max is not None:
777
            property_dict['%s_range_max' % property] = max
778
      property_dict['membership_criterion_category_list'] = object.getMembershipCriterionCategoryList()
779 780
      return property_dict

781
    security.declarePrivate('getDynamicRelatedKeyList')
782
    def getDynamicRelatedKeyList(self, key_list, sql_catalog_id=None):
783
      """
784
      Return the list of dynamic related keys.
785 786
      This method will try to automatically generate new related key
      by looking at the category tree.
787 788 789 790

      For exemple it will generate:
      destination_title | category,catalog/title/z_related_destination
      default_destination_title | category,catalog/title/z_related_destination
791 792 793 794
      strict_destination_title | category,catalog/title/z_related_strict_destination

      strict_ related keys only returns documents which are strictly member of
      the category.
795 796
      """
      related_key_list = []
797
      base_cat_id_list = self.portal_categories.getBaseCategoryDict()
798
      default_string = 'default_'
799
      strict_string = 'strict_'
800
      for key in key_list:
801
        prefix = ''
802
        strict = 0
803 804 805
        if key.startswith(default_string):
          key = key[len(default_string):]
          prefix = default_string
806 807 808 809
        if key.startswith(strict_string):
          strict = 1
          key = key[len(strict_string):]
          prefix = prefix + strict_string
810
        splitted_key = key.split('_')
811 812
        # look from the end of the key from the beginning if we
        # can find 'title', or 'portal_type'...
813 814
        for i in range(1,len(splitted_key))[::-1]:
          expected_base_cat_id = '_'.join(splitted_key[0:i])
815
          if expected_base_cat_id != 'parent' and \
816 817 818
             expected_base_cat_id in base_cat_id_list:
            # We have found a base_category
            end_key = '_'.join(splitted_key[i:])
819 820 821

            if end_key.startswith('related_'):
              end_key = end_key[len('related_'):]
822
              suffix = '_related'
823
            else:
824 825 826 827 828 829 830 831 832 833 834
              suffix = ''
            # accept only some catalog columns
            if end_key in ('title', 'uid', 'description', 'reference',
                           'relative_url', 'id', 'portal_type',
                           'simulation_state'):
              if strict:
                pattern = '%s%s | category,catalog/%s/z_related_strict_%s%s'
              else:
                pattern = '%s%s | category,catalog/%s/z_related_%s%s'
              related_key_list.append(pattern %
                (prefix, key, end_key, expected_base_cat_id, suffix))
835 836 837 838 839 840

      return related_key_list

    def _aq_dynamic(self, name):
      """
      Automatic related key generation.
841
      Will generate z_related_[base_category_id] if possible
842
      """
Vincent Pelletier's avatar
Vincent Pelletier committed
843 844 845
      result = None
      if name.startswith(DYNAMIC_METHOD_NAME) and \
          not name.endswith(ZOPE_SECURITY_SUFFIX):
846
        kw = {}
Vincent Pelletier's avatar
Vincent Pelletier committed
847
        if name.endswith(RELATED_DYNAMIC_METHOD_NAME):
848 849
          end_offset = RELATED_DYNAMIC_METHOD_NAME_LEN
          kw['related'] = 1
850
        else:
851 852 853 854 855 856 857
          end_offset = None
        if name.startswith(STRICT_DYNAMIC_METHOD_NAME):
          start_offset = STRICT_DYNAMIC_METHOD_NAME_LEN
          kw['strict_membership'] = 1
        else:
          start_offset = DYNAMIC_METHOD_NAME_LEN
        method = RelatedBaseCategory(name[start_offset:end_offset], **kw)
Vincent Pelletier's avatar
Vincent Pelletier committed
858
        setattr(self.__class__, name, method)
859 860 861 862 863 864
        # This getattr has 2 purposes:
        # - wrap in acquisition context
        #   This alone should be explicitly done rather than through getattr.
        # - wrap (if needed) class attribute on the instance
        #   (for the sake of not relying on current implementation details
        #   "too much")
Vincent Pelletier's avatar
Vincent Pelletier committed
865 866
        result = getattr(self, name)
      return result
867

868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889
    def _searchAndActivate(self, method_id, method_args=(), method_kw={},
                           activate_kw={}, min_uid=None, **kw):
      """Search the catalog and run a script by activity on all found objects

      This method is configurable (via 'packet_size' & 'activity_count'
      parameters) so that it can work efficiently with databases of any size.

      'activate_kw' may specify an active process to collect results.
      """
      catalog_kw = dict(kw)
      packet_size = catalog_kw.pop('packet_size', 30)
      limit = packet_size * catalog_kw.pop('activity_count', 100)
      if min_uid:
        catalog_kw['uid'] = {'query': min_uid, 'range': 'nlt'}
      if catalog_kw.pop('restricted', False):
        search = self
      else:
        search = self.unrestrictedSearchResults
      r = search(sort_on=(('uid','ascending'),), limit=limit, **catalog_kw)
      result_count = len(r)
      if result_count:
        if result_count == limit:
890 891
          next_kw = dict(activate_kw, priority=1+activate_kw.get('priority', 1))
          self.activate(activity='SQLQueue', **next_kw) \
892
              ._searchAndActivate(method_id,method_args, method_kw,
893
                                  activate_kw, r[-1].getUid(), **kw)
894 895 896 897 898 899 900 901 902 903 904 905
        r = [x.getPath() for x in r]
        r.sort()
        activate = self.getPortalObject().portal_activities.activate
        for i in xrange(0, result_count, packet_size):
          activate(activity='SQLQueue', **activate_kw).callMethodOnObjectList(
            r[i:i+packet_size], method_id, *method_args, **method_kw)

    security.declarePublic('searchAndActivate')
    def searchAndActivate(self, *args, **kw):
      """Restricted version of _searchAndActivate"""
      return self._searchAndActivate(restricted=True, *args, **kw)

906
InitializeClass(CatalogTool)