2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# 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
|
|
|
|
|
2019-02-03 22:56:20 +00:00
|
|
|
defp delist_message(message) do
|
2019-02-04 11:09:00 +00:00
|
|
|
follower_collection = User.get_cached_by_ap_id(message["actor"]).follower_address
|
2019-02-03 21:46:06 +00:00
|
|
|
|
2019-02-03 22:56:20 +00:00
|
|
|
message
|
2019-02-04 09:23:07 +00:00
|
|
|
|> Map.put("to", [follower_collection])
|
|
|
|
|> Map.put("cc", ["https://www.w3.org/ns/activitystreams#Public"])
|
2019-02-03 21:46:06 +00:00
|
|
|
end
|
|
|
|
|
2018-12-22 22:18:31 +00:00
|
|
|
@impl true
|
2019-02-04 09:23:43 +00:00
|
|
|
def filter(%{"type" => "Create"} = message) do
|
2019-02-03 19:12:23 +00:00
|
|
|
delist_threshold = Pleroma.Config.get([:mrf_hellthread, :delist_threshold])
|
2019-02-03 21:46:06 +00:00
|
|
|
|
|
|
|
reject_threshold =
|
|
|
|
Pleroma.Config.get(
|
|
|
|
[:mrf_hellthread, :reject_threshold],
|
|
|
|
Pleroma.Config.get([:mrf_hellthread, :threshold])
|
|
|
|
)
|
|
|
|
|
2019-02-04 09:23:43 +00:00
|
|
|
recipients = (message["to"] || []) ++ (message["cc"] || [])
|
2018-12-22 22:18:31 +00:00
|
|
|
|
2019-02-03 19:12:23 +00:00
|
|
|
cond do
|
2019-02-03 21:46:06 +00:00
|
|
|
length(recipients) > reject_threshold and reject_threshold > 0 ->
|
2019-02-03 19:12:23 +00:00
|
|
|
{:reject, nil}
|
|
|
|
|
2019-02-03 21:46:06 +00:00
|
|
|
length(recipients) > delist_threshold and delist_threshold > 0 ->
|
2019-02-04 09:23:43 +00:00
|
|
|
if Enum.member?(message["to"], "https://www.w3.org/ns/activitystreams#Public") or
|
|
|
|
Enum.member?(message["cc"], "https://www.w3.org/ns/activitystreams#Public") do
|
|
|
|
{:ok, delist_message(message)}
|
2019-02-03 19:12:23 +00:00
|
|
|
else
|
2019-02-04 09:23:43 +00:00
|
|
|
{:ok, message}
|
2019-02-03 19:12:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
true ->
|
2019-02-04 09:23:43 +00:00
|
|
|
{:ok, message}
|
2018-12-22 22:18:31 +00:00
|
|
|
end
|
|
|
|
end
|
2018-12-23 11:24:53 +00:00
|
|
|
|
|
|
|
@impl true
|
2019-02-04 11:22:25 +00:00
|
|
|
def filter(message), do: {:ok, message}
|
2018-12-22 22:32:38 +00:00
|
|
|
end
|