Class: FileSizeValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- FileSizeValidator
- Defined in:
- lib/i_am_valid/file_size_validator.rb
Overview
lib/file_size_validator.rb Based on: gist.github.com/795665
Defined Under Namespace
Classes: Helper
Constant Summary collapse
- MESSAGES =
{ :is => :wrong_size, :minimum => :size_too_small, :maximum => :size_too_big }.freeze
- CHECKS =
{ :is => :==, :minimum => :>=, :maximum => :<= }.freeze
- DEFAULT_TOKENIZER =
lambda { |value| value.split(//) }
- RESERVED_OPTIONS =
[:minimum, :maximum, :within, :is, :tokenizer, :too_short, :too_long]
Instance Method Summary collapse
- #check_validity! ⇒ Object
- #help ⇒ Object
-
#initialize(options) ⇒ FileSizeValidator
constructor
A new instance of FileSizeValidator.
- #validate_each(record, attribute, value) ⇒ Object
Constructor Details
#initialize(options) ⇒ FileSizeValidator
Returns a new instance of FileSizeValidator.
11 12 13 14 15 16 17 18 19 |
# File 'lib/i_am_valid/file_size_validator.rb', line 11 def initialize() if range = (.delete(:in) || .delete(:within)) raise ArgumentError, ":in and :within must be a Range" unless range.is_a?(Range) [:minimum], [:maximum] = range.begin, range.end [:maximum] -= 1 if range.exclude_end? end super end |
Instance Method Details
#check_validity! ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/i_am_valid/file_size_validator.rb', line 21 def check_validity! keys = CHECKS.keys & .keys if keys.empty? raise ArgumentError, 'Range unspecified. Specify the :within, :maximum, :minimum, or :is option.' end keys.each do |key| value = [key] unless value.is_a?(Integer) && value >= 0 raise ArgumentError, ":#{key} must be a nonnegative Integer" end end end |
#help ⇒ Object
60 61 62 |
# File 'lib/i_am_valid/file_size_validator.rb', line 60 def help Helper.instance end |
#validate_each(record, attribute, value) ⇒ Object
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/i_am_valid/file_size_validator.rb', line 37 def validate_each(record, attribute, value) raise(ArgumentError, "A CarrierWave::Uploader::Base object was expected") unless value.kind_of? CarrierWave::Uploader::Base value = ([:tokenizer] || DEFAULT_TOKENIZER).call(value) if value.kind_of?(String) CHECKS.each do |key, validity_check| next unless check_value = [key] value ||= [] if key == :maximum value_size = value.size next if value_size.send(validity_check, check_value) = .except(*RESERVED_OPTIONS) [:file_size] = help.number_to_human_size check_value = [MESSAGES[key]] [:message] ||= if record.errors.add(attribute, MESSAGES[key], ) end end |