2014-11-17 06:04:29 -05:00
|
|
|
require_dependency "spam_handler"
|
|
|
|
|
2013-10-21 14:49:51 -04:00
|
|
|
class AllowedIpAddressValidator < ActiveModel::EachValidator
|
|
|
|
|
|
|
|
def validate_each(record, attribute, value)
|
2014-11-17 06:04:29 -05:00
|
|
|
if record.ip_address
|
2015-06-01 00:46:25 -04:00
|
|
|
if ScreenedIpAddress.should_block?(record.ip_address)
|
2015-06-01 22:05:42 -04:00
|
|
|
record.errors.add(attribute, I18n.t('user.ip_address.blocked'))
|
2014-11-17 06:04:29 -05:00
|
|
|
end
|
2015-06-01 00:46:25 -04:00
|
|
|
if record.trust_level == TrustLevel[0] && SpamHandler.should_prevent_registration_from_ip?(record.ip_address)
|
|
|
|
record.errors.add(attribute, I18n.t('user.ip_address.max_new_accounts_per_registration_ip'))
|
|
|
|
end
|
2013-10-21 14:49:51 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-11-17 06:04:29 -05:00
|
|
|
end
|