Merge branch 'hotfix/hellthread-deprecation-warning' into 'develop'
[akkoma] / lib / pleroma / web / activity_pub / mrf / hellthread_policy.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicy do
6 alias Pleroma.User
7 @behaviour Pleroma.Web.ActivityPub.MRF
8
9 defp delist_message(message) do
10 follower_collection = User.get_cached_by_ap_id(message["actor"]).follower_address
11
12 message
13 |> Map.put("to", [follower_collection])
14 |> Map.put("cc", ["https://www.w3.org/ns/activitystreams#Public"])
15 end
16
17 @impl true
18 def filter(%{"type" => "Create"} = message) do
19 delist_threshold = Pleroma.Config.get([:mrf_hellthread, :delist_threshold])
20
21 reject_threshold =
22 Pleroma.Config.get(
23 [:mrf_hellthread, :reject_threshold],
24 Pleroma.Config.get([:mrf_hellthread, :threshold])
25 )
26
27 recipients = (message["to"] || []) ++ (message["cc"] || [])
28
29 cond do
30 length(recipients) > reject_threshold and reject_threshold > 0 ->
31 {:reject, nil}
32
33 length(recipients) > delist_threshold and delist_threshold > 0 ->
34 if Enum.member?(message["to"], "https://www.w3.org/ns/activitystreams#Public") or
35 Enum.member?(message["cc"], "https://www.w3.org/ns/activitystreams#Public") do
36 {:ok, delist_message(message)}
37 else
38 {:ok, message}
39 end
40
41 true ->
42 {:ok, message}
43 end
44 end
45
46 @impl true
47 def filter(message), do: {:ok, message}
48 end