Create real Views for all Controllers
[akkoma] / lib / pleroma / web / pleroma_api / controllers / notification_controller.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.PleromaAPI.NotificationController do
6 use Pleroma.Web, :controller
7
8 alias Pleroma.Notification
9
10 plug(Pleroma.Web.ApiSpec.CastAndValidate)
11
12 plug(
13 Pleroma.Web.Plugs.OAuthScopesPlug,
14 %{scopes: ["write:notifications"]} when action == :mark_as_read
15 )
16
17 defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.PleromaNotificationOperation
18
19 def mark_as_read(%{assigns: %{user: user}, body_params: %{id: notification_id}} = conn, _) do
20 with {:ok, notification} <- Notification.read_one(user, notification_id) do
21 render(conn, "show.json", notification: notification, for: user)
22 else
23 {:error, message} ->
24 conn
25 |> put_status(:bad_request)
26 |> json(%{"error" => message})
27 end
28 end
29
30 def mark_as_read(%{assigns: %{user: user}, body_params: %{max_id: max_id}} = conn, _) do
31 notifications =
32 user
33 |> Notification.set_read_up_to(max_id)
34 |> Enum.take(80)
35
36 render(conn, "index.json", notifications: notifications, for: user)
37 end
38 end