
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@2388 fd906abe-77d9-0310-91a1-e0d9ade77398
96 lines
3.7 KiB
Python
96 lines
3.7 KiB
Python
#
|
|
# Copyright (c) 2008 Helmut Merz helmutm@cy55.de
|
|
#
|
|
# 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
|
|
#
|
|
|
|
"""
|
|
A loops-specific security policy. Intended mainly to deal with checking
|
|
concept map parents in addition to containers for collecting principal roles.
|
|
|
|
$Id$
|
|
"""
|
|
|
|
from zope.app.securitypolicy.interfaces import IPrincipalRoleMap
|
|
from zope.app.securitypolicy.zopepolicy import ZopeSecurityPolicy
|
|
from zope.app.securitypolicy.zopepolicy import SettingAsBoolean, globalRolesForPrincipal
|
|
from zope import component
|
|
from zope.component import adapts
|
|
from zope.cachedescriptors.property import Lazy
|
|
from zope.interface import classProvides
|
|
from zope.security.interfaces import ISecurityPolicy
|
|
from zope.security.proxy import removeSecurityProxy
|
|
|
|
from loops.interfaces import IConcept, IResource
|
|
|
|
|
|
class LoopsSecurityPolicy(ZopeSecurityPolicy):
|
|
|
|
classProvides(ISecurityPolicy)
|
|
|
|
def cached_principal_roles(self, obj, principal, checked=None):
|
|
if checked is None:
|
|
checked = []
|
|
obj = removeSecurityProxy(obj)
|
|
cache = self.cache(obj)
|
|
try:
|
|
cache_principal_roles = cache.principal_roles
|
|
except AttributeError:
|
|
cache_principal_roles = cache.principal_roles = {}
|
|
try:
|
|
return cache_principal_roles[principal]
|
|
except KeyError:
|
|
pass
|
|
if obj is None:
|
|
roles = dict([(role, SettingAsBoolean[setting])
|
|
for (role, setting)
|
|
in globalRolesForPrincipal(principal)])
|
|
roles['zope.Anonymous'] = True # Everybody has Anonymous
|
|
cache_principal_roles[principal] = roles
|
|
return roles
|
|
roles = {}
|
|
for p in self.getParents(obj, checked):
|
|
# TODO: care for correct combination if there is more than
|
|
# one parent
|
|
roles.update(self.cached_principal_roles(p, principal))
|
|
prinrole = IPrincipalRoleMap(obj, None)
|
|
if prinrole:
|
|
roles = roles.copy()
|
|
for role, setting in prinrole.getRolesForPrincipal(principal):
|
|
roles[role] = SettingAsBoolean[setting]
|
|
cache_principal_roles[principal] = roles
|
|
#print '***', roles
|
|
return roles
|
|
|
|
def getParents(self, obj, checked):
|
|
if obj in checked: # cycle - leave the concept map
|
|
return [getattr(obj, '__parent__', None)]
|
|
# keep concept parents in cache
|
|
cache = self.cache(obj)
|
|
try:
|
|
parents = cache.parents
|
|
except AttributeError:
|
|
parents = []
|
|
if IConcept.providedBy(obj):
|
|
parents = [p for p in obj.getParents(noSecurityCheck=True)
|
|
if p != obj]
|
|
elif IResource.providedBy(obj):
|
|
parents = [p for p in obj.getConcepts(noSecurityCheck=True)
|
|
if p != obj]
|
|
cache.parents = parents
|
|
if not parents:
|
|
parents = [getattr(obj, '__parent__', None)]
|
|
checked.append(obj)
|
|
return parents
|