2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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
|
2023-10-27 03:22:38 -04:00
|
|
|
record.errors.add(attribute, :blocked) if ScreenedIpAddress.should_block?(record.ip_address)
|
2015-06-01 00:46:25 -04:00
|
|
|
if record.trust_level == TrustLevel[0] &&
|
|
|
|
SpamHandler.should_prevent_registration_from_ip?(record.ip_address)
|
2023-10-27 03:22:38 -04:00
|
|
|
record.errors.add(attribute, :max_new_accounts_per_registration_ip)
|
2015-06-01 00:46:25 -04:00
|
|
|
end
|
2013-10-21 14:49:51 -04:00
|
|
|
end
|
|
|
|
end
|
2014-11-17 06:04:29 -05:00
|
|
|
end
|