2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-08-22 15:49:52 -04:00
|
|
|
class MaxUsernameLengthValidator
|
|
|
|
def initialize(opts = {})
|
|
|
|
@opts = opts
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid_value?(value)
|
|
|
|
return false if value < SiteSetting.min_username_length
|
2019-10-21 06:32:27 -04:00
|
|
|
@username = User.where('length(username) > ?', value).pluck_first(:username)
|
2018-10-02 03:20:19 -04:00
|
|
|
@username.blank?
|
2018-08-22 15:49:52 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def error_message
|
|
|
|
if @username.blank?
|
|
|
|
I18n.t("site_settings.errors.max_username_length_range")
|
|
|
|
else
|
|
|
|
I18n.t("site_settings.errors.max_username_length_exists", username: @username)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|