2017-02-06 02:51:56 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 20:09:25 +02:00
|
|
|
class Api::V1::MutesController < Api::BaseController
|
2018-07-05 18:31:35 +02:00
|
|
|
before_action -> { doorkeeper_authorize! :follow, :'read:mutes' }
|
2017-02-06 02:51:56 +01:00
|
|
|
before_action :require_user!
|
2017-05-31 20:27:34 +02:00
|
|
|
after_action :insert_pagination_headers
|
2017-02-06 02:51:56 +01:00
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def index
|
2017-05-31 20:27:34 +02:00
|
|
|
@accounts = load_accounts
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @accounts, each_serializer: REST::AccountSerializer
|
2017-05-31 20:27:34 +02:00
|
|
|
end
|
2017-02-06 02:51:56 +01:00
|
|
|
|
2017-05-31 20:27:34 +02:00
|
|
|
private
|
2017-02-06 02:51:56 +01:00
|
|
|
|
2017-05-31 20:27:34 +02:00
|
|
|
def load_accounts
|
2018-08-26 21:30:17 +02:00
|
|
|
paginated_mutes.map(&:target_account)
|
2017-05-31 20:27:34 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def paginated_mutes
|
2018-08-26 21:30:17 +02:00
|
|
|
@paginated_mutes ||= Mute.eager_load(:target_account)
|
|
|
|
.where(account: current_account)
|
|
|
|
.paginate_by_max_id(
|
|
|
|
limit_param(DEFAULT_ACCOUNTS_LIMIT),
|
|
|
|
params[:max_id],
|
|
|
|
params[:since_id]
|
|
|
|
)
|
2017-05-31 20:27:34 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def insert_pagination_headers
|
2017-02-06 02:51:56 +01:00
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
2017-04-08 23:39:31 +02:00
|
|
|
|
2017-05-31 20:27:34 +02:00
|
|
|
def next_path
|
|
|
|
if records_continue?
|
|
|
|
api_v1_mutes_url pagination_params(max_id: pagination_max_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
2018-08-26 21:30:17 +02:00
|
|
|
unless paginated_mutes.empty?
|
2017-05-31 20:27:34 +02:00
|
|
|
api_v1_mutes_url pagination_params(since_id: pagination_since_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_max_id
|
2018-08-26 21:30:17 +02:00
|
|
|
paginated_mutes.last.id
|
2017-05-31 20:27:34 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_since_id
|
2018-08-26 21:30:17 +02:00
|
|
|
paginated_mutes.first.id
|
2017-05-31 20:27:34 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def records_continue?
|
2018-08-26 21:30:17 +02:00
|
|
|
paginated_mutes.size == limit_param(DEFAULT_ACCOUNTS_LIMIT)
|
2017-05-31 20:27:34 +02:00
|
|
|
end
|
2017-04-08 23:39:31 +02:00
|
|
|
|
|
|
|
def pagination_params(core_params)
|
2018-04-02 02:09:50 +02:00
|
|
|
params.slice(:limit).permit(:limit).merge(core_params)
|
2017-04-08 23:39:31 +02:00
|
|
|
end
|
2017-02-06 02:51:56 +01:00
|
|
|
end
|