2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 15:44:49 -07:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 13:04:54 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-22 15:18:31 -07:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicy do
|
2019-02-03 12:12:23 -07:00
|
|
|
alias Pleroma.User
|
2019-07-28 20:43:19 -06:00
|
|
|
|
|
|
|
require Pleroma.Constants
|
|
|
|
|
2019-05-05 20:28:04 -06:00
|
|
|
@moduledoc "Block messages with too much mentions (configurable)"
|
|
|
|
|
2018-12-22 15:18:31 -07:00
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF
|
|
|
|
|
2019-02-15 06:05:20 -07:00
|
|
|
defp delist_message(message, threshold) when threshold > 0 do
|
2019-02-04 04:09:00 -07:00
|
|
|
follower_collection = User.get_cached_by_ap_id(message["actor"]).follower_address
|
2020-06-22 02:35:11 -06:00
|
|
|
to = message["to"] || []
|
|
|
|
cc = message["cc"] || []
|
2019-02-03 14:46:06 -07:00
|
|
|
|
2020-06-22 02:35:11 -06:00
|
|
|
follower_collection? = Enum.member?(to ++ cc, follower_collection)
|
2019-02-15 05:43:14 -07:00
|
|
|
|
2019-02-13 08:23:09 -07:00
|
|
|
message =
|
2019-02-17 03:46:40 -07:00
|
|
|
case get_recipient_count(message) do
|
|
|
|
{:public, recipients}
|
2019-02-15 06:05:20 -07:00
|
|
|
when follower_collection? and recipients > threshold ->
|
2019-02-13 08:23:09 -07:00
|
|
|
message
|
|
|
|
|> Map.put("to", [follower_collection])
|
2019-07-28 20:43:19 -06:00
|
|
|
|> Map.put("cc", [Pleroma.Constants.as_public()])
|
2019-02-15 05:43:14 -07:00
|
|
|
|
2019-02-17 03:46:40 -07:00
|
|
|
{:public, recipients} when recipients > threshold ->
|
2019-02-15 05:43:14 -07:00
|
|
|
message
|
|
|
|
|> Map.put("to", [])
|
2019-07-28 20:43:19 -06:00
|
|
|
|> Map.put("cc", [Pleroma.Constants.as_public()])
|
2019-02-15 05:43:14 -07:00
|
|
|
|
|
|
|
_ ->
|
2019-02-13 08:23:09 -07:00
|
|
|
message
|
|
|
|
end
|
2019-02-12 15:25:09 -07:00
|
|
|
|
2019-02-13 08:23:09 -07:00
|
|
|
{:ok, message}
|
2019-02-12 15:25:09 -07:00
|
|
|
end
|
|
|
|
|
2019-02-15 06:05:20 -07:00
|
|
|
defp delist_message(message, _threshold), do: {:ok, message}
|
2019-02-03 14:46:06 -07:00
|
|
|
|
2019-02-15 06:05:20 -07:00
|
|
|
defp reject_message(message, threshold) when threshold > 0 do
|
2019-02-13 08:23:09 -07:00
|
|
|
with {_, recipients} <- get_recipient_count(message) do
|
2019-02-15 06:05:20 -07:00
|
|
|
if recipients > threshold do
|
2020-07-13 07:47:13 -06:00
|
|
|
{:reject, "[HellthreadPolicy] #{recipients} recipients is over the limit of #{threshold}"}
|
2019-02-13 08:23:09 -07:00
|
|
|
else
|
|
|
|
{:ok, message}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-02-03 12:12:23 -07:00
|
|
|
|
2019-02-15 06:05:20 -07:00
|
|
|
defp reject_message(message, _threshold), do: {:ok, message}
|
|
|
|
|
2019-02-13 08:23:09 -07:00
|
|
|
defp get_recipient_count(message) do
|
|
|
|
recipients = (message["to"] || []) ++ (message["cc"] || [])
|
|
|
|
follower_collection = User.get_cached_by_ap_id(message["actor"]).follower_address
|
2019-02-03 12:12:23 -07:00
|
|
|
|
2019-07-28 20:43:19 -06:00
|
|
|
if Enum.member?(recipients, Pleroma.Constants.as_public()) do
|
2019-02-15 04:47:50 -07:00
|
|
|
recipients =
|
|
|
|
recipients
|
2019-07-28 20:43:19 -06:00
|
|
|
|> List.delete(Pleroma.Constants.as_public())
|
2019-02-15 04:47:50 -07:00
|
|
|
|> List.delete(follower_collection)
|
2019-02-13 08:23:09 -07:00
|
|
|
|
|
|
|
{:public, length(recipients)}
|
|
|
|
else
|
2019-02-15 04:47:50 -07:00
|
|
|
recipients =
|
|
|
|
recipients
|
|
|
|
|> List.delete(follower_collection)
|
2019-02-13 08:23:09 -07:00
|
|
|
|
|
|
|
{:not_public, length(recipients)}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
2020-06-22 02:35:11 -06:00
|
|
|
def filter(%{"type" => "Create", "object" => %{"type" => object_type}} = message)
|
|
|
|
when object_type in ~w{Note Article} do
|
2019-02-15 06:05:20 -07:00
|
|
|
reject_threshold =
|
|
|
|
Pleroma.Config.get(
|
|
|
|
[:mrf_hellthread, :reject_threshold],
|
|
|
|
Pleroma.Config.get([:mrf_hellthread, :threshold])
|
|
|
|
)
|
|
|
|
|
|
|
|
delist_threshold = Pleroma.Config.get([:mrf_hellthread, :delist_threshold])
|
|
|
|
|
|
|
|
with {:ok, message} <- reject_message(message, reject_threshold),
|
|
|
|
{:ok, message} <- delist_message(message, delist_threshold) do
|
2019-02-13 08:23:09 -07:00
|
|
|
{:ok, message}
|
|
|
|
else
|
2020-07-13 07:47:13 -06:00
|
|
|
e -> e
|
2018-12-22 15:18:31 -07:00
|
|
|
end
|
|
|
|
end
|
2018-12-23 04:24:53 -07:00
|
|
|
|
|
|
|
@impl true
|
2019-02-04 04:22:25 -07:00
|
|
|
def filter(message), do: {:ok, message}
|
2019-08-13 15:52:54 -06:00
|
|
|
|
|
|
|
@impl true
|
2019-08-14 12:53:18 -06:00
|
|
|
def describe,
|
|
|
|
do: {:ok, %{mrf_hellthread: Pleroma.Config.get(:mrf_hellthread) |> Enum.into(%{})}}
|
2018-12-22 15:32:38 -07:00
|
|
|
end
|