Class: Paperclip::Validators::AttachmentFileNameValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
lib/paperclip/validators/attachment_file_name_validator.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ AttachmentFileNameValidator

Returns a new instance of AttachmentFileNameValidator.



4
5
6
7
# File 'lib/paperclip/validators/attachment_file_name_validator.rb', line 4

def initialize(options)
  options[:allow_nil] = true unless options.has_key?(:allow_nil)
  super
end

Class Method Details

.helper_method_nameObject



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

def self.helper_method_name
  :validates_attachment_file_name
end

Instance Method Details

#allowedObject



46
47
48
# File 'lib/paperclip/validators/attachment_file_name_validator.rb', line 46

def allowed
  [options[:matches]].flatten.compact
end

#check_validity!Object



54
55
56
57
58
# File 'lib/paperclip/validators/attachment_file_name_validator.rb', line 54

def check_validity!
  unless options.has_key?(:matches) || options.has_key?(:not)
    raise ArgumentError, "You must pass in either :matches or :not to the validator"
  end
end

#forbiddenObject



50
51
52
# File 'lib/paperclip/validators/attachment_file_name_validator.rb', line 50

def forbidden
  [options[:not]].flatten.compact
end

#mark_invalid(record, attribute, patterns) ⇒ Object



42
43
44
# File 'lib/paperclip/validators/attachment_file_name_validator.rb', line 42

def mark_invalid(record, attribute, patterns)
  record.errors.add attribute, :invalid, options.merge(:names => patterns.join(', '))
end

#validate_blacklist(record, attribute, value) ⇒ Object



36
37
38
39
40
# File 'lib/paperclip/validators/attachment_file_name_validator.rb', line 36

def validate_blacklist(record, attribute, value)
  if forbidden.present? && forbidden.any? { |type| type === value }
    mark_invalid record, attribute, forbidden
  end
end

#validate_each(record, attribute, value) ⇒ Object



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

def validate_each(record, attribute, value)
  base_attribute = attribute.to_sym
  attribute = "#{attribute}_file_name".to_sym
  value = record.send :read_attribute_for_validation, attribute

  return if (value.nil? && options[:allow_nil]) || (value.blank? && options[:allow_blank])

  validate_whitelist(record, attribute, value)
  validate_blacklist(record, attribute, value)

  if record.errors.include? attribute
    record.errors[attribute].each do |error|
      record.errors.add base_attribute, error
    end
  end
end

#validate_whitelist(record, attribute, value) ⇒ Object



30
31
32
33
34
# File 'lib/paperclip/validators/attachment_file_name_validator.rb', line 30

def validate_whitelist(record, attribute, value)
  if allowed.present? && allowed.none? { |type| type === value }
    mark_invalid record, attribute, allowed
  end
end