Sha256: 3aaff0c4d087c1f51d6f2ede9a6f27a2ce67019d397146800ef1f7b2b166b279
Contents?: true
Size: 668 Bytes
Versions: 11
Compression:
Stored size: 668 Bytes
Contents
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
11 entries across 11 versions & 1 rubygems