mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
To me this doesnt make sense :| Either the password is accepted or it is not, but we shall not give advice to the user *after* validating the password...
This commit is contained in:
parent
354cd8106e
commit
319602537d
2 changed files with 3 additions and 8 deletions
|
@ -334,7 +334,6 @@
|
||||||
"password_too_simple_2": "Password needs to be at least 8 characters long and contains digit, upper and lower characters",
|
"password_too_simple_2": "Password needs to be at least 8 characters long and contains digit, upper and lower characters",
|
||||||
"password_too_simple_3": "Password needs to be at least 8 characters long and contains digit, upper, lower and special characters",
|
"password_too_simple_3": "Password needs to be at least 8 characters long and contains digit, upper, lower and special characters",
|
||||||
"password_too_simple_4": "Password needs to be at least 12 characters long and contains digit, upper, lower and special characters",
|
"password_too_simple_4": "Password needs to be at least 12 characters long and contains digit, upper, lower and special characters",
|
||||||
"password_advice": "Advice: a good password is at least 8 characters and contains digit, upper, lower and special characters",
|
|
||||||
"path_removal_failed": "Unable to remove path {:s}",
|
"path_removal_failed": "Unable to remove path {:s}",
|
||||||
"pattern_backup_archive_name": "Must be a valid filename with max 30 characters, and alphanumeric and -_. characters only",
|
"pattern_backup_archive_name": "Must be a valid filename with max 30 characters, and alphanumeric and -_. characters only",
|
||||||
"pattern_domain": "Must be a valid domain name (e.g. my-domain.org)",
|
"pattern_domain": "Must be a valid domain name (e.g. my-domain.org)",
|
||||||
|
|
|
@ -67,8 +67,8 @@ class PasswordValidator(object):
|
||||||
|
|
||||||
def validate(self, password):
|
def validate(self, password):
|
||||||
"""
|
"""
|
||||||
Check the validation_summary and trigger the corresponding
|
Check the validation_summary and trigger an exception
|
||||||
exception or info message
|
if the password does not pass tests.
|
||||||
|
|
||||||
This method is meant to be used from inside YunoHost's code
|
This method is meant to be used from inside YunoHost's code
|
||||||
(compared to validation_summary which is meant to be called
|
(compared to validation_summary which is meant to be called
|
||||||
|
@ -92,8 +92,6 @@ class PasswordValidator(object):
|
||||||
status, msg = validation_summary(password)
|
status, msg = validation_summary(password)
|
||||||
if status == "error":
|
if status == "error":
|
||||||
raise MoulinetteError(1, m18n.n(msg))
|
raise MoulinetteError(1, m18n.n(msg))
|
||||||
elif status == "warning":
|
|
||||||
logger.info(m18n.n(msg))
|
|
||||||
|
|
||||||
def validation_summary(self, password):
|
def validation_summary(self, password):
|
||||||
"""
|
"""
|
||||||
|
@ -101,7 +99,7 @@ class PasswordValidator(object):
|
||||||
and if the overall strength is good enough compared to the
|
and if the overall strength is good enough compared to the
|
||||||
validation_strength defined in the constructor.
|
validation_strength defined in the constructor.
|
||||||
|
|
||||||
Produces a summary-tuple comprised of a level (success, error, warning)
|
Produces a summary-tuple comprised of a level (succes or error)
|
||||||
and a message key describing the issues found.
|
and a message key describing the issues found.
|
||||||
"""
|
"""
|
||||||
if self.validation_strength < 0:
|
if self.validation_strength < 0:
|
||||||
|
@ -114,8 +112,6 @@ class PasswordValidator(object):
|
||||||
if strength_level < self.validation_strength:
|
if strength_level < self.validation_strength:
|
||||||
return ("error", "password_too_simple_%s" % self.validation_strength)
|
return ("error", "password_too_simple_%s" % self.validation_strength)
|
||||||
|
|
||||||
if strength_level < 3:
|
|
||||||
return ("warning", 'password_advice')
|
|
||||||
return ("success", "")
|
return ("success", "")
|
||||||
|
|
||||||
def strength(self, password):
|
def strength(self, password):
|
||||||
|
|
Loading…
Add table
Reference in a new issue