2017-02-05 17:51:56 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 11:09:25 -07:00
|
|
|
class Api::V1::MutesController < Api::BaseController
|
2018-07-05 09:31:35 -07:00
|
|
|
before_action -> { doorkeeper_authorize! :follow, :'read:mutes' }
|
2017-02-05 17:51:56 -08:00
|
|
|
before_action :require_user!
|
2017-05-31 11:27:34 -07:00
|
|
|
after_action :insert_pagination_headers
|
2017-02-05 17:51:56 -08:00
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def index
|
2017-09-02 10:24:58 -07:00
|
|
|
@data = @accounts = load_accounts
|
2017-07-06 19:02:06 -07:00
|
|
|
render json: @accounts, each_serializer: REST::AccountSerializer
|
2017-05-31 11:27:34 -07:00
|
|
|
end
|
2017-02-05 17:51:56 -08:00
|
|
|
|
2017-09-02 10:24:58 -07:00
|
|
|
def details
|
2017-09-02 11:10:10 -07:00
|
|
|
@data = @mutes = load_mutes
|
|
|
|
render json: @mutes, each_serializer: REST::MuteSerializer
|
2017-09-02 10:24:58 -07:00
|
|
|
end
|
|
|
|
|
2017-05-31 11:27:34 -07:00
|
|
|
private
|
2017-02-05 17:51:56 -08:00
|
|
|
|
2017-05-31 11:27:34 -07:00
|
|
|
def load_accounts
|
2018-08-26 12:30:17 -07:00
|
|
|
paginated_mutes.map(&:target_account)
|
2017-05-31 11:27:34 -07:00
|
|
|
end
|
|
|
|
|
2017-09-02 11:10:10 -07:00
|
|
|
def load_mutes
|
|
|
|
paginated_mutes.includes(:account, :target_account).to_a
|
|
|
|
end
|
|
|
|
|
2017-05-31 11:27:34 -07:00
|
|
|
def paginated_mutes
|
2018-08-26 12:30:17 -07: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 11:27:34 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def insert_pagination_headers
|
2017-02-05 17:51:56 -08:00
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
2017-04-08 14:39:31 -07:00
|
|
|
|
2017-05-31 11:27:34 -07:00
|
|
|
def next_path
|
|
|
|
if records_continue?
|
2017-09-02 10:24:58 -07:00
|
|
|
url_for pagination_params(max_id: pagination_max_id)
|
2017-05-31 11:27:34 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
2018-08-27 08:30:42 -07:00
|
|
|
unless @data.empty?
|
2017-09-02 10:24:58 -07:00
|
|
|
url_for pagination_params(since_id: pagination_since_id)
|
2017-05-31 11:27:34 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_max_id
|
2017-09-02 10:24:58 -07:00
|
|
|
if params[:action] == "details"
|
|
|
|
@mutes.last.id
|
|
|
|
else
|
2018-08-27 08:30:42 -07:00
|
|
|
paginated_mutes.last.id
|
2017-09-02 10:24:58 -07:00
|
|
|
end
|
2017-05-31 11:27:34 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_since_id
|
2017-09-02 10:24:58 -07:00
|
|
|
if params[:action] == "details"
|
|
|
|
@mutes.first.id
|
|
|
|
else
|
2018-08-27 08:30:42 -07:00
|
|
|
paginated_mutes.first.id
|
2017-09-02 10:24:58 -07:00
|
|
|
end
|
2017-05-31 11:27:34 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def records_continue?
|
2017-09-02 10:24:58 -07:00
|
|
|
@data.size == limit_param(DEFAULT_ACCOUNTS_LIMIT)
|
2017-05-31 11:27:34 -07:00
|
|
|
end
|
2017-04-08 14:39:31 -07:00
|
|
|
|
|
|
|
def pagination_params(core_params)
|
2018-04-01 17:09:50 -07:00
|
|
|
params.slice(:limit).permit(:limit).merge(core_params)
|
2017-04-08 14:39:31 -07:00
|
|
|
end
|
2017-02-05 17:51:56 -08:00
|
|
|
end
|