demarches-normaliennes/app/lib/file_size_validator.rb

95 lines
2.4 KiB
Ruby
Raw Normal View History

2016-02-19 14:10:35 +01:00
# Source: https://github.com/gitlabhq/gitlabhq/blob/master/lib/file_size_validator.rb
2016-02-18 15:46:59 +01:00
class FileSizeValidator < ActiveModel::EachValidator
2016-02-19 14:10:35 +01:00
MESSAGES = { is: :wrong_size, minimum: :size_too_small, maximum: :size_too_big }.freeze
CHECKS = { is: :==, minimum: :>=, maximum: :<= }.freeze
2016-02-18 15:46:59 +01:00
DEFAULT_TOKENIZER = lambda { |value| value.split(//) }
RESERVED_OPTIONS = [:minimum, :maximum, :within, :is, :tokenizer, :too_short, :too_long]
def initialize(options)
2018-03-06 12:01:45 +01:00
range = options.delete(:in) || options.delete(:within)
if range.present?
2018-10-01 13:24:37 +02:00
if !range.is_a?(Range)
raise ArgumentError, ":in and :within must be a Range"
end
2016-02-18 15:46:59 +01:00
options[:minimum], options[:maximum] = range.begin, range.end
2018-10-01 13:24:37 +02:00
if range.exclude_end?
options[:maximum] -= 1
end
2016-02-18 15:46:59 +01:00
end
super
end
def check_validity!
keys = CHECKS.keys & options.keys
if keys.empty?
raise ArgumentError, 'Range unspecified. Specify the :within, :maximum, :minimum, or :is option.'
end
keys.each do |key|
value = options[key]
2018-01-11 19:04:39 +01:00
if !(value.is_a?(Integer) && value >= 0) && !value.is_a?(Symbol)
2016-02-19 14:10:35 +01:00
raise ArgumentError, ":#{key} must be a nonnegative Integer or symbol"
2016-02-18 15:46:59 +01:00
end
end
end
def validate_each(record, attribute, value)
2018-12-18 22:18:08 +01:00
if !value.is_a?(CarrierWave::Uploader::Base)
2018-10-01 13:24:37 +02:00
raise(ArgumentError, "A CarrierWave::Uploader::Base object was expected")
end
2016-02-19 14:10:35 +01:00
2018-12-18 22:18:08 +01:00
if value.is_a?(String)
2018-10-01 13:24:37 +02:00
value = (options[:tokenizer] || DEFAULT_TOKENIZER).call(value)
end
2016-02-18 15:46:59 +01:00
CHECKS.each do |key, validity_check|
2018-10-01 13:24:37 +02:00
if !check_value = options[key]
next
end
2016-02-18 15:46:59 +01:00
2016-02-19 14:10:35 +01:00
check_value =
case check_value
when Integer
check_value
when Symbol
record.send(check_value)
end
2018-10-01 13:24:37 +02:00
if key == :maximum
value ||= []
end
2016-02-18 15:46:59 +01:00
value_size = value.size
2018-10-01 13:24:37 +02:00
if value_size.send(validity_check, check_value)
next
end
2016-02-18 15:46:59 +01:00
errors_options = options.except(*RESERVED_OPTIONS)
errors_options[:file_size] = help.number_to_human_size check_value
default_message = options[MESSAGES[key]]
2018-10-01 13:24:37 +02:00
if default_message
errors_options[:message] ||= default_message
end
2016-02-18 15:46:59 +01:00
record.errors.add(attribute, MESSAGES[key], errors_options)
end
end
2016-02-19 14:10:35 +01:00
2016-02-18 15:46:59 +01:00
def help
Helper.instance
end
class Helper
include Singleton
include ActionView::Helpers::NumberHelper
end
2017-04-04 15:27:04 +02:00
end