2019-07-02 08:10:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class FollowLimitValidator < ActiveModel::Validator
|
|
|
|
LIMIT = ENV.fetch('MAX_FOLLOWS_THRESHOLD', 7_500).to_i
|
|
|
|
RATIO = ENV.fetch('MAX_FOLLOWS_RATIO', 1.1).to_f
|
|
|
|
|
|
|
|
def validate(follow)
|
|
|
|
return if follow.account.nil? || !follow.account.local?
|
|
|
|
follow.errors.add(:base, I18n.t('users.follow_limit_reached', limit: self.class.limit_for_account(follow.account))) if limit_reached?(follow.account)
|
|
|
|
end
|
|
|
|
|
|
|
|
class << self
|
|
|
|
def limit_for_account(account)
|
2019-09-14 15:43:02 +01:00
|
|
|
adjusted_limit = account.is_pro ? 50000 : LIMIT
|
2020-12-17 06:34:00 +00:00
|
|
|
adjusted_limit = account.is_flagged_as_spam ? 0 : LIMIT
|
2019-09-14 15:43:02 +01:00
|
|
|
|
|
|
|
if account.following_count < adjusted_limit
|
|
|
|
adjusted_limit
|
2019-07-02 08:10:25 +01:00
|
|
|
else
|
2019-09-14 15:43:02 +01:00
|
|
|
[(account.followers_count * RATIO).round, adjusted_limit].max
|
2019-07-02 08:10:25 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def limit_reached?(account)
|
|
|
|
account.following_count >= self.class.limit_for_account(account)
|
|
|
|
end
|
|
|
|
end
|