2014-11-17 12:04:29 +01:00
|
|
|
class SpamHandler
|
|
|
|
|
|
|
|
def self.should_prevent_registration_from_ip?(ip_address)
|
|
|
|
return false if SiteSetting.max_new_accounts_per_registration_ip <= 0
|
|
|
|
|
2014-11-17 15:02:10 +01:00
|
|
|
tl2_plus_accounts_with_same_ip = User.where("trust_level >= ?", TrustLevel[2])
|
2017-07-28 10:20:09 +09:00
|
|
|
.where(ip_address: ip_address.to_s)
|
|
|
|
.count
|
2014-11-17 15:02:10 +01:00
|
|
|
|
|
|
|
return false if tl2_plus_accounts_with_same_ip > 0
|
|
|
|
|
2014-11-21 00:25:44 +01:00
|
|
|
staff_user_ids = Group[:staff].user_ids - [-1]
|
|
|
|
staff_members_with_same_ip = User.where(id: staff_user_ids)
|
2017-07-28 10:20:09 +09:00
|
|
|
.where(ip_address: ip_address.to_s)
|
|
|
|
.count
|
2014-11-21 00:25:44 +01:00
|
|
|
|
|
|
|
return false if staff_members_with_same_ip > 0
|
|
|
|
|
2015-06-02 15:06:45 +05:30
|
|
|
ip_whitelisted = ScreenedIpAddress.is_whitelisted?(ip_address)
|
|
|
|
return false if ip_whitelisted
|
|
|
|
|
2014-11-17 12:04:29 +01:00
|
|
|
tl0_accounts_with_same_ip = User.unscoped
|
2017-07-28 10:20:09 +09:00
|
|
|
.where(trust_level: TrustLevel[0])
|
|
|
|
.where(ip_address: ip_address.to_s)
|
|
|
|
.count
|
2014-11-17 12:04:29 +01:00
|
|
|
|
|
|
|
tl0_accounts_with_same_ip >= SiteSetting.max_new_accounts_per_registration_ip
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|