about summary refs log tree commit diff
path: root/app/services/precompute_feed_service.rb
blob: 984eb8e862656d6b597a1cb0e2e36b49c3d7f508 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class PrecomputeFeedService < BaseService
  # Fill up a user's home/mentions feed from DB and return a subset
  # @param [Symbol] type :home or :mentions
  # @param [Account] account
  def call(_, account)
    Status.as_home_timeline(account).limit(FeedManager::MAX_ITEMS).each do |status|
      next if (status.direct_visibility? && !status.permitted?(account)) || FeedManager.instance.filter?(:home, status, account)
      redis.zadd(FeedManager.instance.key(:home, account.id), status.id, status.reblog? ? status.reblog_of_id : status.id)
    end
  end

  private

  def redis
    Redis.current
  end
end