2016-11-20 10:33:02 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-08 04:09:25 +10:00
|
|
|
class Api::V1::NotificationsController < Api::BaseController
|
2018-07-06 02:31:35 +10:00
|
|
|
before_action -> { doorkeeper_authorize! :read, :'read:notifications' }, except: [:clear, :dismiss]
|
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:notifications' }, only: [:clear, :dismiss]
|
2016-11-20 10:33:02 +11:00
|
|
|
before_action :require_user!
|
2017-06-01 04:30:55 +10:00
|
|
|
after_action :insert_pagination_headers, only: :index
|
2016-11-20 10:33:02 +11:00
|
|
|
|
2023-02-01 21:23:54 +11:00
|
|
|
DEFAULT_NOTIFICATIONS_LIMIT = 40
|
2017-01-26 14:30:40 +11:00
|
|
|
|
2016-11-20 10:33:02 +11:00
|
|
|
def index
|
2023-07-13 01:06:00 +10:00
|
|
|
with_read_replica do
|
|
|
|
@notifications = load_notifications
|
|
|
|
@relationships = StatusRelationshipsPresenter.new(target_statuses_from_notifications, current_user&.account_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: @notifications, each_serializer: REST::NotificationSerializer, relationships: @relationships
|
2016-11-20 10:33:02 +11:00
|
|
|
end
|
2017-01-22 08:14:13 +11:00
|
|
|
|
|
|
|
def show
|
2020-09-11 23:16:29 +10:00
|
|
|
@notification = current_account.notifications.without_suspended.find(params[:id])
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @notification, serializer: REST::NotificationSerializer
|
2017-01-22 08:14:13 +11:00
|
|
|
end
|
2017-01-24 07:09:27 +11:00
|
|
|
|
|
|
|
def clear
|
2017-06-01 04:30:55 +10:00
|
|
|
current_account.notifications.delete_all
|
2017-01-24 07:09:27 +11:00
|
|
|
render_empty
|
|
|
|
end
|
2017-04-09 07:39:31 +10:00
|
|
|
|
2017-04-22 10:30:35 +10:00
|
|
|
def dismiss
|
2023-02-21 12:21:48 +11:00
|
|
|
current_account.notifications.find(params[:id]).destroy!
|
2017-04-22 10:30:35 +10:00
|
|
|
render_empty
|
|
|
|
end
|
|
|
|
|
2017-04-09 07:39:31 +10:00
|
|
|
private
|
|
|
|
|
2017-06-01 04:30:55 +10:00
|
|
|
def load_notifications
|
2022-12-16 02:18:20 +11:00
|
|
|
notifications = browserable_account_notifications.includes(from_account: [:account_stat, :user]).to_a_paginated_by_id(
|
2017-06-01 04:30:55 +10:00
|
|
|
limit_param(DEFAULT_NOTIFICATIONS_LIMIT),
|
2018-09-28 10:23:45 +10:00
|
|
|
params_slice(:max_id, :since_id, :min_id)
|
2017-06-01 04:30:55 +10:00
|
|
|
)
|
2022-03-15 14:11:29 +11:00
|
|
|
|
2021-02-01 07:24:57 +11:00
|
|
|
Notification.preload_cache_collection_target_statuses(notifications) do |target_statuses|
|
|
|
|
cache_collection(target_statuses, Status)
|
|
|
|
end
|
2017-06-01 04:30:55 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def browserable_account_notifications
|
2022-03-15 14:11:29 +11:00
|
|
|
current_account.notifications.without_suspended.browserable(
|
|
|
|
types: Array(browserable_params[:types]),
|
|
|
|
exclude_types: Array(browserable_params[:exclude_types]),
|
|
|
|
from_account_id: browserable_params[:account_id]
|
|
|
|
)
|
2017-06-01 04:30:55 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def target_statuses_from_notifications
|
2017-06-08 21:24:28 +10:00
|
|
|
@notifications.reject { |notification| notification.target_status.nil? }.map(&:target_status)
|
2017-06-01 04:30:55 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def insert_pagination_headers
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def next_path
|
2023-02-18 22:37:47 +11:00
|
|
|
api_v1_notifications_url pagination_params(max_id: pagination_max_id) unless @notifications.empty?
|
2017-06-01 04:30:55 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
2023-02-18 22:37:47 +11:00
|
|
|
api_v1_notifications_url pagination_params(min_id: pagination_since_id) unless @notifications.empty?
|
2017-06-01 04:30:55 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_max_id
|
|
|
|
@notifications.last.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_since_id
|
|
|
|
@notifications.first.id
|
|
|
|
end
|
|
|
|
|
2022-03-15 14:11:29 +11:00
|
|
|
def browserable_params
|
|
|
|
params.permit(:account_id, types: [], exclude_types: [])
|
2019-05-21 21:28:49 +10:00
|
|
|
end
|
|
|
|
|
2017-04-09 07:39:31 +10:00
|
|
|
def pagination_params(core_params)
|
2022-03-15 14:11:29 +11:00
|
|
|
params.slice(:limit, :account_id, :types, :exclude_types).permit(:limit, :account_id, types: [], exclude_types: []).merge(core_params)
|
2017-04-09 07:39:31 +10:00
|
|
|
end
|
2016-11-20 10:33:02 +11:00
|
|
|
end
|