Class: Paperclip::Validators::AttachmentContentTypeValidator

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

Instance Method Summary (collapse)

Constructor Details

- (AttachmentContentTypeValidator) initialize(options)

A new instance of AttachmentContentTypeValidator



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

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

Instance Method Details

- (Object) allowed_types



35
36
37
# File 'lib/paperclip/validators/attachment_content_type_validator.rb', line 35

def allowed_types
  [options[:content_type]].flatten.compact
end

- (Object) check_validity!



43
44
45
46
47
# File 'lib/paperclip/validators/attachment_content_type_validator.rb', line 43

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

- (Object) forbidden_types



39
40
41
# File 'lib/paperclip/validators/attachment_content_type_validator.rb', line 39

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

- (Object) mark_invalid(record, attribute, types)



31
32
33
# File 'lib/paperclip/validators/attachment_content_type_validator.rb', line 31

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

- (Object) validate_blacklist(record, attribute, value)



25
26
27
28
29
# File 'lib/paperclip/validators/attachment_content_type_validator.rb', line 25

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

- (Object) validate_each(record, attribute, value)



9
10
11
12
13
14
15
16
17
# File 'lib/paperclip/validators/attachment_content_type_validator.rb', line 9

def validate_each(record, attribute, value)
  attribute = "#{attribute}_content_type".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)
end

- (Object) validate_whitelist(record, attribute, value)



19
20
21
22
23
# File 'lib/paperclip/validators/attachment_content_type_validator.rb', line 19

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