2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-08 11:16:11 -08:00
|
|
|
class Feed
|
2019-02-02 10:11:38 -08:00
|
|
|
include Redisable
|
|
|
|
|
2017-11-17 15:16:48 -08:00
|
|
|
def initialize(type, id)
|
|
|
|
@type = type
|
|
|
|
@id = id
|
2016-03-08 11:16:11 -08:00
|
|
|
end
|
|
|
|
|
2018-09-27 17:23:45 -07:00
|
|
|
def get(limit, max_id = nil, since_id = nil, min_id = nil)
|
|
|
|
from_redis(limit, max_id, since_id, min_id)
|
2017-06-14 04:37:03 -07:00
|
|
|
end
|
|
|
|
|
2017-11-17 15:16:48 -08:00
|
|
|
protected
|
2017-06-14 04:37:03 -07:00
|
|
|
|
2018-09-27 17:23:45 -07:00
|
|
|
def from_redis(limit, max_id, since_id, min_id)
|
|
|
|
if min_id.blank?
|
|
|
|
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).map(&:first).map(&:to_i)
|
|
|
|
else
|
|
|
|
unhydrated = redis.zrangebyscore(key, "(#{min_id}", '+inf', limit: [0, limit], with_scores: true).map(&:first).map(&:to_i)
|
|
|
|
end
|
2016-03-08 11:16:11 -08:00
|
|
|
|
2017-11-17 15:16:48 -08:00
|
|
|
Status.where(id: unhydrated).cache_ids
|
2017-06-14 04:37:03 -07:00
|
|
|
end
|
2016-03-08 11:16:11 -08:00
|
|
|
|
|
|
|
def key
|
2017-11-17 15:16:48 -08:00
|
|
|
FeedManager.instance.key(@type, @id)
|
2016-03-08 11:16:11 -08:00
|
|
|
end
|
|
|
|
end
|