Browse Source

Merge branch 'bugfix/streamer-follows' into 'develop'

streamer: use direct object for filter checks when there is no valid child object in an activity

Closes #1291

See merge request pleroma/pleroma!1931
environments/review-fix-dokku-evrk7p/deployments/949
rinpatch 4 years ago
parent
commit
8dd7c099a7
2 changed files with 19 additions and 1 deletions
  1. +1
    -1
      lib/pleroma/web/streamer/worker.ex
  2. +18
    -0
      test/web/streamer/streamer_test.exs

+ 1
- 1
lib/pleroma/web/streamer/worker.ex View File

@@ -136,7 +136,7 @@ defmodule Pleroma.Web.Streamer.Worker do
recipients = MapSet.new(item.recipients)
domain_blocks = Pleroma.Web.ActivityPub.MRF.subdomains_regex(user.domain_blocks)

with parent when not is_nil(parent) <- Object.normalize(item),
with parent <- Object.normalize(item) || item,
true <- Enum.all?([blocks, mutes, reblog_mutes], &(item.actor not in &1)),
true <- Enum.all?([blocks, mutes], &(parent.data["actor"] not in &1)),
true <- MapSet.disjoint?(recipients, recipient_blocks),


+ 18
- 0
test/web/streamer/streamer_test.exs View File

@@ -110,6 +110,24 @@ defmodule Pleroma.Web.StreamerTest do
Streamer.stream("user:notification", notif)
Task.await(task)
end

test "it sends follow activities to the 'user:notification' stream", %{
user: user
} do
user2 = insert(:user)
task = Task.async(fn -> assert_receive {:text, _}, 4_000 end)

Streamer.add_socket(
"user:notification",
%{transport_pid: task.pid, assigns: %{user: user}}
)

{:ok, _follower, _followed, _activity} = CommonAPI.follow(user2, user)

# We don't directly pipe the notification to the streamer as it's already
# generated as a side effect of CommonAPI.follow().
Task.await(task)
end
end

test "it sends to public" do


Loading…
Cancel
Save