Sha256: f7486f17b6b0cbf2f70038f770f12ad54f2e5d7f27d0ccb7dce2ac5e6c069bd2

Contents?: true

Size: 642 Bytes

Versions: 1

Compression:

Stored size: 642 Bytes

Contents

# frozen_string_literal: true

class IpValidator < 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.ip'))
  end

  private

  # rubocop:disable Metrics/LineLength
  def valid_format?(value)
    value =~ /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/
  end
  # rubocop:enable Metrics/LineLength

  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/ip_validator.rb