Class: Paperclip::Validators::AttachmentSizeValidator

Inherits:
ActiveModel::Validations::NumericalityValidator
  • Object
show all
Defined in:
lib/paperclip/validators/attachment_size_validator.rb

Constant Summary collapse

AVAILABLE_CHECKS =
[:less_than, :less_than_or_equal_to, :greater_than, :greater_than_or_equal_to]

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ AttachmentSizeValidator

Returns a new instance of AttachmentSizeValidator.



8
9
10
11
# File 'lib/paperclip/validators/attachment_size_validator.rb', line 8

def initialize(options)
  extract_options(options)
  super
end

Instance Method Details

#check_validity!Object



34
35
36
37
38
# File 'lib/paperclip/validators/attachment_size_validator.rb', line 34

def check_validity!
  unless (AVAILABLE_CHECKS + [:in]).any? { |argument| options.has_key?(argument) }
    raise ArgumentError, "You must pass either :less_than, :greater_than, or :in to the validator"
  end
end

#validate_each(record, attr_name, value) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/paperclip/validators/attachment_size_validator.rb', line 13

def validate_each(record, attr_name, value)
  attr_name = "#{attr_name}_file_size".to_sym
  value = record.send(:read_attribute_for_validation, attr_name)

  unless value.blank?
    options.slice(*AVAILABLE_CHECKS).each do |option, option_value|
      option_value = option_value.call(record) if option_value.is_a?(Proc)
      option_value = extract_option_value(option, option_value)

      unless value.send(CHECKS[option], option_value)
        error_message_key = options[:in] ? :in_between : option
        record.errors.add(attr_name, error_message_key, filtered_options(value).merge(
          :min => min_value_in_human_size(record),
          :max => max_value_in_human_size(record),
          :count => human_size(option_value)
        ))
      end
    end
  end
end