2016-12-30 06:33:26 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-08 04:09:25 +10:00
|
|
|
class Api::V1::FavouritesController < Api::BaseController
|
2018-07-06 02:31:35 +10:00
|
|
|
before_action -> { doorkeeper_authorize! :read, :'read:favourites' }
|
2016-12-30 06:33:26 +11:00
|
|
|
before_action :require_user!
|
2017-06-01 04:30:39 +10:00
|
|
|
after_action :insert_pagination_headers
|
2016-12-30 06:33:26 +11:00
|
|
|
|
|
|
|
def index
|
2017-06-01 04:30:39 +10:00
|
|
|
@statuses = load_statuses
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @statuses, each_serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new(@statuses, current_user&.account_id)
|
2017-06-01 04:30:39 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_statuses
|
2024-05-16 18:03:46 +10:00
|
|
|
preloaded_favourites
|
2017-06-01 04:30:39 +10:00
|
|
|
end
|
2016-12-30 06:33:26 +11:00
|
|
|
|
2024-05-16 18:03:46 +10:00
|
|
|
def preloaded_favourites
|
|
|
|
preload_collection(results.map(&:status), Status)
|
2017-06-01 04:30:39 +10:00
|
|
|
end
|
2016-12-30 06:33:26 +11:00
|
|
|
|
2017-06-01 04:30:39 +10:00
|
|
|
def results
|
2023-07-12 18:08:51 +10:00
|
|
|
@results ||= account_favourites.joins(:status).eager_load(:status).to_a_paginated_by_id(
|
2017-06-01 04:30:39 +10:00
|
|
|
limit_param(DEFAULT_STATUSES_LIMIT),
|
2018-09-28 10:23:45 +10:00
|
|
|
params_slice(:max_id, :since_id, :min_id)
|
2017-06-01 04:30:39 +10:00
|
|
|
)
|
|
|
|
end
|
2016-12-30 06:33:26 +11:00
|
|
|
|
2017-06-01 04:30:39 +10:00
|
|
|
def account_favourites
|
|
|
|
current_account.favourites
|
|
|
|
end
|
|
|
|
|
|
|
|
def next_path
|
2023-02-18 22:37:47 +11:00
|
|
|
api_v1_favourites_url pagination_params(max_id: pagination_max_id) if records_continue?
|
2017-06-01 04:30:39 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
2023-02-18 22:37:47 +11:00
|
|
|
api_v1_favourites_url pagination_params(min_id: pagination_since_id) unless results.empty?
|
2017-06-01 04:30:39 +10:00
|
|
|
end
|
|
|
|
|
2024-03-13 19:51:44 +11:00
|
|
|
def pagination_collection
|
|
|
|
results
|
2017-06-01 04:30:39 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def records_continue?
|
2017-06-04 22:52:26 +10:00
|
|
|
results.size == limit_param(DEFAULT_STATUSES_LIMIT)
|
2017-06-01 04:30:39 +10:00
|
|
|
end
|
2016-12-30 06:33:26 +11:00
|
|
|
end
|