2013-12-21 05:34:34 +08:00
|
|
|
require_dependency "common_passwords/common_passwords"
|
|
|
|
|
2013-12-20 04:12:03 +08:00
|
|
|
class PasswordValidator < ActiveModel::EachValidator
|
|
|
|
|
|
|
|
def validate_each(record, attribute, value)
|
|
|
|
return unless record.password_required?
|
|
|
|
if value.nil?
|
|
|
|
record.errors.add(attribute, :blank)
|
2013-12-20 05:15:36 +08:00
|
|
|
elsif value.length < SiteSetting.min_password_length
|
|
|
|
record.errors.add(attribute, :too_short, count: SiteSetting.min_password_length)
|
2015-02-26 00:59:57 +08:00
|
|
|
elsif record.username.present? && value == record.username
|
|
|
|
record.errors.add(attribute, :same_as_username)
|
2016-01-06 04:43:11 +08:00
|
|
|
elsif record.email.present? && value == record.email
|
2015-02-28 02:47:43 +08:00
|
|
|
record.errors.add(attribute, :same_as_email)
|
2013-12-21 05:34:34 +08:00
|
|
|
elsif SiteSetting.block_common_passwords && CommonPasswords.common_password?(value)
|
|
|
|
record.errors.add(attribute, :common)
|
2013-12-20 04:12:03 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|