Sha256: c4a8885265d4748e9b41cbb0f28be1936c2510feb08877d0eec66eeecb890c66

Contents?: true

Size: 683 Bytes

Versions: 1

Compression:

Stored size: 683 Bytes

Contents

# frozen_string_literal: true

class IsbnValidator < ActiveModel::EachValidator

  CHARACTERS ||= %w[0 1 2 3 4 5 6 7 8 9 0 x].freeze

  def validate_each(record, attribute, value)
    return if valid?(value.to_s)

    record.errors[attribute] <<
      (options[:message] || I18n.t('active_validation.errors.messages.isbn'))
  end

  private

  def valid_format?(value)
    return(false) if value.empty?

    value = value.gsub(/-| /, '').downcase.chars

    [10, 13].include?(value.size) && value.all? { |chr| CHARACTERS.include?(chr) }
  end

  def valid_length?(value)
    value.present?
  end

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

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_validation-5.1.0 lib/active_validation/validators/isbn_validator.rb