2016-12-29 19:33:26 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 18:09:25 +00:00
|
|
|
class Api::V1::FavouritesController < Api::BaseController
|
2018-07-05 16:31:35 +00:00
|
|
|
before_action -> { doorkeeper_authorize! :read, :'read:favourites' }
|
2016-12-29 19:33:26 +00:00
|
|
|
before_action :require_user!
|
2017-05-31 18:30:39 +00:00
|
|
|
after_action :insert_pagination_headers
|
2016-12-29 19:33:26 +00:00
|
|
|
|
|
|
|
def index
|
2017-05-31 18:30:39 +00:00
|
|
|
@statuses = load_statuses
|
2017-07-07 02:02:06 +00:00
|
|
|
render json: @statuses, each_serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new(@statuses, current_user&.account_id)
|
2017-05-31 18:30:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_statuses
|
2017-07-07 02:02:06 +00:00
|
|
|
cached_favourites
|
2017-05-31 18:30:39 +00:00
|
|
|
end
|
2016-12-29 19:33:26 +00:00
|
|
|
|
2017-05-31 18:30:39 +00:00
|
|
|
def cached_favourites
|
2020-08-28 07:27:33 +00:00
|
|
|
cache_collection(results.map(&:status), Status)
|
2017-05-31 18:30:39 +00:00
|
|
|
end
|
2016-12-29 19:33:26 +00:00
|
|
|
|
2017-05-31 18:30:39 +00:00
|
|
|
def results
|
2020-08-31 10:47:09 +00:00
|
|
|
@_results ||= account_favourites.eager_load(:status).to_a_paginated_by_id(
|
2017-05-31 18:30:39 +00:00
|
|
|
limit_param(DEFAULT_STATUSES_LIMIT),
|
2018-09-28 00:23:45 +00:00
|
|
|
params_slice(:max_id, :since_id, :min_id)
|
2017-05-31 18:30:39 +00:00
|
|
|
)
|
|
|
|
end
|
2016-12-29 19:33:26 +00:00
|
|
|
|
2017-05-31 18:30:39 +00:00
|
|
|
def account_favourites
|
|
|
|
current_account.favourites
|
|
|
|
end
|
|
|
|
|
|
|
|
def insert_pagination_headers
|
2016-12-29 19:33:26 +00:00
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
2017-04-08 21:39:31 +00:00
|
|
|
|
2017-05-31 18:30:39 +00: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?
|
2018-09-28 00:23:45 +00:00
|
|
|
api_v1_favourites_url pagination_params(min_id: pagination_since_id)
|
2017-05-31 18:30:39 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_max_id
|
|
|
|
results.last.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_since_id
|
|
|
|
results.first.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def records_continue?
|
2017-06-04 12:52:26 +00:00
|
|
|
results.size == limit_param(DEFAULT_STATUSES_LIMIT)
|
2017-05-31 18:30:39 +00:00
|
|
|
end
|
2017-04-08 21:39:31 +00:00
|
|
|
|
|
|
|
def pagination_params(core_params)
|
2018-04-02 00:09:50 +00:00
|
|
|
params.slice(:limit).permit(:limit).merge(core_params)
|
2017-04-08 21:39:31 +00:00
|
|
|
end
|
2016-12-29 19:33:26 +00:00
|
|
|
end
|