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