2021-04-24 17:01:43 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountSuggestions::Source
|
|
|
|
def get(_account, **kwargs)
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
2023-12-19 11:59:43 +01:00
|
|
|
def base_account_scope(account)
|
2024-01-12 14:09:33 +01:00
|
|
|
Account
|
|
|
|
.searchable
|
|
|
|
.where.not(follows_sql, id: account.id)
|
|
|
|
.where.not(follow_requests_sql, id: account.id)
|
|
|
|
.not_excluded_by_account(account)
|
|
|
|
.not_domain_blocked_by_account(account)
|
|
|
|
.where.not(id: account.id)
|
|
|
|
.where.not(follow_recommendation_mutes_sql, id: account.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def follows_sql
|
|
|
|
<<~SQL.squish
|
|
|
|
EXISTS (SELECT 1 FROM follows WHERE follows.target_account_id = accounts.id AND follows.account_id = :id)
|
|
|
|
SQL
|
|
|
|
end
|
|
|
|
|
|
|
|
def follow_requests_sql
|
|
|
|
<<~SQL.squish
|
|
|
|
EXISTS (SELECT 1 FROM follow_requests WHERE follow_requests.target_account_id = accounts.id AND follow_requests.account_id = :id)
|
|
|
|
SQL
|
|
|
|
end
|
|
|
|
|
|
|
|
def follow_recommendation_mutes_sql
|
|
|
|
<<~SQL.squish
|
|
|
|
EXISTS (SELECT 1 FROM follow_recommendation_mutes WHERE follow_recommendation_mutes.target_account_id = accounts.id AND follow_recommendation_mutes.account_id = :id)
|
|
|
|
SQL
|
2021-04-24 17:01:43 +02:00
|
|
|
end
|
|
|
|
end
|