2016-12-29 20:33:26 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 20:09:25 +02:00
|
|
|
class Api::V1::FavouritesController < Api::BaseController
|
2016-12-29 20:33:26 +01:00
|
|
|
before_action -> { doorkeeper_authorize! :read }
|
|
|
|
before_action :require_user!
|
2017-05-31 20:30:39 +02:00
|
|
|
after_action :insert_pagination_headers
|
2016-12-29 20:33:26 +01:00
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def index
|
2017-05-31 20:30:39 +02:00
|
|
|
@statuses = load_statuses
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @statuses, each_serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new(@statuses, current_user&.account_id)
|
2017-05-31 20:30:39 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_statuses
|
2017-07-07 04:02:06 +02:00
|
|
|
cached_favourites
|
2017-05-31 20:30:39 +02:00
|
|
|
end
|
2016-12-29 20:33:26 +01:00
|
|
|
|
2017-05-31 20:30:39 +02:00
|
|
|
def cached_favourites
|
|
|
|
cache_collection(
|
2017-07-25 16:01:03 +02:00
|
|
|
Status.reorder(nil).joins(:favourites).merge(results),
|
2017-05-31 20:30:39 +02:00
|
|
|
Status
|
|
|
|
)
|
|
|
|
end
|
2016-12-29 20:33:26 +01:00
|
|
|
|
2017-05-31 20:30:39 +02:00
|
|
|
def results
|
|
|
|
@_results ||= account_favourites.paginate_by_max_id(
|
|
|
|
limit_param(DEFAULT_STATUSES_LIMIT),
|
|
|
|
params[:max_id],
|
|
|
|
params[:since_id]
|
|
|
|
)
|
|
|
|
end
|
2016-12-29 20:33:26 +01:00
|
|
|
|
2017-05-31 20:30:39 +02:00
|
|
|
def account_favourites
|
|
|
|
current_account.favourites
|
|
|
|
end
|
|
|
|
|
|
|
|
def insert_pagination_headers
|
2016-12-29 20:33:26 +01:00
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
2017-04-08 23:39:31 +02:00
|
|
|
|
2017-05-31 20:30:39 +02:00
|
|
|
def next_path
|
|
|
|
if records_continue?
|
|
|
|
api_v1_favourites_url pagination_params(max_id: pagination_max_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
|
|
|
unless results.empty?
|
|
|
|
api_v1_favourites_url pagination_params(since_id: pagination_since_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_max_id
|
|
|
|
results.last.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_since_id
|
|
|
|
results.first.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def records_continue?
|
2017-06-04 14:52:26 +02:00
|
|
|
results.size == limit_param(DEFAULT_STATUSES_LIMIT)
|
2017-05-31 20:30:39 +02:00
|
|
|
end
|
2017-04-08 23:39:31 +02:00
|
|
|
|
|
|
|
def pagination_params(core_params)
|
|
|
|
params.permit(:limit).merge(core_params)
|
|
|
|
end
|
2016-12-29 20:33:26 +01:00
|
|
|
end
|