Sha256: 1a5d5f5f06f817130379b5c901abf2f8de351996a92a7c477683435bce402eaf

Contents?: true

Size: 837 Bytes

Versions: 1

Compression:

Stored size: 837 Bytes

Contents

# frozen_string_literal: true

class AlphaNumericValidator < ActiveModel::EachValidator

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

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

  private

  def valid_format?(value, options)
    strict = options[:strict]

    value =~ case options[:case]
             when :lower
               strict ? /^[a-z0-9]+$/ : /^[a-z0-9 ]+$/
             when :upper
               strict ? /^[A-Z0-9]+$/ : /^[A-Z0-9 ]+$/
             else
               strict ? /^[A-Za-z0-9]+$/i : /^[A-Za-z0-9 ]+$/i
             end
  end

  def valid_length?(value)
    value.present?
  end

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

end

Version data entries

1 entries across 1 versions & 1 rubygems

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