Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Rafael Monnerat
slapos.core
Commits
133dc9ab
Commit
133dc9ab
authored
Feb 08, 2024
by
Rafael Monnerat
👻
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_erp5: Dont block login if preference is not properly configured
backport from ERP5
parent
b1ae9db9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
master/bt5/slapos_erp5/SkinTemplateItem/portal_skins/slapos_base/Login_isLoginBlocked.py
...lateItem/portal_skins/slapos_base/Login_isLoginBlocked.py
+9
-0
No files found.
master/bt5/slapos_erp5/SkinTemplateItem/portal_skins/slapos_base/Login_isLoginBlocked.py
View file @
133dc9ab
...
...
@@ -2,6 +2,8 @@
Return true if user account is blocked.
"""
from
DateTime
import
DateTime
from
erp5.component.module.Log
import
log
request
=
context
.
REQUEST
portal
=
context
.
getPortalObject
()
portal_preferences
=
portal
.
portal_preferences
...
...
@@ -15,6 +17,13 @@ one_second = 1/24.0/60.0/60.0
check_duration
=
portal_preferences
.
getPreferredAuthenticationFailureCheckDuration
()
block_duration
=
portal_preferences
.
getPreferredAuthenticationFailureBlockDuration
()
max_authentication_failures
=
portal_preferences
.
getPreferredMaxAuthenticationFailure
()
if
None
in
(
check_duration
,
block_duration
,
max_authentication_failures
):
log
(
'Login block is not working because authentication policy in system preference is not set properly.'
)
return
0
check_time
=
now
-
check_duration
*
one_second
# some failures might be still unindexed
...
...
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