forked from AkkomaGang/akkoma
SideEffects: Don't update unread count for actor in chatmessages.
This commit is contained in:
parent
9c17109765
commit
baf051a59e
2 changed files with 26 additions and 1 deletions
|
@ -117,7 +117,11 @@ def handle_object_creation(%{"type" => "ChatMessage"} = object, meta) do
|
||||||
[[actor, recipient], [recipient, actor]]
|
[[actor, recipient], [recipient, actor]]
|
||||||
|> Enum.each(fn [user, other_user] ->
|
|> Enum.each(fn [user, other_user] ->
|
||||||
if user.local do
|
if user.local do
|
||||||
Chat.bump_or_create(user.id, other_user.ap_id)
|
if user.ap_id == actor.ap_id do
|
||||||
|
Chat.get_or_create(user.id, other_user.ap_id)
|
||||||
|
else
|
||||||
|
Chat.bump_or_create(user.id, other_user.ap_id)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
|
@ -284,6 +284,27 @@ test "notifies the recipient" do
|
||||||
assert Repo.get_by(Notification, user_id: recipient.id, activity_id: create_activity.id)
|
assert Repo.get_by(Notification, user_id: recipient.id, activity_id: create_activity.id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "it creates a Chat for the local users and bumps the unread count, except for the author" do
|
||||||
|
author = insert(:user, local: true)
|
||||||
|
recipient = insert(:user, local: true)
|
||||||
|
|
||||||
|
{:ok, chat_message_data, _meta} = Builder.chat_message(author, recipient.ap_id, "hey")
|
||||||
|
|
||||||
|
{:ok, create_activity_data, _meta} =
|
||||||
|
Builder.create(author, chat_message_data["id"], [recipient.ap_id])
|
||||||
|
|
||||||
|
{:ok, create_activity, _meta} = ActivityPub.persist(create_activity_data, local: false)
|
||||||
|
|
||||||
|
{:ok, _create_activity, _meta} =
|
||||||
|
SideEffects.handle(create_activity, local: false, object_data: chat_message_data)
|
||||||
|
|
||||||
|
chat = Chat.get(author.id, recipient.ap_id)
|
||||||
|
assert chat.unread == 0
|
||||||
|
|
||||||
|
chat = Chat.get(recipient.id, author.ap_id)
|
||||||
|
assert chat.unread == 1
|
||||||
|
end
|
||||||
|
|
||||||
test "it creates a Chat for the local users and bumps the unread count" do
|
test "it creates a Chat for the local users and bumps the unread count" do
|
||||||
author = insert(:user, local: false)
|
author = insert(:user, local: false)
|
||||||
recipient = insert(:user, local: true)
|
recipient = insert(:user, local: true)
|
||||||
|
|
Loading…
Reference in a new issue