about summary refs log tree commit diff
path: root/app/models/home_feed.rb
blob: ba7564983b0f8bc9820759773c7d53b0ec075578 (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
# frozen_string_literal: true

class HomeFeed < Feed
  def initialize(account)
    @type    = :home
    @id      = account.id
    @account = account
  end

  def get(limit, max_id = nil, since_id = nil, min_id = nil)
    if redis.exists("account:#{@account.id}:regeneration")
      from_database(limit, max_id, since_id, min_id)
    else
      super
    end
  end

  private

  def from_database(limit, max_id, since_id, min_id)
    Status.as_home_timeline(@account)
          .paginate_by_id(limit, max_id: max_id, since_id: since_id, min_id: min_id)
          .reject { |status| FeedManager.instance.filter?(:home, status, @account.id) }
  end
end