mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:42:04 +08:00
427d54b2b0
Zeitwerk simplifies working with dependencies in dev and makes it easier reloading class chains. We no longer need to use Rails "require_dependency" anywhere and instead can just use standard Ruby patterns to require files. This is a far reaching change and we expect some followups here.
22 lines
862 B
Ruby
22 lines
862 B
Ruby
# frozen_string_literal: true
|
|
|
|
class StrippedLengthValidator < ActiveModel::EachValidator
|
|
def self.validate(record, attribute, value, range)
|
|
unless value.nil?
|
|
stripped_length = value.strip.length
|
|
record.errors.add attribute, (I18n.t('errors.messages.too_short', count: range.begin)) unless
|
|
stripped_length >= range.begin
|
|
record.errors.add attribute, (I18n.t('errors.messages.too_long_validation', max: range.end, length: stripped_length)) unless
|
|
stripped_length <= range.end
|
|
else
|
|
record.errors.add attribute, (I18n.t('errors.messages.blank'))
|
|
end
|
|
end
|
|
|
|
def validate_each(record, attribute, value)
|
|
# the `in` parameter might be a lambda when the range is dynamic
|
|
range = options[:in].lambda? ? options[:in].call : options[:in]
|
|
self.class.validate(record, attribute, value, range)
|
|
end
|
|
end
|