Sha256: 358a8de4aca3331481189e5ee721aff28dbc7d9f3ba43eaee82f4cbc06d1165e

Contents?: true

Size: 506 Bytes

Versions: 1

Compression:

Stored size: 506 Bytes

Contents

# frozen_string_literal: true

class PhoneValidator < ActiveModel::EachValidator

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

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

  private

  def valid_format?(value)
    value =~ %r{^[0-9+\(\)#\.\s\/ext-]+$}
  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/phone_validator.rb