pleroma/lib/pleroma/web/admin_api/controllers/chat_controller.ex

86 lines
2.3 KiB
Elixir
Raw Normal View History

2020-09-01 02:56:05 +02:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.AdminAPI.ChatController do
use Pleroma.Web, :controller
alias Pleroma.Activity
2020-09-02 02:39:34 +02:00
alias Pleroma.Chat
alias Pleroma.Chat.MessageReference
2020-09-01 02:56:05 +02:00
alias Pleroma.ModerationLog
2020-09-02 02:39:34 +02:00
alias Pleroma.Pagination
alias Pleroma.Web.AdminAPI
2020-09-01 02:56:05 +02:00
alias Pleroma.Web.CommonAPI
2020-09-02 02:39:34 +02:00
alias Pleroma.Web.PleromaAPI.Chat.MessageReferenceView
2020-09-19 20:25:01 +02:00
alias Pleroma.Web.Plugs.OAuthScopesPlug
2020-09-01 02:56:05 +02:00
require Logger
plug(Pleroma.Web.ApiSpec.CastAndValidate)
2020-09-02 02:39:34 +02:00
plug(
OAuthScopesPlug,
2020-09-02 02:49:46 +02:00
%{scopes: ["read:chats"], admin: true} when action in [:show, :messages]
2020-09-02 02:39:34 +02:00
)
2020-09-01 02:56:05 +02:00
plug(
OAuthScopesPlug,
%{scopes: ["write:chats"], admin: true} when action in [:delete_message]
)
action_fallback(Pleroma.Web.AdminAPI.FallbackController)
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.Admin.ChatOperation
2020-09-02 03:40:36 +02:00
def delete_message(%{assigns: %{user: user}} = conn, %{
message_id: message_id,
id: chat_id
}) do
with %MessageReference{object: %{data: %{"id" => object_ap_id}}} = cm_ref <-
MessageReference.get_by_id(message_id),
^chat_id <- to_string(cm_ref.chat_id),
%Activity{id: activity_id} <- Activity.get_create_by_object_ap_id(object_ap_id),
{:ok, _} <- CommonAPI.delete(activity_id, user) do
2020-09-01 02:56:05 +02:00
ModerationLog.insert_log(%{
action: "chat_message_delete",
actor: user,
2020-09-02 03:40:36 +02:00
subject_id: message_id
2020-09-01 02:56:05 +02:00
})
2020-09-02 03:40:36 +02:00
conn
|> put_view(MessageReferenceView)
|> render("show.json", chat_message_reference: cm_ref)
else
_e ->
{:error, :could_not_delete}
2020-09-01 02:56:05 +02:00
end
end
2020-09-02 02:39:34 +02:00
def messages(conn, %{id: id} = params) do
with %Chat{} = chat <- Chat.get_by_id(id) do
cm_refs =
chat
|> MessageReference.for_chat_query()
|> Pagination.fetch_paginated(params)
conn
|> put_view(MessageReferenceView)
|> render("index.json", chat_message_references: cm_refs)
else
_ ->
conn
|> put_status(:not_found)
|> json(%{error: "not found"})
end
end
2020-09-02 02:49:46 +02:00
def show(conn, %{id: id}) do
with %Chat{} = chat <- Chat.get_by_id(id) do
conn
|> put_view(AdminAPI.ChatView)
2020-09-02 02:49:46 +02:00
|> render("show.json", chat: chat)
end
end
2020-09-01 02:56:05 +02:00
end