-
Notifications
You must be signed in to change notification settings - Fork 2
/
array_inclusion_validator.rb
49 lines (44 loc) · 1.91 KB
/
array_inclusion_validator.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Like the default Rails inclusion validator, but the built-in Rails
# validator won't work on an _array_ of things.
#
# So if you have an array of primitive values, you can use this to
# validate that all elements of the array are in the inclusion list.
#
# Or that all the elements of the array are whatever you want,
# by supplying a proc that returns false for bad values.
#
# Empty arrays are always allowed, add a presence validator if you don't
# want to allow them, eg `validates :genre, presence: true, array_inclusion: { in: whatever }`
#
# @example
# class Work < Kithe::Work
# attr_json :genre, :string, array: true
# validates :genre, array_inclusion: { in: ALLOWED_GENRES }
# validates :genre, array_inclusion: { proc: ->(val) { val =~ /\d+/ } }
# #...
#
# Custom message can interpolate `rejected_values` value. (Should also work for i18n)
#
# Note: There isn't currently a great way to show primitive array validation errors on
# a form for an invalid edit, the validation error can only be shown as if for the entire
# array field, not the individual invalid edit. You might consider modelling as a compound
# Model with only one attribute instead of as a primitive.
#
# @example
# validates :genre, array_inclusion: { in: ALLOWED_GENRES, message: "option %{rejected_values} not allowed" }
class ArrayInclusionValidator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
values = value || []
not_allowed_values = []
if options[:in]
not_allowed_values.concat(values - options[:in])
end
if options[:proc]
not_allowed_values.concat(values.find_all { |v| ! options[:proc].call(v) })
end
unless not_allowed_values.blank?
formatted_rejected = not_allowed_values.uniq.collect(&:inspect).join(",")
record.errors.add(attribute, :inclusion, **options.except(:in).merge!(rejected_values: formatted_rejected, value: value))
end
end
end