Sha256: ddd88b04389f497a4c9ee81ccc672b9731daec966a74008aa2f577e72b68d9c3

Contents?: true

Size: 731 Bytes

Versions: 1

Compression:

Stored size: 731 Bytes

Contents

class AlphaValidator < ActiveModel::EachValidator

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

  private

  def valid_format?(value, options)
    strict = options.fetch(:strict, false)

    value =~ case options.fetch(:case, :any)
    when :lower
      strict ? /^[a-z]+$/ : /^[a-z ]+$/
    when :upper
      strict ? /^[A-Z]+$/ : /^[A-Z ]+$/
    else
      strict ? /^[A-Za-z]+$/i : /^[A-Za-z ]+$/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-3.0.0 lib/active_validation/validators/alpha_validator.rb