2017-06-09 20:12:40 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-13 15:53:22 +01:00
|
|
|
class Api::V1::Statuses::FavouritedByAccountsController < Api::V1::Statuses::BaseController
|
2018-07-05 18:31:35 +02:00
|
|
|
before_action -> { authorize_if_got_token! :read, :'read:accounts' }
|
2017-06-09 20:12:40 +02:00
|
|
|
after_action :insert_pagination_headers
|
|
|
|
|
|
|
|
def index
|
2023-04-25 15:41:34 +02:00
|
|
|
cache_if_unauthenticated!
|
2017-06-09 20:12:40 +02:00
|
|
|
@accounts = load_accounts
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @accounts, each_serializer: REST::AccountSerializer
|
2017-06-09 20:12:40 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_accounts
|
2019-12-31 00:55:32 +01:00
|
|
|
scope = default_accounts
|
2024-01-22 12:58:54 +01:00
|
|
|
scope = scope.not_excluded_by_account(current_account) unless current_account.nil?
|
2019-12-31 00:55:32 +01:00
|
|
|
scope.merge(paginated_favourites).to_a
|
2017-06-09 20:12:40 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def default_accounts
|
|
|
|
Account
|
2020-09-11 15:16:29 +02:00
|
|
|
.without_suspended
|
2024-01-23 12:41:54 +01:00
|
|
|
.includes(:favourites, :account_stat, :user)
|
2017-06-09 20:12:40 +02:00
|
|
|
.references(:favourites)
|
|
|
|
.where(favourites: { status_id: @status.id })
|
|
|
|
end
|
|
|
|
|
|
|
|
def paginated_favourites
|
|
|
|
Favourite.paginate_by_max_id(
|
|
|
|
limit_param(DEFAULT_ACCOUNTS_LIMIT),
|
|
|
|
params[:max_id],
|
|
|
|
params[:since_id]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def next_path
|
2023-02-18 12:37:47 +01:00
|
|
|
api_v1_status_favourited_by_index_url pagination_params(max_id: pagination_max_id) if records_continue?
|
2017-06-09 20:12:40 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
2023-02-18 12:37:47 +01:00
|
|
|
api_v1_status_favourited_by_index_url pagination_params(since_id: pagination_since_id) unless @accounts.empty?
|
2017-06-09 20:12:40 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_max_id
|
|
|
|
@accounts.last.favourites.last.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_since_id
|
|
|
|
@accounts.first.favourites.first.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def records_continue?
|
|
|
|
@accounts.size == limit_param(DEFAULT_ACCOUNTS_LIMIT)
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_params(core_params)
|
2018-04-02 02:09:50 +02:00
|
|
|
params.slice(:limit).permit(:limit).merge(core_params)
|
2017-06-09 20:12:40 +02:00
|
|
|
end
|
|
|
|
end
|