2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-08-23 03:49:52 +08:00
|
|
|
class MinUsernameLengthValidator
|
2022-07-08 23:00:47 +08:00
|
|
|
MIN_USERNAME_LENGTH_RANGE = 1..60
|
|
|
|
|
2018-08-23 03:49:52 +08:00
|
|
|
def initialize(opts = {})
|
|
|
|
@opts = opts
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid_value?(value)
|
2022-07-08 23:00:47 +08:00
|
|
|
if !MIN_USERNAME_LENGTH_RANGE.cover?(value)
|
|
|
|
@min_range_violation = true
|
|
|
|
return false
|
|
|
|
end
|
2018-08-23 03:49:52 +08:00
|
|
|
return false if value > SiteSetting.max_username_length
|
2023-02-13 12:39:45 +08:00
|
|
|
@username = User.where("length(username) < ?", value).pick(:username)
|
2018-10-02 15:20:19 +08:00
|
|
|
@username.blank?
|
2018-08-23 03:49:52 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def error_message
|
2022-07-08 23:00:47 +08:00
|
|
|
if @min_length_violation
|
|
|
|
I18n.t(
|
|
|
|
"site_settings.errors.invalid_integer_min_max",
|
|
|
|
min: MIN_USERNAME_LENGTH_RANGE.begin,
|
|
|
|
max: MIN_USERNAME_LENGTH_RANGE.end,
|
|
|
|
)
|
|
|
|
elsif @username.blank?
|
2018-08-23 03:49:52 +08:00
|
|
|
I18n.t("site_settings.errors.min_username_length_range")
|
|
|
|
else
|
|
|
|
I18n.t("site_settings.errors.min_username_length_exists", username: @username)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|