demarches-normaliennes/app/validators/siret_format_validator.rb

23 lines
537 B
Ruby
Raw Normal View History

2015-12-03 15:02:22 +01:00
class SiretFormatValidator < ActiveModel::EachValidator
def validate_each(record,attribute,value)
2018-01-11 19:04:39 +01:00
if !(value =~ /^\d{14}$/)
2015-12-03 15:02:22 +01:00
record.errors.add(attribute, :format)
end
2018-01-11 19:04:39 +01:00
if value.nil? || (luhn_checksum(value) % 10 != 0)
2015-12-03 15:02:22 +01:00
record.errors.add(attribute, :checksum)
end
end
private
2015-12-03 15:02:22 +01:00
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