about summary refs log tree commit diff
path: root/app/models/feed.rb
blob: cf17ec25c9eaaed2a5852db749cb1bd578ba84f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true

class Feed
  include Redisable

  def initialize(type, id)
    @type = type
    @id   = id
  end

  def get(limit, max_id = nil, since_id = nil, min_id = nil)
    from_redis(limit, max_id, since_id, min_id)
  end

  def size
    redis.zcount(key, '-inf', '+inf') || 0
  end

  def all
    unhydrated = redis.zrange(key, 0, -1, with_scores: true).map(&:first).map(&:to_i)
    Status.where(id: unhydrated)
  end

  def all_cached
    all.cache_ids
  end

  protected

  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

    Status.where(id: unhydrated).cache_ids
  end

  def key
    FeedManager.instance.key(@type, @id)
  end
end