2024-03-07 15:53:37 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Notifications::RequestsController < Api::BaseController
|
|
|
|
before_action -> { doorkeeper_authorize! :read, :'read:notifications' }, only: :index
|
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:notifications' }, except: :index
|
|
|
|
|
|
|
|
before_action :require_user!
|
|
|
|
before_action :set_request, except: :index
|
|
|
|
|
|
|
|
after_action :insert_pagination_headers, only: :index
|
|
|
|
|
|
|
|
def index
|
|
|
|
with_read_replica do
|
|
|
|
@requests = load_requests
|
|
|
|
@relationships = relationships
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: @requests, each_serializer: REST::NotificationRequestSerializer, relationships: @relationships
|
|
|
|
end
|
|
|
|
|
2024-03-11 16:02:21 +01:00
|
|
|
def show
|
|
|
|
render json: @request, serializer: REST::NotificationRequestSerializer
|
|
|
|
end
|
|
|
|
|
2024-03-07 15:53:37 +01:00
|
|
|
def accept
|
|
|
|
AcceptNotificationRequestService.new.call(@request)
|
|
|
|
render_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
def dismiss
|
2024-07-12 14:09:52 +02:00
|
|
|
@request.destroy!
|
2024-03-07 15:53:37 +01:00
|
|
|
render_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_requests
|
2024-07-12 14:09:52 +02:00
|
|
|
requests = NotificationRequest.where(account: current_account).includes(:last_status, from_account: [:account_stat, :user]).to_a_paginated_by_id(
|
2024-03-07 15:53:37 +01:00
|
|
|
limit_param(DEFAULT_ACCOUNTS_LIMIT),
|
|
|
|
params_slice(:max_id, :since_id, :min_id)
|
|
|
|
)
|
|
|
|
|
|
|
|
NotificationRequest.preload_cache_collection(requests) do |statuses|
|
2024-05-16 10:03:46 +02:00
|
|
|
preload_collection(statuses, Status)
|
2024-03-07 15:53:37 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def relationships
|
|
|
|
StatusRelationshipsPresenter.new(@requests.map(&:last_status), current_user&.account_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_request
|
|
|
|
@request = NotificationRequest.where(account: current_account).find(params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def next_path
|
|
|
|
api_v1_notifications_requests_url pagination_params(max_id: pagination_max_id) unless @requests.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
|
|
|
api_v1_notifications_requests_url pagination_params(min_id: pagination_since_id) unless @requests.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_max_id
|
|
|
|
@requests.last.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_since_id
|
|
|
|
@requests.first.id
|
|
|
|
end
|
|
|
|
end
|