mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 03:08:35 +08:00
15 lines
633 B
Ruby
15 lines
633 B
Ruby
class StrippedLengthValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
unless value.nil?
|
|
stripped_length = value.strip.length
|
|
range = options[:in]
|
|
record.errors.add attribute, (options[:message] || I18n.t('errors.messages.too_short', count: range.begin)) unless
|
|
stripped_length >= range.begin
|
|
record.errors.add attribute, (options[:message] || I18n.t('errors.messages.too_long', count: range.end)) unless
|
|
stripped_length <= range.end
|
|
else
|
|
record.errors.add attribute, (options[:message] || I18n.t('errors.messages.blank'))
|
|
end
|
|
end
|
|
end
|