2016-11-19 23:33:02 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::NotificationsController < ApiController
|
|
|
|
before_action -> { doorkeeper_authorize! :read }
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
2017-01-26 03:30:40 +00:00
|
|
|
DEFAULT_NOTIFICATIONS_LIMIT = 15
|
|
|
|
|
2016-11-19 23:33:02 +00:00
|
|
|
def index
|
2017-04-10 21:45:29 +00:00
|
|
|
@notifications = Notification.where(account: current_account).browserable(exclude_types).paginate_by_max_id(limit_param(DEFAULT_NOTIFICATIONS_LIMIT), params[:max_id], params[:since_id])
|
2016-11-29 14:49:39 +00:00
|
|
|
@notifications = cache_collection(@notifications, Notification)
|
2016-11-21 15:10:42 +00:00
|
|
|
statuses = @notifications.select { |n| !n.target_status.nil? }.map(&:target_status)
|
2016-11-19 23:33:02 +00:00
|
|
|
|
2016-11-21 15:10:42 +00:00
|
|
|
set_maps(statuses)
|
2016-11-21 14:16:04 +00:00
|
|
|
|
2017-04-08 21:39:31 +00:00
|
|
|
next_path = api_v1_notifications_url(pagination_params(max_id: @notifications.last.id)) unless @notifications.empty?
|
|
|
|
prev_path = api_v1_notifications_url(pagination_params(since_id: @notifications.first.id)) unless @notifications.empty?
|
2016-11-19 23:33:02 +00:00
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
2017-01-21 21:14:13 +00:00
|
|
|
|
|
|
|
def show
|
|
|
|
@notification = Notification.where(account: current_account).find(params[:id])
|
|
|
|
end
|
2017-01-23 20:09:27 +00:00
|
|
|
|
|
|
|
def clear
|
|
|
|
Notification.where(account: current_account).delete_all
|
|
|
|
render_empty
|
|
|
|
end
|
2017-04-08 21:39:31 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-04-10 21:45:29 +00:00
|
|
|
def exclude_types
|
|
|
|
val = params.permit(exclude_types: [])[:exclude_types] || []
|
|
|
|
val = [val] unless val.is_a?(Enumerable)
|
|
|
|
val
|
|
|
|
end
|
|
|
|
|
2017-04-08 21:39:31 +00:00
|
|
|
def pagination_params(core_params)
|
2017-04-10 21:45:29 +00:00
|
|
|
params.permit(:limit, exclude_types: []).merge(core_params)
|
2017-04-08 21:39:31 +00:00
|
|
|
end
|
2016-11-19 23:33:02 +00:00
|
|
|
end
|