You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.5 KiB

  1. # frozen_string_literal: true
  2. class Api::V1::NotificationsController < ApiController
  3. before_action -> { doorkeeper_authorize! :read }
  4. before_action :require_user!
  5. respond_to :json
  6. DEFAULT_NOTIFICATIONS_LIMIT = 15
  7. def index
  8. @notifications = Notification.where(account: current_account).browserable(exclude_types).paginate_by_max_id(limit_param(DEFAULT_NOTIFICATIONS_LIMIT), params[:max_id], params[:since_id])
  9. @notifications = cache_collection(@notifications, Notification)
  10. statuses = @notifications.select { |n| !n.target_status.nil? }.map(&:target_status)
  11. set_maps(statuses)
  12. next_path = api_v1_notifications_url(pagination_params(max_id: @notifications.last.id)) unless @notifications.empty?
  13. prev_path = api_v1_notifications_url(pagination_params(since_id: @notifications.first.id)) unless @notifications.empty?
  14. set_pagination_headers(next_path, prev_path)
  15. end
  16. def show
  17. @notification = Notification.where(account: current_account).find(params[:id])
  18. end
  19. def clear
  20. Notification.where(account: current_account).delete_all
  21. render_empty
  22. end
  23. def dismiss
  24. Notification.find_by!(account: current_account, id: params[:id]).destroy!
  25. render_empty
  26. end
  27. private
  28. def exclude_types
  29. val = params.permit(exclude_types: [])[:exclude_types] || []
  30. val = [val] unless val.is_a?(Enumerable)
  31. val
  32. end
  33. def pagination_params(core_params)
  34. params.permit(:limit, exclude_types: []).merge(core_params)
  35. end
  36. end