2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-08 11:16:11 -08:00
|
|
|
class PrecomputeFeedService < BaseService
|
2016-03-24 18:13:30 -07:00
|
|
|
# Fill up a user's home/mentions feed from DB and return a subset
|
2016-03-08 11:16:11 -08:00
|
|
|
# @param [Symbol] type :home or :mentions
|
|
|
|
# @param [Account] account
|
2017-04-02 06:46:31 -07:00
|
|
|
def call(_, account)
|
2017-04-04 04:58:34 -07:00
|
|
|
redis.pipelined do
|
|
|
|
Status.as_home_timeline(account).limit(FeedManager::MAX_ITEMS / 4).each do |status|
|
2017-04-04 10:21:37 -07:00
|
|
|
next if status.direct_visibility? || FeedManager.instance.filter?(:home, status, account.id)
|
2017-04-04 04:58:34 -07:00
|
|
|
redis.zadd(FeedManager.instance.key(:home, account.id), status.id, status.reblog? ? status.reblog_of_id : status.id)
|
|
|
|
end
|
2016-03-24 18:13:30 -07:00
|
|
|
end
|
2016-03-08 11:16:11 -08:00
|
|
|
end
|
|
|
|
|
2016-03-24 18:13:30 -07:00
|
|
|
private
|
2016-03-08 11:16:11 -08:00
|
|
|
|
|
|
|
def redis
|
2016-11-15 07:56:29 -08:00
|
|
|
Redis.current
|
2016-03-08 11:16:11 -08:00
|
|
|
end
|
|
|
|
end
|