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