Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5-Boxiang
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hamza
erp5-Boxiang
Commits
1e90e4f8
Commit
1e90e4f8
authored
Mar 10, 2014
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test
parent
9b43b904
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
2 deletions
+37
-2
product/ERP5Catalog/CatalogTool.py
product/ERP5Catalog/CatalogTool.py
+18
-2
product/ERP5Catalog/tests/testERP5CatalogSecurityUidOptimization.py
...P5Catalog/tests/testERP5CatalogSecurityUidOptimization.py
+19
-0
No files found.
product/ERP5Catalog/CatalogTool.py
View file @
1e90e4f8
...
...
@@ -26,6 +26,7 @@
#
##############################################################################
from
copy
import
deepcopy
from
collections
import
defaultdict
from
Products.CMFCore.CatalogTool
import
CatalogTool
as
CMFCoreCatalogTool
from
Products.ZSQLCatalog.ZSQLCatalog
import
ZCatalog
...
...
@@ -124,8 +125,23 @@ class IndexableObjectWrapper(object):
allowed_role_set
.
discard
(
'Owner'
)
# XXX make this a method of base ?
local_roles_group_id_group_id
=
getattr
(
ob
,
'__ac_local_roles_group_id_dict__'
,
dict
())
local_roles_group_id_group_id
=
deepcopy
(
getattr
(
ob
,
'__ac_local_roles_group_id_dict__'
,
dict
()))
# If we acquire a permission, then we also want to acquire the local
# roles group ids
local_roles_container
=
ob
while
getattr
(
local_roles_container
,
'isRADContent'
,
0
):
if
local_roles_container
.
_getAcquireLocalRoles
():
local_roles_container
=
local_roles_container
.
aq_parent
for
role_definition_group
,
user_and_role_list
in
\
getattr
(
local_roles_container
,
'__ac_local_roles_group_id_dict__'
,
dict
()).
items
():
local_roles_group_id_group_id
.
setdefault
(
role_definition_group
,
set
()
).
update
(
user_and_role_list
)
else
:
break
allowed_by_local_roles_group_id
=
{}
allowed_by_local_roles_group_id
[
''
]
=
allowed_role_set
...
...
product/ERP5Catalog/tests/testERP5CatalogSecurityUidOptimization.py
View file @
1e90e4f8
...
...
@@ -187,6 +187,25 @@ CREATE TABLE alternate_roles_and_users (
self
.
assertSameSet
([
user1
,
user2
],
[
o
.
getObject
()
for
o
in
self
.
portal
.
portal_catalog
(
portal_type
=
'Person'
)])
# portal types that acquire roles properly acquire the local role group
# id mapping
self
.
assertTrue
(
self
.
portal
.
portal_types
.
Career
.
getTypeAcquireLocalRole
())
career
=
user1
.
newContent
(
portal_type
=
'Career'
)
self
.
tic
()
alternate_roles_and_users
=
sql_connection
.
manage_test
(
"SELECT * from alternate_roles_and_users"
).
dictionaries
()
self
.
assertTrue
(
dict
(
uid
=
career
.
getUid
(),
alternate_security_uid
=
user1_alternate_security_uid
)
in
alternate_roles_and_users
)
self
.
login
(
'user1'
)
self
.
assertEqual
([
career
],
[
o
.
getObject
()
for
o
in
self
.
portal
.
portal_catalog
(
portal_type
=
'Career'
)])
self
.
login
(
'user2'
)
self
.
assertEqual
([],
[
o
.
getObject
()
for
o
in
self
.
portal
.
portal_catalog
(
portal_type
=
'Career'
)])
finally
:
# restore catalog configuration
sql_catalog
.
sql_search_tables
=
current_sql_search_tables
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment