1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.AdminAPI.ChatController do
6 use Pleroma.Web, :controller
10 alias Pleroma.Chat.MessageReference
11 alias Pleroma.Pagination
12 alias Pleroma.Web.AdminAPI
13 alias Pleroma.Web.CommonAPI
14 alias Pleroma.Web.PleromaAPI.Chat.MessageReferenceView
15 alias Pleroma.Web.Plugs.OAuthScopesPlug
19 plug(Pleroma.Web.ApiSpec.CastAndValidate)
23 %{scopes: ["admin:read:chats"]} when action in [:show, :messages]
28 %{scopes: ["admin:write:chats"]} when action in [:delete_message]
31 action_fallback(Pleroma.Web.AdminAPI.FallbackController)
33 defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.Admin.ChatOperation
35 def delete_message(%{assigns: %{user: user}} = conn, %{
36 message_id: message_id,
39 with %MessageReference{object: %{data: %{"id" => object_ap_id}}} = cm_ref <-
40 MessageReference.get_by_id(message_id),
41 ^chat_id <- to_string(cm_ref.chat_id),
42 %Activity{id: activity_id} <- Activity.get_create_by_object_ap_id(object_ap_id),
43 {:ok, _} <- CommonAPI.delete(activity_id, user) do
45 |> put_view(MessageReferenceView)
46 |> render("show.json", chat_message_reference: cm_ref)
49 {:error, :could_not_delete}
53 def messages(conn, %{id: id} = params) do
54 with %Chat{} = chat <- Chat.get_by_id(id) do
57 |> MessageReference.for_chat_query()
58 |> Pagination.fetch_paginated(params)
61 |> put_view(MessageReferenceView)
62 |> render("index.json", chat_message_references: cm_refs)
66 |> put_status(:not_found)
67 |> json(%{error: "not found"})
71 def show(conn, %{id: id}) do
72 with %Chat{} = chat <- Chat.get_by_id(id) do
74 |> put_view(AdminAPI.ChatView)
75 |> render("show.json", chat: chat)