2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-11-17 05:04:29 -06:00
|
|
|
class SpamHandler
|
|
|
|
def self.should_prevent_registration_from_ip?(ip_address)
|
|
|
|
return false if SiteSetting.max_new_accounts_per_registration_ip <= 0
|
|
|
|
|
2023-01-09 06:10:19 -06:00
|
|
|
tl2_plus_accounts_with_same_ip =
|
|
|
|
User.where("trust_level >= ?", TrustLevel[2]).where(ip_address: ip_address.to_s).count
|
2014-11-17 08:02:10 -06:00
|
|
|
|
|
|
|
return false if tl2_plus_accounts_with_same_ip > 0
|
|
|
|
|
2023-01-09 06:10:19 -06:00
|
|
|
staff_members_with_same_ip =
|
|
|
|
Group[:staff].users.human_users.where(ip_address: ip_address.to_s).count
|
2014-11-20 17:25:44 -06:00
|
|
|
|
|
|
|
return false if staff_members_with_same_ip > 0
|
|
|
|
|
2020-07-26 19:23:54 -05:00
|
|
|
allowed_ip = ScreenedIpAddress.is_allowed?(ip_address)
|
|
|
|
return false if allowed_ip
|
2015-06-02 04:36:45 -05:00
|
|
|
|
2023-01-09 06:10:19 -06:00
|
|
|
tl0_accounts_with_same_ip =
|
|
|
|
User.unscoped.where(trust_level: TrustLevel[0]).where(ip_address: ip_address.to_s).count
|
2014-11-17 05:04:29 -06:00
|
|
|
|
|
|
|
tl0_accounts_with_same_ip >= SiteSetting.max_new_accounts_per_registration_ip
|
|
|
|
end
|
|
|
|
end
|