闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
606 B

  1. # frozen_string_literal: true
  2. class PrecomputeFeedService < BaseService
  3. # Fill up a user's home/mentions feed from DB and return a subset
  4. # @param [Symbol] type :home or :mentions
  5. # @param [Account] account
  6. def call(_, account)
  7. Status.as_home_timeline(account).limit(FeedManager::MAX_ITEMS).each do |status|
  8. next if status.direct_visibility? || FeedManager.instance.filter?(:home, status, account)
  9. redis.zadd(FeedManager.instance.key(:home, account.id), status.id, status.reblog? ? status.reblog_of_id : status.id)
  10. end
  11. end
  12. private
  13. def redis
  14. Redis.current
  15. end
  16. end