Sha256: 3507ab218875c79eef02fed54c92c90e65790d0898161f9dc9e7f73e5505f6ad
Contents?: true
Size: 699 Bytes
Versions: 2
Compression:
Stored size: 699 Bytes
Contents
# frozen_string_literal: true class PasswordValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) return if valid?(value.to_s, options) record.errors[attribute] << (options[:message] || I18n.t('active_validation.errors.messages.password')) end private def valid_format?(value, options) value =~ if options[:strict] /^(?=^.{1,255}$)((?=.*[A-Za-z0-9])(?=.*[A-Z])(?=.*[a-z]))^.*$/ else /^[A-Za-z0-9!@#$%^&*_-]{1,255}$/ 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
active_validation-5.0.0 | lib/active_validation/validators/password_validator.rb |
active_validation-4.1.0 | lib/active_validation/validators/password_validator.rb |