2016-03-08 20:16:11 +01:00
|
|
|
class Feed
|
|
|
|
def initialize(type, account)
|
|
|
|
@type = type
|
|
|
|
@account = account
|
|
|
|
end
|
|
|
|
|
2016-03-22 21:38:47 +01:00
|
|
|
def get(limit, max_id = '+inf')
|
|
|
|
unhydrated = redis.zrevrangebyscore(key, "(#{max_id}", '-inf', limit: [0, limit])
|
2016-03-08 20:16:11 +01:00
|
|
|
status_map = Hash.new
|
|
|
|
|
|
|
|
# If we're after most recent items and none are there, we need to precompute the feed
|
2016-03-22 21:38:47 +01:00
|
|
|
return PrecomputeFeedService.new.(@type, @account).take(limit) if unhydrated.empty? && max_id == '+inf'
|
2016-03-08 20:16:11 +01:00
|
|
|
|
2016-03-11 16:47:36 +01:00
|
|
|
Status.where(id: unhydrated).with_includes.with_counters.each { |status| status_map[status.id.to_s] = status }
|
2016-03-16 10:58:58 +01:00
|
|
|
return unhydrated.map { |id| status_map[id] }.compact
|
2016-03-08 20:16:11 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def key
|
|
|
|
"feed:#{@type}:#{@account.id}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def redis
|
|
|
|
$redis
|
|
|
|
end
|
|
|
|
end
|