Sha256: 70fefb4b4cffa01a9bfc509b7c1d66c55e6c834baa80e0fae281804e83ea1eb2
Contents?: true
Size: 829 Bytes
Versions: 1
Compression:
Stored size: 829 Bytes
Contents
# frozen_string_literal: true class MacAddressValidator < ActiveModel::EachValidator DEFAULT_FORMATS ||= [ /^([\h]{2}:){5}[\h]{2}?$/i, /^([\h]{2}[-|\.|\s]){5}[\h]{2}?$/i, /^([\h]{6})[-|\.][\h]{6}?$/i, /^([\h]{6}):[\h]{6}?$/i, /^([\h]{4}[-|\.|\s]){2}[\h]{4}?$/i, /^[\h]{12}?$/i ].freeze def validate_each(record, attribute, value) return if valid?(value.to_s) record.errors[attribute] << (options[:message] || I18n.t('active_validation.errors.messages.mac_address')) end private def valid_format?(value) result = false DEFAULT_FORMATS.each do |pat| result = (value =~ pat) break if result end result 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/mac_address_validator.rb |