Sha256: 32e6fde0d1a918574e1d054d2c23d06873d79ddc414856081c359bf2e569591c
Contents?: true
Size: 785 Bytes
Versions: 4
Compression:
Stored size: 785 Bytes
Contents
class AlphaNumericValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) unless valid?(value.to_s, options) record.errors[attribute] << (options.fetch(:message, false) || I18n.t('active_validation.errors.messages.alpha_numeric'.freeze)) end end private def valid_format?(value, options) strict = options.fetch(:strict, false) value =~ case options.fetch(:case, :any) when :lower strict ? /^[a-z0-9]+$/ : /^[a-z0-9 ]+$/ when :upper strict ? /^[A-Z0-9]+$/ : /^[A-Z0-9 ]+$/ else strict ? /^[A-Za-z0-9]+$/i : /^[A-Za-z0-9 ]+$/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
4 entries across 4 versions & 1 rubygems