akkoma/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex

43 lines
1.5 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 15:41:47 +00:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-12-22 22:18:31 +00:00
defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicy do
2019-02-03 19:12:23 +00:00
alias Pleroma.User
2018-12-22 22:18:31 +00:00
@behaviour Pleroma.Web.ActivityPub.MRF
@impl true
2018-12-23 11:24:53 +00:00
def filter(%{"type" => "Create"} = object) do
2019-02-03 19:12:23 +00:00
delist_threshold = Pleroma.Config.get([:mrf_hellthread, :delist_threshold])
reject_threshold = Pleroma.Config.get([:mrf_hellthread, :reject_threshold])
2018-12-23 11:24:53 +00:00
recipients = (object["to"] || []) ++ (object["cc"] || [])
2018-12-22 22:18:31 +00:00
2019-02-03 19:12:23 +00:00
cond do
2019-02-03 19:27:28 +00:00
length(recipients) > reject_threshold and reject_threshold != 0 ->
2019-02-03 19:12:23 +00:00
{:reject, nil}
2019-02-03 19:27:28 +00:00
length(recipients) > delist_threshold and delist_threshold != 0 ->
2019-02-03 19:12:23 +00:00
if Enum.member?(object["to"], "https://www.w3.org/ns/activitystreams#Public") or
Enum.member?(object["cc"], "https://www.w3.org/ns/activitystreams#Public") do
2019-02-03 19:45:32 +00:00
follower_collection = User.get_by_ap_id(object["actor"].follower_address)
2019-02-03 19:12:23 +00:00
object
2019-02-03 19:45:32 +00:00
|> Kernel.update_in(["object", "to"], [follower_collection])
2019-02-03 19:12:23 +00:00
|> Kernel.update_in(["object", "cc"], ["https://www.w3.org/ns/activitystreams#Public"])
2019-02-03 19:45:32 +00:00
|> Kernel.update_in(["to"], [follower_collection])
2019-02-03 19:12:23 +00:00
|> Kernel.update_in(["cc"], ["https://www.w3.org/ns/activitystreams#Public"])
2019-02-03 19:45:32 +00:00
{:ok, object}
2019-02-03 19:12:23 +00:00
else
{:ok, object}
end
true ->
{:ok, object}
2018-12-22 22:18:31 +00:00
end
end
2018-12-23 11:24:53 +00:00
@impl true
def filter(object), do: {:ok, object}
2018-12-22 22:32:38 +00:00
end