Sha256: 82627627b473583ab2caee7f0d0b1b43cc03e6c3568b97540dd721d379459001
Contents?: true
Size: 634 Bytes
Versions: 2
Compression:
Stored size: 634 Bytes
Contents
class PasswordValidator < 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.password'.freeze)) end end private def valid_format?(value, options) value =~ (options.fetch(:strict, false) ? /^(?=^.{1,255}$)((?=.*[A-Za-z0-9])(?=.*[A-Z])(?=.*[a-z]))^.*$/ : /^[a-z0-9!@#$%^&*_-]{1,255}$/) 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-2.4.0 | lib/active_validation/validators/password_validator.rb |
active_validation-2.3.0 | lib/active_validation/validators/password_validator.rb |