Sha256: 53cc0d8b48b89a35683a3a257f5506458497d9a687ee8fde29f6b809c86247a1

Contents?: true

Size: 916 Bytes

Versions: 1

Compression:

Stored size: 916 Bytes

Contents

class CusipValidator < ActiveModel::EachValidator

  def validate_each(record, attribute, value)
    unless valid?(value.to_s)
      record.errors[attribute] << options.fetch(:message, I18n.t("active_validation.errors.messages.cusip"))
    end
  end

  private

  def valid_checksum?(value)
    digits = value.chars.map { |c| c.match(/[A-Z]/) ? (c.ord - 55) : c.to_i }
    even_values = digits.values_at(* digits.each_index.select { |i| i.even? })
    odd_values = digits.values_at(* digits.each_index.select { |i| i.odd? })
    values = odd_values.map { |i| i * 2 }.zip(even_values).flatten
    values = values.inject(0) { |s, i| s += (i / 10) + i % 10 }

    ((10 - values) % 10) % 10
  end

  def valid_format?(value)
    value =~ /^[0-9A-Z]{9}$/
  end

  def valid_length?(value)
    value.present?
  end

  def valid?(value)
    valid_length?(value) && valid_format?(value) && valid_checksum?(value)
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_validation-3.0.0 lib/active_validation/validators/cusip_validator.rb