Configurable soft limit of 7,500, and above that, configurable ratio of 1.1 * followers, controlled by: - MAX_FOLLOWS_THRESHOLD - MAX_FOLLOWS_RATIO Fix #2311
		
			
				
	
	
		
			53 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| # == Schema Information
 | |
| #
 | |
| # Table name: follows
 | |
| #
 | |
| #  id                :bigint(8)        not null, primary key
 | |
| #  created_at        :datetime         not null
 | |
| #  updated_at        :datetime         not null
 | |
| #  account_id        :bigint(8)        not null
 | |
| #  target_account_id :bigint(8)        not null
 | |
| #  show_reblogs      :boolean          default(TRUE), not null
 | |
| #  uri               :string
 | |
| #
 | |
| 
 | |
| class Follow < ApplicationRecord
 | |
|   include Paginable
 | |
|   include RelationshipCacheable
 | |
| 
 | |
|   belongs_to :account, counter_cache: :following_count
 | |
| 
 | |
|   belongs_to :target_account,
 | |
|              class_name: 'Account',
 | |
|              counter_cache: :followers_count
 | |
| 
 | |
|   has_one :notification, as: :activity, dependent: :destroy
 | |
| 
 | |
|   validates :account_id, uniqueness: { scope: :target_account_id }
 | |
|   validates_with FollowLimitValidator, on: :create
 | |
| 
 | |
|   scope :recent, -> { reorder(id: :desc) }
 | |
| 
 | |
|   def local?
 | |
|     false # Force uri_for to use uri attribute
 | |
|   end
 | |
| 
 | |
|   def revoke_request!
 | |
|     FollowRequest.create!(account: account, target_account: target_account, show_reblogs: show_reblogs, uri: uri)
 | |
|     destroy!
 | |
|   end
 | |
| 
 | |
|   before_validation :set_uri, only: :create
 | |
|   after_destroy :remove_endorsements
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def set_uri
 | |
|     self.uri = ActivityPub::TagManager.instance.generate_uri_for(self) if uri.nil?
 | |
|   end
 | |
| 
 | |
|   def remove_endorsements
 | |
|     AccountPin.where(target_account_id: target_account_id, account_id: account_id).delete_all
 | |
|   end
 | |
| end
 |