Class: Refinery::Jobs::Validators::FileSizeValidator

Inherits:
ActiveModel::Validator
  • Object
show all
Defined in:
lib/refinery/jobs/validators/file_size_validator.rb

Instance Method Summary collapse

Instance Method Details

#validate(record) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'lib/refinery/jobs/validators/file_size_validator.rb', line 6

def validate(record)
  file = record.resume

  if file.respond_to?(:length) && file.length > Refinery::Resources.max_file_size
    record.errors[:file] << ::I18n.t('too_big',
                                     :scope => 'activerecord.errors.models.refinery/resource',
                                     :size => Refinery::Resources.max_file_size)
  end
end