Sha256: 2988d596c7bf96b350c98113ba9d7ff7110b978a71ab075423f295fdd7d8ac2e

Contents?: true

Size: 1.42 KB

Versions: 1

Compression:

Stored size: 1.42 KB

Contents

# Uses the Phony.plausible method to validate an attribute.
# Usage:
#   validate :phone_number, :phony_plausible => true
class PhonyPlausibleValidator < ActiveModel::EachValidator

  # Validates a String using Phony.plausible? method.
  def validate_each(record, attribute, value)
    return if value.blank?

    @record = record
    @record.errors.add(attribute, error_message) if not Phony.plausible?(value, cc: country_code_or_country_number)
  end

  private

  def error_message
    options[:message] || :improbable_phone
  end

  def country_code_or_country_number
    options[:country_code] || record_country_number || record_country_code
  end

  def record_country_number
    @record.country_number if @record.respond_to?(:country_number)
  end

  def record_country_code
    @record.country_code if @record.respond_to?(:country_code)
  end

end

module ActiveModel
  module Validations
    module HelperMethods

      def validates_plausible_phone(*attr_names)
        # merged attributes are modified somewhere, so we are cloning them for each validator
        merged_attributes = _merge_attributes(attr_names)

        validates_with PresenceValidator, merged_attributes.clone if merged_attributes[:presence]
        validates_with FormatValidator, merged_attributes.clone if (merged_attributes[:with] or merged_attributes[:without])
        validates_with PhonyPlausibleValidator, merged_attributes.clone
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phony_rails-0.6.0 lib/validators/phony_validator.rb