about summary refs log tree commit diff
path: root/app/services/precompute_feed_service.rb
blob: 54d11b631d8756f1346a2bf359b39c29dac64326 (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(type, account)
    Status.send("as_#{type}_timeline", account).limit(FeedManager::MAX_ITEMS).each do |status|
      next if FeedManager.instance.filter?(type, status, account)
      redis.zadd(FeedManager.instance.key(type, account.id), status.id, status.reblog? ? status.reblog_of_id : status.id)
    end
  end

  private

  def redis
    Redis.current
  end
end