2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 16:41:47 +01:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-22 23:18:31 +01:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicy do
|
2019-02-03 20:12:23 +01:00
|
|
|
alias Pleroma.User
|
2018-12-22 23:18:31 +01:00
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF
|
|
|
|
|
2019-02-15 14:05:20 +01:00
|
|
|
defp delist_message(message, threshold) when threshold > 0 do
|
2019-02-04 12:09:00 +01:00
|
|
|
follower_collection = User.get_cached_by_ap_id(message["actor"]).follower_address
|
2019-02-03 22:46:06 +01:00
|
|
|
|
2019-02-15 13:43:14 +01:00
|
|
|
follower_collection? = Enum.member?(message["to"] ++ message["cc"], follower_collection)
|
|
|
|
|
2019-02-13 16:23:09 +01:00
|
|
|
message =
|
2019-02-15 13:43:14 +01:00
|
|
|
case recipients = get_recipient_count(message) do
|
2019-02-15 14:05:20 +01:00
|
|
|
{:public, _}
|
|
|
|
when follower_collection? and recipients > threshold ->
|
2019-02-13 16:23:09 +01:00
|
|
|
message
|
|
|
|
|> Map.put("to", [follower_collection])
|
|
|
|
|> Map.put("cc", ["https://www.w3.org/ns/activitystreams#Public"])
|
2019-02-15 13:43:14 +01:00
|
|
|
|
2019-02-15 14:05:20 +01:00
|
|
|
{:public, _} when recipients > threshold ->
|
2019-02-15 13:43:14 +01:00
|
|
|
message
|
|
|
|
|> Map.put("to", [])
|
|
|
|
|> Map.put("cc", ["https://www.w3.org/ns/activitystreams#Public"])
|
|
|
|
|
|
|
|
_ ->
|
2019-02-13 16:23:09 +01:00
|
|
|
message
|
|
|
|
end
|
2019-02-12 23:25:09 +01:00
|
|
|
|
2019-02-13 16:23:09 +01:00
|
|
|
{:ok, message}
|
2019-02-12 23:25:09 +01:00
|
|
|
end
|
|
|
|
|
2019-02-15 14:05:20 +01:00
|
|
|
defp delist_message(message, _threshold), do: {:ok, message}
|
2019-02-03 22:46:06 +01:00
|
|
|
|
2019-02-15 14:05:20 +01:00
|
|
|
defp reject_message(message, threshold) when threshold > 0 do
|
2019-02-13 16:23:09 +01:00
|
|
|
with {_, recipients} <- get_recipient_count(message) do
|
2019-02-15 14:05:20 +01:00
|
|
|
if recipients > threshold do
|
2019-02-03 20:12:23 +01:00
|
|
|
{:reject, nil}
|
2019-02-13 16:23:09 +01:00
|
|
|
else
|
|
|
|
{:ok, message}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-02-03 20:12:23 +01:00
|
|
|
|
2019-02-15 14:05:20 +01:00
|
|
|
defp reject_message(message, _threshold), do: {:ok, message}
|
|
|
|
|
2019-02-13 16:23:09 +01: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 20:12:23 +01:00
|
|
|
|
2019-02-13 16:23:09 +01:00
|
|
|
if Enum.member?(recipients, "https://www.w3.org/ns/activitystreams#Public") do
|
2019-02-15 12:47:50 +01:00
|
|
|
recipients =
|
|
|
|
recipients
|
|
|
|
|> List.delete("https://www.w3.org/ns/activitystreams#Public")
|
|
|
|
|> List.delete(follower_collection)
|
2019-02-13 16:23:09 +01:00
|
|
|
|
|
|
|
{:public, length(recipients)}
|
|
|
|
else
|
2019-02-15 12:47:50 +01:00
|
|
|
recipients =
|
|
|
|
recipients
|
|
|
|
|> List.delete(follower_collection)
|
2019-02-13 16:23:09 +01:00
|
|
|
|
|
|
|
{:not_public, length(recipients)}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def filter(%{"type" => "Create"} = message) do
|
2019-02-15 14:05:20 +01: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 16:23:09 +01:00
|
|
|
{:ok, message}
|
|
|
|
else
|
|
|
|
_e -> {:reject, nil}
|
2018-12-22 23:18:31 +01:00
|
|
|
end
|
|
|
|
end
|
2018-12-23 12:24:53 +01:00
|
|
|
|
|
|
|
@impl true
|
2019-02-04 12:22:25 +01:00
|
|
|
def filter(message), do: {:ok, message}
|
2018-12-22 23:32:38 +01:00
|
|
|
end
|