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
|
|
|
|
|
|
|
|
def index
|
|
|
|
@notifications = Notification.where(account: current_account).with_includes.paginate_by_max_id(20, params[:max_id], params[:since_id])
|
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)
|
|
|
|
set_counters_maps(statuses)
|
|
|
|
set_account_counters_maps(@notifications.map(&:from_account))
|
2016-11-21 14:16:04 +00:00
|
|
|
|
2016-11-19 23:33:02 +00:00
|
|
|
next_path = api_v1_notifications_url(max_id: @notifications.last.id) if @notifications.size == 20
|
|
|
|
prev_path = api_v1_notifications_url(since_id: @notifications.first.id) unless @notifications.empty?
|
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
|
|
|
end
|