Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5_fork
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
Eteri
erp5_fork
Commits
6c1a5927
Commit
6c1a5927
authored
Jan 20, 2016
by
Cédric Le Ninivin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5SecurityManager: Use _person_cache in request to store path of user
parent
c1958228
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
product/ERP5Security/ERP5UserManager.py
product/ERP5Security/ERP5UserManager.py
+5
-1
No files found.
product/ERP5Security/ERP5UserManager.py
View file @
6c1a5927
...
@@ -120,7 +120,7 @@ class ERP5UserManager(BasePlugin):
...
@@ -120,7 +120,7 @@ class ERP5UserManager(BasePlugin):
def
getPersonByReference
(
self
,
reference
):
def
getPersonByReference
(
self
,
reference
):
def
_getPersonRelativeUrlFromReference
(
reference
):
def
_getPersonRelativeUrlFromReference
(
reference
):
person_url
=
self
.
REQUEST
.
get
(
'_
logi
n_cache'
,
{}).
get
(
reference
)
person_url
=
self
.
REQUEST
.
get
(
'_
perso
n_cache'
,
{}).
get
(
reference
)
portal
=
self
.
getPortalObject
()
portal
=
self
.
getPortalObject
()
if
person_url
is
not
None
:
if
person_url
is
not
None
:
return
person_url
return
person_url
...
@@ -241,6 +241,10 @@ class ERP5UserManager(BasePlugin):
...
@@ -241,6 +241,10 @@ class ERP5UserManager(BasePlugin):
# authentication policy enabled, we need person object anyway
# authentication policy enabled, we need person object anyway
login
=
self
.
getPortalObject
().
unrestrictedTraverse
(
login_url
)
login
=
self
.
getPortalObject
().
unrestrictedTraverse
(
login_url
)
if
login
and
'_person_cache'
not
in
self
.
REQUEST
:
self
.
REQUEST
.
set
(
'_person_cache'
,
{})
self
.
REQUEST
[
'_person_cache'
][
user_reference
]
=
login
.
getParent
()
if
user_reference
is
None
:
if
user_reference
is
None
:
# file a failed authentication attempt
# file a failed authentication attempt
login
.
notifyLoginFailure
()
login
.
notifyLoginFailure
()
...
...
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