You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
449 B
24 lines
449 B
# frozen_string_literal: true
|
|
|
|
class LanguageValidator < ActiveModel::EachValidator
|
|
include LanguagesHelper
|
|
|
|
def validate_each(record, attribute, value)
|
|
@value = value
|
|
|
|
record.errors.add(attribute, :invalid) unless valid_locale_value?
|
|
end
|
|
|
|
private
|
|
|
|
def valid_locale_value?
|
|
if @value.nil?
|
|
true
|
|
elsif @value.is_a?(Array)
|
|
@value.all? { |x| valid_locale?(x) }
|
|
else
|
|
valid_locale?(@value)
|
|
end
|
|
end
|
|
end
|