Change a few rules regarding registration (login regex, password length).
This commit is contained in:
parent
11f5b0872b
commit
2b33f362dd
@ -17,7 +17,7 @@ class AuthD::Request
|
|||||||
return Response::ErrorAlreadyUsedLogin.new
|
return Response::ErrorAlreadyUsedLogin.new
|
||||||
end
|
end
|
||||||
|
|
||||||
acceptable_login_regex = "[a-zA-Z][-_ a-zA-Z0-9']+"
|
acceptable_login_regex = "[a-zA-Z][-_ a-zA-Z0-9']*[a-zA-Z0-9]"
|
||||||
pattern = Regex.new acceptable_login_regex, Regex::Options::IGNORE_CASE
|
pattern = Regex.new acceptable_login_regex, Regex::Options::IGNORE_CASE
|
||||||
return Response::ErrorInvalidLoginFormat.new unless pattern =~ @login
|
return Response::ErrorInvalidLoginFormat.new unless pattern =~ @login
|
||||||
|
|
||||||
@ -35,7 +35,7 @@ class AuthD::Request
|
|||||||
end
|
end
|
||||||
|
|
||||||
# In this case we should not accept its registration.
|
# In this case we should not accept its registration.
|
||||||
return Response::ErrorPasswordTooShort.new if @password.size < 20
|
return Response::ErrorPasswordTooShort.new if @password.size < 15
|
||||||
return Response::ErrorPasswordTooLong.new if @password.size > 100
|
return Response::ErrorPasswordTooLong.new if @password.size > 100
|
||||||
|
|
||||||
uid = authd.new_uid
|
uid = authd.new_uid
|
||||||
|
Loading…
Reference in New Issue
Block a user