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