Sha256: 6e011b3a46541fd1efa93db8d7bd7a61c297876ef82dc45d88b495cf45ab2e8e

Contents?: true

Size: 655 Bytes

Versions: 1

Compression:

Stored size: 655 Bytes

Contents

class IsbnValidator < ActiveModel::EachValidator

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

  private

  CHARS_VALUES = %w(0 1 2 3 4 5 6 7 8 9 0 x).freeze

  def valid_format?(value)
    return(false) if value.empty?
    value = value.gsub(/-| /, '').downcase.chars

    [10, 13].include?(value.size) && value.all? { |chr| CHARS_VALUES.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-4.0.0 lib/active_validation/validators/isbn_validator.rb