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
|
2024-05-16 08:03:46 +00:00
|
|
|
preloaded_favourites
|
2017-05-31 18:30:39 +00:00
|
|
|
end
|
2016-12-29 19:33:26 +00:00
|
|
|
|
2024-05-16 08:03:46 +00:00
|
|
|
def preloaded_favourites
|
|
|
|
preload_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
|
2023-07-12 08:08:51 +00:00
|
|
|
@results ||= account_favourites.joins(:status).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 next_path
|
2023-02-18 11:37:47 +00:00
|
|
|
api_v1_favourites_url pagination_params(max_id: pagination_max_id) if records_continue?
|
2017-05-31 18:30:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
2023-02-18 11:37:47 +00:00
|
|
|
api_v1_favourites_url pagination_params(min_id: pagination_since_id) unless results.empty?
|
2017-05-31 18:30:39 +00:00
|
|
|
end
|
|
|
|
|
2024-03-13 08:51:44 +00:00
|
|
|
def pagination_collection
|
|
|
|
results
|
2017-05-31 18:30:39 +00:00
|
|
|
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
|
2016-12-29 19:33:26 +00:00
|
|
|
end
|