~cytrogen/masto-fe

ref: 86c9c5afa045b9e2cfa41c15db63ad97d58954c1 masto-fe/app/models/account_suggestions/global_source.rb -rw-r--r-- 861 bytes
86c9c5af — Claire Merge commit '40ba6e119b7457161fd43b449875d0fb9d473c1a' into glitch-soc/merge-upstream 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true

class AccountSuggestions::GlobalSource < AccountSuggestions::Source
  include Redisable

  def key
    :global
  end

  def get(account, skip_account_ids: [], limit: 40)
    account_ids = account_ids_for_locale(I18n.locale.to_s.split(/[_-]/).first) - [account.id] - skip_account_ids

    as_ordered_suggestions(
      scope(account).where(id: account_ids),
      account_ids
    ).take(limit)
  end

  def remove(_account, _target_account_id)
    nil
  end

  private

  def scope(account)
    Account.searchable
           .followable_by(account)
           .not_excluded_by_account(account)
           .not_domain_blocked_by_account(account)
  end

  def account_ids_for_locale(locale)
    redis.zrevrange("follow_recommendations:#{locale}", 0, -1).map(&:to_i)
  end

  def to_ordered_list_key(account)
    account.id
  end
end