2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-08 14:16:11 -05:00
|
|
|
class Feed
|
|
|
|
def initialize(type, account)
|
|
|
|
@type = type
|
|
|
|
@account = account
|
|
|
|
end
|
|
|
|
|
2016-10-02 16:35:27 -04:00
|
|
|
def get(limit, max_id = nil, since_id = nil)
|
|
|
|
max_id = '+inf' if max_id.blank?
|
|
|
|
since_id = '-inf' if since_id.blank?
|
2016-10-22 13:38:47 -04:00
|
|
|
unhydrated = redis.zrevrangebyscore(key, "(#{max_id}", "(#{since_id}", limit: [0, limit], with_scores: true).map(&:last).map(&:to_i)
|
2017-04-03 20:00:10 -04:00
|
|
|
status_map = Status.where(id: unhydrated).cache_ids.map { |s| [s.id, s] }.to_h
|
2016-03-08 14:16:11 -05:00
|
|
|
|
2017-04-03 20:00:10 -04:00
|
|
|
unhydrated.map { |id| status_map[id] }.compact
|
2016-03-08 14:16:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def key
|
2016-09-09 14:04:34 -04:00
|
|
|
FeedManager.instance.key(@type, @account.id)
|
2016-03-08 14:16:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def redis
|
2016-11-15 10:56:29 -05:00
|
|
|
Redis.current
|
2016-03-08 14:16:11 -05:00
|
|
|
end
|
|
|
|
end
|