Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tomáš Peterka
erp5
Commits
39f73b76
Commit
39f73b76
authored
Aug 05, 2011
by
Leonardo Rochael Almeida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make before-commit interactions immune to security changes
parent
a3230950
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
4 deletions
+17
-4
product/ERP5/InteractionWorkflow.py
product/ERP5/InteractionWorkflow.py
+14
-4
product/ERP5/tests/testInteractionWorkflow.py
product/ERP5/tests/testInteractionWorkflow.py
+3
-0
No files found.
product/ERP5/InteractionWorkflow.py
View file @
39f73b76
...
...
@@ -22,6 +22,7 @@ from Products.ERP5Type import Globals
import
App
from
types
import
StringTypes
from
AccessControl
import
getSecurityManager
,
ClassSecurityInfo
from
AccessControl.SecurityManagement
import
setSecurityManager
from
Acquisition
import
aq_base
from
Products.CMFCore.utils
import
getToolByName
from
Products.DCWorkflow.DCWorkflow
import
DCWorkflowDefinition
...
...
@@ -290,10 +291,11 @@ class InteractionWorkflowDefinition (DCWorkflowDefinition, ActiveObject):
# Pass lots of info to the script in a single parameter.
script
(
sci
)
# May throw an exception
# Execute Before Commit
# Queue the "Before Commit" scripts
sm
=
getSecurityManager
()
for
script_name
in
tdef
.
before_commit_script_name
:
transaction
.
get
().
addBeforeCommitHook
(
self
.
_before_commit
,
(
sci
,
script_name
))
(
sci
,
script_name
,
sm
))
# Execute "activity" scripts
for
script_name
in
tdef
.
activate_script_name
:
...
...
@@ -301,14 +303,22 @@ class InteractionWorkflowDefinition (DCWorkflowDefinition, ActiveObject):
.
activeScript
(
script_name
,
ob
.
getRelativeUrl
(),
status
,
tdef
.
id
)
def
_before_commit
(
self
,
sci
,
script_name
):
def
_before_commit
(
self
,
sci
,
script_name
,
security_manager
):
# check the object still exists before calling the script
ob
=
sci
.
object
while
ob
.
isTempObject
():
ob
=
ob
.
getParentValue
()
if
aq_base
(
self
.
unrestrictedTraverse
(
ob
.
getPhysicalPath
(),
None
))
is
\
aq_base
(
ob
):
self
.
scripts
[
script_name
](
sci
)
current_security_manager
=
getSecurityManager
()
try
:
# Who knows what happened to the authentication context
# between here and when the interaction was executed... So we
# need to switch to the security manager as it was back then
setSecurityManager
(
security_manager
)
self
.
scripts
[
script_name
](
sci
)
finally
:
setSecurityManager
(
current_security_manager
)
security
.
declarePrivate
(
'activeScript'
)
def
activeScript
(
self
,
script_name
,
ob_url
,
status
,
tdef_id
):
...
...
product/ERP5/tests/testInteractionWorkflow.py
View file @
39f73b76
...
...
@@ -531,7 +531,10 @@ context.setDescription('%s,%s,%s' % (d, args, result))
self
.
assertEqual
(
organisation
.
getDescription
(),
'bad'
)
organisation
.
getProperty
(
'description'
,
d
=
'toto'
)
self
.
assertEqual
(
organisation
.
getDescription
(),
'bad'
)
# before-commit interactions should be immune to security changes
self
.
logout
()
transaction
.
commit
()
self
.
login
()
self
.
assertEqual
(
organisation
.
getDescription
(),
"toto,('description',),bad"
)
def
test_17_activity_interaction
(
self
,
quiet
=
0
,
run
=
run_all_test
):
...
...
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