2017-06-09 20:12:40 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-13 15:53:22 +01:00
|
|
|
class Api::V1::Statuses::RebloggedByAccountsController < 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_statuses).to_a
|
2017-06-09 20:12:40 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def default_accounts
|
2024-01-23 12:41:54 +01:00
|
|
|
Account.without_suspended.includes(:statuses, :account_stat, :user).references(:statuses)
|
2017-06-09 20:12:40 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def paginated_statuses
|
2019-01-18 20:58:00 +01:00
|
|
|
Status.where(reblog_of_id: @status.id).where(visibility: [:public, :unlisted]).paginate_by_max_id(
|
2017-06-09 20:12:40 +02:00
|
|
|
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_reblogged_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_reblogged_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.statuses.last.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_since_id
|
|
|
|
@accounts.first.statuses.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
|