2016-11-19 15:33:02 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::NotificationsController < ApiController
|
|
|
|
before_action -> { doorkeeper_authorize! :read }
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
2017-01-25 19:30:40 -08:00
|
|
|
DEFAULT_NOTIFICATIONS_LIMIT = 15
|
|
|
|
|
2016-11-19 15:33:02 -08:00
|
|
|
def index
|
2017-01-25 19:30:40 -08:00
|
|
|
@notifications = Notification.where(account: current_account).browserable.paginate_by_max_id(limit_param(DEFAULT_NOTIFICATIONS_LIMIT), params[:max_id], params[:since_id])
|
2016-11-29 06:49:39 -08:00
|
|
|
@notifications = cache_collection(@notifications, Notification)
|
2016-11-21 07:10:42 -08:00
|
|
|
statuses = @notifications.select { |n| !n.target_status.nil? }.map(&:target_status)
|
2016-11-19 15:33:02 -08:00
|
|
|
|
2016-11-21 07:10:42 -08:00
|
|
|
set_maps(statuses)
|
|
|
|
set_counters_maps(statuses)
|
|
|
|
set_account_counters_maps(@notifications.map(&:from_account))
|
2016-11-21 06:16:04 -08:00
|
|
|
|
2017-01-25 19:30:40 -08:00
|
|
|
next_path = api_v1_notifications_url(max_id: @notifications.last.id) if @notifications.size == limit_param(DEFAULT_NOTIFICATIONS_LIMIT)
|
2016-11-19 15:33:02 -08:00
|
|
|
prev_path = api_v1_notifications_url(since_id: @notifications.first.id) unless @notifications.empty?
|
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
2017-01-21 13:14:13 -08:00
|
|
|
|
|
|
|
def show
|
|
|
|
@notification = Notification.where(account: current_account).find(params[:id])
|
|
|
|
end
|
2017-01-23 12:09:27 -08:00
|
|
|
|
|
|
|
def clear
|
|
|
|
Notification.where(account: current_account).delete_all
|
|
|
|
render_empty
|
|
|
|
end
|
2016-11-19 15:33:02 -08:00
|
|
|
end
|