forked from AkkomaGang/akkoma
CommonAPI: Obey local limit for chat messages.
This commit is contained in:
parent
ce23673ca1
commit
5b6818b3e5
4 changed files with 28 additions and 4 deletions
|
@ -28,7 +28,10 @@ defmodule Pleroma.Web.CommonAPI do
|
||||||
def post_chat_message(%User{} = user, %User{} = recipient, content) do
|
def post_chat_message(%User{} = user, %User{} = recipient, content) do
|
||||||
transaction =
|
transaction =
|
||||||
Repo.transaction(fn ->
|
Repo.transaction(fn ->
|
||||||
with {_, {:ok, chat_message_data, _meta}} <-
|
with {_, true} <-
|
||||||
|
{:content_length,
|
||||||
|
String.length(content) <= Pleroma.Config.get([:instance, :chat_limit])},
|
||||||
|
{_, {:ok, chat_message_data, _meta}} <-
|
||||||
{:build_object,
|
{:build_object,
|
||||||
Builder.chat_message(
|
Builder.chat_message(
|
||||||
user,
|
user,
|
||||||
|
@ -43,6 +46,9 @@ def post_chat_message(%User{} = user, %User{} = recipient, content) do
|
||||||
{_, {:ok, %Activity{} = activity, _meta}} <-
|
{_, {:ok, %Activity{} = activity, _meta}} <-
|
||||||
{:common_pipeline, Pipeline.common_pipeline(create_activity_data, local: true)} do
|
{:common_pipeline, Pipeline.common_pipeline(create_activity_data, local: true)} do
|
||||||
{:ok, activity}
|
{:ok, activity}
|
||||||
|
else
|
||||||
|
{:content_length, false} -> {:error, :content_too_long}
|
||||||
|
e -> e
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,8 @@ defmodule Pleroma.Web.CommonAPITest do
|
||||||
setup do: clear_config([:instance, :max_pinned_statuses])
|
setup do: clear_config([:instance, :max_pinned_statuses])
|
||||||
|
|
||||||
describe "posting chat messages" do
|
describe "posting chat messages" do
|
||||||
|
setup do: clear_config([:instance, :chat_limit])
|
||||||
|
|
||||||
test "it posts a chat message" do
|
test "it posts a chat message" do
|
||||||
author = insert(:user)
|
author = insert(:user)
|
||||||
recipient = insert(:user)
|
recipient = insert(:user)
|
||||||
|
@ -47,6 +49,22 @@ test "it posts a chat message" do
|
||||||
assert Chat.get(author.id, recipient.ap_id)
|
assert Chat.get(author.id, recipient.ap_id)
|
||||||
assert Chat.get(recipient.id, author.ap_id)
|
assert Chat.get(recipient.id, author.ap_id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "it reject messages over the local limit" do
|
||||||
|
Pleroma.Config.put([:instance, :chat_limit], 2)
|
||||||
|
|
||||||
|
author = insert(:user)
|
||||||
|
recipient = insert(:user)
|
||||||
|
|
||||||
|
{:error, message} =
|
||||||
|
CommonAPI.post_chat_message(
|
||||||
|
author,
|
||||||
|
recipient,
|
||||||
|
"123"
|
||||||
|
)
|
||||||
|
|
||||||
|
assert message == :content_too_long
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
test "when replying to a conversation / participation, it will set the correct context id even if no explicit reply_to is given" do
|
test "when replying to a conversation / participation, it will set the correct context id even if no explicit reply_to is given" do
|
||||||
|
|
|
@ -23,7 +23,7 @@ test "it displays a chat message" do
|
||||||
|
|
||||||
chat_message = ChatMessageView.render("show.json", object: object, for: user, chat: chat)
|
chat_message = ChatMessageView.render("show.json", object: object, for: user, chat: chat)
|
||||||
|
|
||||||
assert chat_message[:id] == object.id
|
assert chat_message[:id] == object.id |> to_string()
|
||||||
assert chat_message[:content] == "kippis"
|
assert chat_message[:content] == "kippis"
|
||||||
assert chat_message[:actor] == user.ap_id
|
assert chat_message[:actor] == user.ap_id
|
||||||
assert chat_message[:chat_id]
|
assert chat_message[:chat_id]
|
||||||
|
@ -34,7 +34,7 @@ test "it displays a chat message" do
|
||||||
|
|
||||||
chat_message_two = ChatMessageView.render("show.json", object: object, for: user, chat: chat)
|
chat_message_two = ChatMessageView.render("show.json", object: object, for: user, chat: chat)
|
||||||
|
|
||||||
assert chat_message_two[:id] == object.id
|
assert chat_message_two[:id] == object.id |> to_string()
|
||||||
assert chat_message_two[:content] == "gkgkgk"
|
assert chat_message_two[:content] == "gkgkgk"
|
||||||
assert chat_message_two[:actor] == recipient.ap_id
|
assert chat_message_two[:actor] == recipient.ap_id
|
||||||
assert chat_message_two[:chat_id] == chat_message[:chat_id]
|
assert chat_message_two[:chat_id] == chat_message[:chat_id]
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
||||||
# SPDX-License-Identifier: AGPL-3.0-only
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
defmodule Pleroma.Web.PleromaAPI.ChatMessageViewTest do
|
defmodule Pleroma.Web.PleromaAPI.ChatViewTest do
|
||||||
use Pleroma.DataCase
|
use Pleroma.DataCase
|
||||||
|
|
||||||
alias Pleroma.Chat
|
alias Pleroma.Chat
|
||||||
|
|
Loading…
Reference in a new issue