2016-12-26 18:30:45 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::FollowRequestsController < ApiController
|
|
|
|
before_action -> { doorkeeper_authorize! :follow }
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
def index
|
2017-05-20 13:13:51 +00:00
|
|
|
@accounts = Account.includes(:follow_requests)
|
|
|
|
.references(:follow_requests)
|
|
|
|
.merge(FollowRequest.where(target_account: current_account)
|
|
|
|
.paginate_by_max_id(DEFAULT_ACCOUNTS_LIMIT, params[:max_id], params[:since_id]))
|
2016-12-26 18:30:45 +00:00
|
|
|
|
2017-05-20 13:13:51 +00:00
|
|
|
next_path = api_v1_follow_requests_url(pagination_params(max_id: @accounts.last.follow_requests.last.id)) if @accounts.size == DEFAULT_ACCOUNTS_LIMIT
|
|
|
|
prev_path = api_v1_follow_requests_url(pagination_params(since_id: @accounts.first.follow_requests.first.id)) unless @accounts.empty?
|
2016-12-26 18:30:45 +00:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize
|
2017-02-11 01:12:05 +00:00
|
|
|
AuthorizeFollowService.new.call(Account.find(params[:id]), current_account)
|
2016-12-26 18:30:45 +00:00
|
|
|
render_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
def reject
|
2017-02-11 01:12:05 +00:00
|
|
|
RejectFollowService.new.call(Account.find(params[:id]), current_account)
|
2016-12-26 18:30:45 +00:00
|
|
|
render_empty
|
|
|
|
end
|
2017-04-08 21:39:31 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def pagination_params(core_params)
|
|
|
|
params.permit(:limit).merge(core_params)
|
|
|
|
end
|
2016-12-26 18:30:45 +00:00
|
|
|
end
|