2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-08 14:16:11 -05:00
|
|
|
class Feed
|
2019-02-02 13:11:38 -05:00
|
|
|
include Redisable
|
|
|
|
|
2017-11-17 18:16:48 -05:00
|
|
|
def initialize(type, id)
|
|
|
|
@type = type
|
|
|
|
@id = id
|
2016-03-08 14:16:11 -05:00
|
|
|
end
|
|
|
|
|
2018-09-27 20:23:45 -04:00
|
|
|
def get(limit, max_id = nil, since_id = nil, min_id = nil)
|
2019-08-29 20:49:54 -04:00
|
|
|
limit = limit.to_i
|
|
|
|
max_id = max_id.to_i if max_id.present?
|
|
|
|
since_id = since_id.to_i if since_id.present?
|
|
|
|
min_id = min_id.to_i if min_id.present?
|
|
|
|
|
2018-09-27 20:23:45 -04:00
|
|
|
from_redis(limit, max_id, since_id, min_id)
|
2017-06-14 07:37:03 -04:00
|
|
|
end
|
|
|
|
|
2017-11-17 18:16:48 -05:00
|
|
|
protected
|
2017-06-14 07:37:03 -04:00
|
|
|
|
2018-09-27 20:23:45 -04: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 14:16:11 -05:00
|
|
|
|
2017-11-17 18:16:48 -05:00
|
|
|
Status.where(id: unhydrated).cache_ids
|
2017-06-14 07:37:03 -04:00
|
|
|
end
|
2016-03-08 14:16:11 -05:00
|
|
|
|
|
|
|
def key
|
2017-11-17 18:16:48 -05:00
|
|
|
FeedManager.instance.key(@type, @id)
|
2016-03-08 14:16:11 -05:00
|
|
|
end
|
|
|
|
end
|