Add since_id param to feeds

This commit is contained in:
Eugen Rochko 2016-10-02 22:35:27 +02:00
parent a0f85774c4
commit 9fd3d7b6cd
4 changed files with 13 additions and 7 deletions

View file

@ -4,9 +4,10 @@ class Feed
@account = account
end
def get(limit, max_id = nil)
max_id = '+inf' if max_id.nil?
unhydrated = redis.zrevrangebyscore(key, "(#{max_id}", '-inf', limit: [0, limit], with_scores: true).collect(&:last).map(&:to_i)
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)
status_map = {}
# If we're after most recent items and none are there, we need to precompute the feed