f0fff3eb10
* Allow min_id pagination in Feed#get * Add min_id pagination to home and list timeline APIs * Add min_id pagination to account statuses, public and tag APIs * Remove unused stub in reports API * Use min_id pagination in notifications, favourites, and fix order * Fix HomeFeed#from_database not using paginate_by_id
25 lines
650 B
Ruby
25 lines
650 B
Ruby
# 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
|