2016-12-29 11:33:26 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 11:09:25 -07:00
|
|
|
class Api::V1::FavouritesController < Api::BaseController
|
2018-07-05 09:31:35 -07:00
|
|
|
before_action -> { doorkeeper_authorize! :read, :'read:favourites' }
|
2016-12-29 11:33:26 -08:00
|
|
|
before_action :require_user!
|
2017-05-31 11:30:39 -07:00
|
|
|
after_action :insert_pagination_headers
|
2016-12-29 11:33:26 -08:00
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def index
|
2017-05-31 11:30:39 -07:00
|
|
|
@statuses = load_statuses
|
2017-07-06 19:02:06 -07:00
|
|
|
render json: @statuses, each_serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new(@statuses, current_user&.account_id)
|
2017-05-31 11:30:39 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_statuses
|
2017-07-06 19:02:06 -07:00
|
|
|
cached_favourites
|
2017-05-31 11:30:39 -07:00
|
|
|
end
|
2016-12-29 11:33:26 -08:00
|
|
|
|
2017-05-31 11:30:39 -07:00
|
|
|
def cached_favourites
|
|
|
|
cache_collection(
|
2017-07-25 07:01:03 -07:00
|
|
|
Status.reorder(nil).joins(:favourites).merge(results),
|
2017-05-31 11:30:39 -07:00
|
|
|
Status
|
|
|
|
)
|
|
|
|
end
|
2016-12-29 11:33:26 -08:00
|
|
|
|
2017-05-31 11:30:39 -07:00
|
|
|
def results
|
2018-09-27 17:23:45 -07:00
|
|
|
@_results ||= account_favourites.paginate_by_id(
|
2017-05-31 11:30:39 -07:00
|
|
|
limit_param(DEFAULT_STATUSES_LIMIT),
|
2018-09-27 17:23:45 -07:00
|
|
|
params_slice(:max_id, :since_id, :min_id)
|
2017-05-31 11:30:39 -07:00
|
|
|
)
|
|
|
|
end
|
2016-12-29 11:33:26 -08:00
|
|
|
|
2017-05-31 11:30:39 -07:00
|
|
|
def account_favourites
|
|
|
|
current_account.favourites
|
|
|
|
end
|
|
|
|
|
|
|
|
def insert_pagination_headers
|
2016-12-29 11:33:26 -08:00
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
2017-04-08 14:39:31 -07:00
|
|
|
|
2017-05-31 11:30:39 -07: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-27 17:23:45 -07:00
|
|
|
api_v1_favourites_url pagination_params(min_id: pagination_since_id)
|
2017-05-31 11:30:39 -07: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 05:52:26 -07:00
|
|
|
results.size == limit_param(DEFAULT_STATUSES_LIMIT)
|
2017-05-31 11:30:39 -07:00
|
|
|
end
|
2017-04-08 14:39:31 -07:00
|
|
|
|
|
|
|
def pagination_params(core_params)
|
2018-04-01 17:09:50 -07:00
|
|
|
params.slice(:limit).permit(:limit).merge(core_params)
|
2017-04-08 14:39:31 -07:00
|
|
|
end
|
2016-12-29 11:33:26 -08:00
|
|
|
end
|