2014-11-26 00:12:49 +08:00
|
|
|
module Jobs
|
|
|
|
|
|
|
|
class CleanUpUnmatchedIPs < Jobs::Scheduled
|
|
|
|
every 1.day
|
|
|
|
|
2014-11-26 01:45:45 +08:00
|
|
|
def execute(args)
|
2015-03-10 01:55:17 +08:00
|
|
|
# roll-up IP addresses first
|
|
|
|
ScreenedIpAddress.roll_up
|
|
|
|
|
2014-11-26 00:12:49 +08:00
|
|
|
last_match_threshold = SiteSetting.max_age_unmatched_ips.days.ago
|
|
|
|
|
2015-03-10 01:55:17 +08:00
|
|
|
# remove old unmatched IP addresses
|
2014-11-26 00:12:49 +08:00
|
|
|
ScreenedIpAddress.where(action_type: ScreenedIpAddress.actions[:block])
|
2017-07-28 09:20:09 +08:00
|
|
|
.where("last_match_at < ? OR (last_match_at IS NULL AND created_at < ?)", last_match_threshold, last_match_threshold)
|
|
|
|
.destroy_all
|
2014-11-26 00:12:49 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|