2017-11-18 00:16:48 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Timelines::ListController < Api::BaseController
|
2018-07-05 18:31:35 +02:00
|
|
|
before_action -> { doorkeeper_authorize! :read, :'read:lists' }
|
2017-11-18 00:16:48 +01:00
|
|
|
before_action :require_user!
|
|
|
|
before_action :set_list
|
|
|
|
before_action :set_statuses
|
|
|
|
|
|
|
|
after_action :insert_pagination_headers, unless: -> { @statuses.empty? }
|
|
|
|
|
|
|
|
def show
|
|
|
|
render json: @statuses,
|
|
|
|
each_serializer: REST::StatusSerializer,
|
|
|
|
relationships: StatusRelationshipsPresenter.new(@statuses, current_user.account_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_list
|
|
|
|
@list = List.where(account: current_account).find(params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_statuses
|
|
|
|
@statuses = cached_list_statuses
|
|
|
|
end
|
|
|
|
|
|
|
|
def cached_list_statuses
|
|
|
|
cache_collection list_statuses, Status
|
|
|
|
end
|
|
|
|
|
|
|
|
def list_statuses
|
|
|
|
list_feed.get(
|
|
|
|
limit_param(DEFAULT_STATUSES_LIMIT),
|
|
|
|
params[:max_id],
|
2018-09-28 02:23:45 +02:00
|
|
|
params[:since_id],
|
|
|
|
params[:min_id]
|
2017-11-18 00:16:48 +01:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def list_feed
|
|
|
|
ListFeed.new(@list)
|
|
|
|
end
|
|
|
|
|
|
|
|
def insert_pagination_headers
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_params(core_params)
|
2018-04-02 02:09:50 +02:00
|
|
|
params.slice(:limit).permit(:limit).merge(core_params)
|
2017-11-18 00:16:48 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def next_path
|
|
|
|
api_v1_timelines_list_url params[:id], pagination_params(max_id: pagination_max_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
2018-09-28 02:23:45 +02:00
|
|
|
api_v1_timelines_list_url params[:id], pagination_params(min_id: pagination_since_id)
|
2017-11-18 00:16:48 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_max_id
|
|
|
|
@statuses.last.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_since_id
|
|
|
|
@statuses.first.id
|
|
|
|
end
|
|
|
|
end
|