2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-08 19:16:11 +00:00
|
|
|
class PrecomputeFeedService < BaseService
|
2016-03-25 01:13:30 +00:00
|
|
|
# Fill up a user's home/mentions feed from DB and return a subset
|
2016-03-08 19:16:11 +00:00
|
|
|
# @param [Symbol] type :home or :mentions
|
|
|
|
# @param [Account] account
|
2016-11-08 01:08:32 +00:00
|
|
|
def call(type, account)
|
|
|
|
Status.send("as_#{type}_timeline", account).limit(FeedManager::MAX_ITEMS).each do |status|
|
2016-10-03 15:11:54 +00:00
|
|
|
next if FeedManager.instance.filter?(type, status, account)
|
2016-11-08 01:08:32 +00:00
|
|
|
redis.zadd(FeedManager.instance.key(type, account.id), status.id, status.reblog? ? status.reblog_of_id : status.id)
|
2016-03-25 01:13:30 +00:00
|
|
|
end
|
2016-03-08 19:16:11 +00:00
|
|
|
end
|
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
private
|
2016-03-08 19:16:11 +00:00
|
|
|
|
|
|
|
def redis
|
2016-11-15 15:56:29 +00:00
|
|
|
Redis.current
|
2016-03-08 19:16:11 +00:00
|
|
|
end
|
|
|
|
end
|