2016-03-08 19:16:11 +00:00
|
|
|
class Feed
|
|
|
|
def initialize(type, account)
|
|
|
|
@type = type
|
|
|
|
@account = account
|
|
|
|
end
|
|
|
|
|
2016-10-02 21:35:27 +01:00
|
|
|
def get(limit, max_id = nil, since_id = nil)
|
|
|
|
max_id = '+inf' if max_id.blank?
|
|
|
|
since_id = '-inf' if since_id.blank?
|
|
|
|
unhydrated = redis.zrevrangebyscore(key, "(#{max_id}", "(#{since_id}", limit: [0, limit], with_scores: true).collect(&:last).map(&:to_i)
|
2016-09-29 20:28:21 +01:00
|
|
|
status_map = {}
|
2016-03-08 19:16:11 +00:00
|
|
|
|
|
|
|
# If we're after most recent items and none are there, we need to precompute the feed
|
2016-03-25 01:13:30 +00:00
|
|
|
if unhydrated.empty? && max_id == '+inf'
|
2016-09-29 20:28:21 +01:00
|
|
|
PrecomputeFeedService.new.call(@type, @account, limit)
|
2016-03-25 01:13:30 +00:00
|
|
|
else
|
2016-09-29 20:40:37 +01:00
|
|
|
Status.where(id: unhydrated).with_includes.with_counters.each { |status| status_map[status.id] = status }
|
2016-03-25 01:13:30 +00:00
|
|
|
unhydrated.map { |id| status_map[id] }.compact
|
|
|
|
end
|
2016-03-08 19:16:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def key
|
2016-09-09 19:04:34 +01:00
|
|
|
FeedManager.instance.key(@type, @account.id)
|
2016-03-08 19:16:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def redis
|
|
|
|
$redis
|
|
|
|
end
|
|
|
|
end
|