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