Improve SiretFormatValidator readability
This commit is contained in:
parent
471f6799c8
commit
49d872452a
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue