Sha256: df0af9422d4fd5ebf8d695979ce95c21090f9c32613e3dcc6322a9e1cb0a0895
Contents?: true
Size: 671 Bytes
Versions: 1
Compression:
Stored size: 671 Bytes
Contents
class PasswordValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) unless valid?(value.to_s, options) record.errors[attribute] << (options[:message] || I18n.t('active_validation.errors.messages.password')) end 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_validation-4.0.0 | lib/active_validation/validators/password_validator.rb |