Class: ValidatesTimeliness::Validator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Includes:
Conversion
Defined in:
lib/validates_timeliness/validator.rb

Constant Summary collapse

RESTRICTIONS =
{
  :is_at        => :==,
  :before       => :<,
  :after        => :>,
  :on_or_before => :<=,
  :on_or_after  => :>=,
}.freeze
DEFAULT_ERROR_VALUE_FORMATS =
{
  :date => '%Y-%m-%d',
  :time => '%H:%M:%S',
  :datetime => '%Y-%m-%d %H:%M:%S'
}.freeze
RESTRICTION_ERROR_MESSAGE =
"Error occurred validating %s for %s restriction:\n%s"

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Conversion

#dummy_time, #evaluate_option_value, #parse, #restriction_shorthand?, #type_cast_value

Constructor Details

#initialize(options) ⇒ Validator

Returns a new instance of Validator.



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/validates_timeliness/validator.rb', line 30

def initialize(options)
  @type = options.delete(:type) || :datetime
  @allow_nil, @allow_blank = options.delete(:allow_nil), options.delete(:allow_blank)

  if range = options.delete(:between)
    raise ArgumentError, ":between must be a Range or an Array" unless range.is_a?(Range) || range.is_a?(Array)
    options[:on_or_after] = range.first
    if range.is_a?(Range) && range.exclude_end?
      options[:before] = range.last
    else
      options[:on_or_before] = range.last
    end
  end

  @restrictions_to_check = RESTRICTIONS.keys & options.keys

  super

  setup_timeliness_validated_attributes(options[:class]) if options[:class]
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



8
9
10
# File 'lib/validates_timeliness/validator.rb', line 8

def attributes
  @attributes
end

#typeObject (readonly)

Returns the value of attribute type.



8
9
10
# File 'lib/validates_timeliness/validator.rb', line 8

def type
  @type
end

Class Method Details

.kindObject



26
27
28
# File 'lib/validates_timeliness/validator.rb', line 26

def self.kind
  :timeliness
end

Instance Method Details

#add_error(record, attr_name, message, value = nil) ⇒ Object



92
93
94
95
96
# File 'lib/validates_timeliness/validator.rb', line 92

def add_error(record, attr_name, message, value=nil)
  value = format_error_value(value) if value
  message_options = { :message => options.fetch(:"#{message}_message", options[:message]), :restriction => value }
  record.errors.add(attr_name, message, message_options)
end

#attribute_raw_value(record, attr_name) ⇒ Object



103
104
105
106
# File 'lib/validates_timeliness/validator.rb', line 103

def attribute_raw_value(record, attr_name)
  record.respond_to?(:read_timeliness_attribute_before_type_cast) &&
    record.read_timeliness_attribute_before_type_cast(attr_name.to_s)
end

#format_error_value(value) ⇒ Object



98
99
100
101
# File 'lib/validates_timeliness/validator.rb', line 98

def format_error_value(value)
  format = I18n.t(@type, :default => DEFAULT_ERROR_VALUE_FORMATS[@type], :scope => 'validates_timeliness.error_value_formats')
  value.strftime(format)
end

#setup_timeliness_validated_attributes(model) ⇒ Object Also known as: setup



51
52
53
54
55
56
# File 'lib/validates_timeliness/validator.rb', line 51

def setup_timeliness_validated_attributes(model)
  if model.respond_to?(:timeliness_validated_attributes)
    model.timeliness_validated_attributes ||= []
    model.timeliness_validated_attributes |= attributes
  end
end

#timezone_aware?(record, attr_name) ⇒ Boolean

Returns:

  • (Boolean)


108
109
110
111
# File 'lib/validates_timeliness/validator.rb', line 108

def timezone_aware?(record, attr_name)
  record.class.respond_to?(:timeliness_attribute_timezone_aware?) &&
    record.class.timeliness_attribute_timezone_aware?(attr_name)
end

#validate_each(record, attr_name, value) ⇒ Object



63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/validates_timeliness/validator.rb', line 63

def validate_each(record, attr_name, value)
  raw_value = attribute_raw_value(record, attr_name) || value
  return if (@allow_nil && raw_value.nil?) || (@allow_blank && raw_value.blank?)

  @timezone_aware = timezone_aware?(record, attr_name)
  value = parse(raw_value) if value.is_a?(String) || options[:format]
  value = type_cast_value(value, @type)

  add_error(record, attr_name, :"invalid_#{@type}") and return if value.blank?

  validate_restrictions(record, attr_name, value)
end

#validate_restrictions(record, attr_name, value) ⇒ Object



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/validates_timeliness/validator.rb', line 76

def validate_restrictions(record, attr_name, value)
  @restrictions_to_check.each do |restriction|
    begin
      restriction_value = type_cast_value(evaluate_option_value(options[restriction], record), @type)
      unless value.send(RESTRICTIONS[restriction], restriction_value)
        add_error(record, attr_name, restriction, restriction_value) and break
      end
    rescue => e
      unless ValidatesTimeliness.ignore_restriction_errors
        message = RESTRICTION_ERROR_MESSAGE % [ attr_name, restriction.inspect, e.message ]
        add_error(record, attr_name, message) and break
      end
    end
  end
end