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
76d8b82c
Commit
76d8b82c
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
70889dea
Pipeline
#32731
failed with stage
in 0 seconds
Changes
1
Pipelines
1
Hide 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 @
76d8b82c
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
Return true if user account is blocked.
Return true if user account is blocked.
"""
"""
from
DateTime
import
DateTime
from
DateTime
import
DateTime
from
erp5.component.module.Log
import
log
request
=
context
.
REQUEST
request
=
context
.
REQUEST
portal
=
context
.
getPortalObject
()
portal
=
context
.
getPortalObject
()
portal_preferences
=
portal
.
portal_preferences
portal_preferences
=
portal
.
portal_preferences
...
@@ -15,6 +17,13 @@ one_second = 1/24.0/60.0/60.0
...
@@ -15,6 +17,13 @@ one_second = 1/24.0/60.0/60.0
check_duration
=
portal_preferences
.
getPreferredAuthenticationFailureCheckDuration
()
check_duration
=
portal_preferences
.
getPreferredAuthenticationFailureCheckDuration
()
block_duration
=
portal_preferences
.
getPreferredAuthenticationFailureBlockDuration
()
block_duration
=
portal_preferences
.
getPreferredAuthenticationFailureBlockDuration
()
max_authentication_failures
=
portal_preferences
.
getPreferredMaxAuthenticationFailure
()
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
check_time
=
now
-
check_duration
*
one_second
# some failures might be still unindexed
# 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