Improve SiretFormatValidator readability

This commit is contained in:
gregoirenovel 2018-09-18 22:14:07 +02:00
parent 471f6799c8
commit 49d872452a

View file

@ -1,8 +1,9 @@
class SiretFormatValidator < ActiveModel::EachValidator
def validate_each(record,attribute,value)
def validate_each(record, attribute, value)
if !(value =~ /^\d{14}$/)
record.errors.add(attribute, :format)
end
if value.nil? || (luhn_checksum(value) % 10 != 0)
record.errors.add(attribute, :checksum)
end
@ -12,11 +13,13 @@ class SiretFormatValidator < ActiveModel::EachValidator
def luhn_checksum(value)
accum = 0
value.reverse.each_char.map(&:to_i).each_with_index do |digit, index|
t = index.even? ? digit : digit * 2
t = t - 9 if t >= 10
accum += t
end
accum
end
end