social.metadata.moe/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
2019-01-01 00:41:47 +09:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-12-23 07:18:31 +09:00
defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicy do
2019-02-04 04:12:23 +09:00
alias Pleroma.User
2018-12-23 07:18:31 +09:00
@behaviour Pleroma.Web.ActivityPub.MRF
@impl true
2018-12-23 20:24:53 +09:00
def filter(%{"type" => "Create"} = object) do
2019-02-04 04:12:23 +09:00
delist_threshold = Pleroma.Config.get([:mrf_hellthread, :delist_threshold])
reject_threshold = Pleroma.Config.get([:mrf_hellthread, :reject_threshold])
2018-12-23 20:24:53 +09:00
recipients = (object["to"] || []) ++ (object["cc"] || [])
2018-12-23 07:18:31 +09:00
2019-02-04 04:12:23 +09:00
cond do
2019-02-04 04:27:28 +09:00
length(recipients) > reject_threshold and reject_threshold != 0 ->
2019-02-04 04:12:23 +09:00
{:reject, nil}
2019-02-04 04:27:28 +09:00
length(recipients) > delist_threshold and delist_threshold != 0 ->
2019-02-04 04:12:23 +09: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-04 04:45:32 +09:00
follower_collection = User.get_by_ap_id(object["actor"].follower_address)
2019-02-04 04:12:23 +09:00
object
2019-02-04 04:45:32 +09:00
|> Kernel.update_in(["object", "to"], [follower_collection])
2019-02-04 04:12:23 +09:00
|> Kernel.update_in(["object", "cc"], ["https://www.w3.org/ns/activitystreams#Public"])
2019-02-04 04:45:32 +09:00
|> Kernel.update_in(["to"], [follower_collection])
2019-02-04 04:12:23 +09:00
|> Kernel.update_in(["cc"], ["https://www.w3.org/ns/activitystreams#Public"])
2019-02-04 04:45:32 +09:00
{:ok, object}
2019-02-04 04:12:23 +09:00
else
{:ok, object}
end
true ->
{:ok, object}
2018-12-23 07:18:31 +09:00
end
end
2018-12-23 20:24:53 +09:00
@impl true
def filter(object), do: {:ok, object}
2018-12-23 07:32:38 +09:00
end