2019-02-08 09:38:24 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-02-08 09:38:24 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.KeywordPolicy do
|
2019-07-29 02:43:19 +00:00
|
|
|
require Pleroma.Constants
|
|
|
|
|
2019-05-06 02:28:04 +00:00
|
|
|
@moduledoc "Reject or Word-Replace messages with a keyword or regex"
|
|
|
|
|
2021-06-07 19:22:08 +00:00
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF.Policy
|
2019-03-24 14:47:50 +00:00
|
|
|
defp string_matches?(string, _) when not is_binary(string) do
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2019-02-08 09:38:24 +00:00
|
|
|
defp string_matches?(string, pattern) when is_binary(pattern) do
|
|
|
|
String.contains?(string, pattern)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp string_matches?(string, pattern) do
|
|
|
|
String.match?(string, pattern)
|
|
|
|
end
|
|
|
|
|
2020-09-14 11:52:13 +00:00
|
|
|
defp object_payload(%{} = object) do
|
|
|
|
[object["content"], object["summary"], object["name"]]
|
|
|
|
|> Enum.filter(& &1)
|
|
|
|
|> Enum.join("\n")
|
|
|
|
end
|
|
|
|
|
|
|
|
defp check_reject(%{"object" => %{} = object} = message) do
|
2022-09-06 19:24:02 +00:00
|
|
|
with {:ok, _new_object} <-
|
|
|
|
Pleroma.Object.Updater.do_with_history(object, fn object ->
|
|
|
|
payload = object_payload(object)
|
|
|
|
|
|
|
|
if Enum.any?(Pleroma.Config.get([:mrf_keyword, :reject]), fn pattern ->
|
|
|
|
string_matches?(payload, pattern)
|
|
|
|
end) do
|
|
|
|
{:reject, "[KeywordPolicy] Matches with rejected keyword"}
|
|
|
|
else
|
|
|
|
{:ok, message}
|
|
|
|
end
|
|
|
|
end) do
|
2019-02-08 09:38:24 +00:00
|
|
|
{:ok, message}
|
2022-09-06 19:24:02 +00:00
|
|
|
else
|
|
|
|
e -> e
|
2019-02-08 09:38:24 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-09-06 19:24:02 +00:00
|
|
|
defp check_ftl_removal(%{"type" => "Create", "to" => to, "object" => %{} = object} = message) do
|
|
|
|
check_keyword = fn object ->
|
|
|
|
payload = object_payload(object)
|
2020-09-14 11:52:13 +00:00
|
|
|
|
2022-09-06 19:24:02 +00:00
|
|
|
if Enum.any?(Pleroma.Config.get([:mrf_keyword, :federated_timeline_removal]), fn pattern ->
|
2020-09-14 11:52:13 +00:00
|
|
|
string_matches?(payload, pattern)
|
2019-02-08 09:38:24 +00:00
|
|
|
end) do
|
2022-09-06 19:24:02 +00:00
|
|
|
{:should_delist, nil}
|
|
|
|
else
|
|
|
|
{:ok, %{}}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
should_delist? = fn object ->
|
|
|
|
with {:ok, _} <- Pleroma.Object.Updater.do_with_history(object, check_keyword) do
|
|
|
|
false
|
|
|
|
else
|
|
|
|
_ -> true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if Pleroma.Constants.as_public() in to and should_delist?.(object) do
|
2019-07-29 02:43:19 +00:00
|
|
|
to = List.delete(to, Pleroma.Constants.as_public())
|
|
|
|
cc = [Pleroma.Constants.as_public() | message["cc"] || []]
|
2019-02-08 09:38:24 +00:00
|
|
|
|
|
|
|
message =
|
|
|
|
message
|
|
|
|
|> Map.put("to", to)
|
|
|
|
|> Map.put("cc", cc)
|
|
|
|
|
|
|
|
{:ok, message}
|
|
|
|
else
|
|
|
|
{:ok, message}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-09-06 19:24:02 +00:00
|
|
|
defp check_ftl_removal(message) do
|
|
|
|
{:ok, message}
|
|
|
|
end
|
|
|
|
|
2020-09-14 11:52:13 +00:00
|
|
|
defp check_replace(%{"object" => %{} = object} = message) do
|
2022-09-06 19:24:02 +00:00
|
|
|
replace_kw = fn object ->
|
2020-09-14 11:52:13 +00:00
|
|
|
["content", "name", "summary"]
|
|
|
|
|> Enum.filter(fn field -> Map.has_key?(object, field) && object[field] end)
|
|
|
|
|> Enum.reduce(object, fn field, object ->
|
|
|
|
data =
|
|
|
|
Enum.reduce(
|
|
|
|
Pleroma.Config.get([:mrf_keyword, :replace]),
|
|
|
|
object[field],
|
|
|
|
fn {pat, repl}, acc -> String.replace(acc, pat, repl) end
|
|
|
|
)
|
|
|
|
|
|
|
|
Map.put(object, field, data)
|
|
|
|
end)
|
2022-09-06 19:24:02 +00:00
|
|
|
|> (fn object -> {:ok, object} end).()
|
|
|
|
end
|
|
|
|
|
|
|
|
{:ok, object} = Pleroma.Object.Updater.do_with_history(object, replace_kw)
|
2020-09-14 11:52:13 +00:00
|
|
|
|
|
|
|
message = Map.put(message, "object", object)
|
|
|
|
|
|
|
|
{:ok, message}
|
2019-02-08 09:38:24 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
2022-09-06 19:24:02 +00:00
|
|
|
def filter(%{"type" => type, "object" => %{"content" => _content}} = message)
|
|
|
|
when type in ["Create", "Update"] do
|
2019-02-08 09:38:24 +00:00
|
|
|
with {:ok, message} <- check_reject(message),
|
|
|
|
{:ok, message} <- check_ftl_removal(message),
|
|
|
|
{:ok, message} <- check_replace(message) do
|
|
|
|
{:ok, message}
|
|
|
|
else
|
2020-07-13 13:47:13 +00:00
|
|
|
{:reject, nil} -> {:reject, "[KeywordPolicy] "}
|
|
|
|
{:reject, _} = e -> e
|
|
|
|
_e -> {:reject, "[KeywordPolicy] "}
|
2019-02-08 09:38:24 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def filter(message), do: {:ok, message}
|
2019-08-13 21:52:54 +00:00
|
|
|
|
|
|
|
@impl true
|
2019-08-13 22:36:24 +00:00
|
|
|
def describe do
|
2019-08-13 21:52:54 +00:00
|
|
|
# This horror is needed to convert regex sigils to strings
|
|
|
|
mrf_keyword =
|
|
|
|
Pleroma.Config.get(:mrf_keyword, [])
|
|
|
|
|> Enum.map(fn {key, value} ->
|
|
|
|
{key,
|
|
|
|
Enum.map(value, fn
|
|
|
|
{pattern, replacement} ->
|
|
|
|
%{
|
|
|
|
"pattern" =>
|
|
|
|
if not is_binary(pattern) do
|
|
|
|
inspect(pattern)
|
|
|
|
else
|
|
|
|
pattern
|
|
|
|
end,
|
|
|
|
"replacement" => replacement
|
|
|
|
}
|
|
|
|
|
|
|
|
pattern ->
|
|
|
|
if not is_binary(pattern) do
|
|
|
|
inspect(pattern)
|
|
|
|
else
|
|
|
|
pattern
|
|
|
|
end
|
|
|
|
end)}
|
|
|
|
end)
|
|
|
|
|> Enum.into(%{})
|
|
|
|
|
|
|
|
{:ok, %{mrf_keyword: mrf_keyword}}
|
|
|
|
end
|
2020-11-10 16:18:53 +00:00
|
|
|
|
|
|
|
@impl true
|
|
|
|
def config_description do
|
|
|
|
%{
|
|
|
|
key: :mrf_keyword,
|
|
|
|
related_policy: "Pleroma.Web.ActivityPub.MRF.KeywordPolicy",
|
|
|
|
label: "MRF Keyword",
|
|
|
|
description:
|
|
|
|
"Reject or Word-Replace messages matching a keyword or [Regex](https://hexdocs.pm/elixir/Regex.html).",
|
|
|
|
children: [
|
|
|
|
%{
|
|
|
|
key: :reject,
|
|
|
|
type: {:list, :string},
|
|
|
|
description: """
|
|
|
|
A list of patterns which result in message being rejected.
|
|
|
|
|
|
|
|
Each pattern can be a string or [Regex](https://hexdocs.pm/elixir/Regex.html) in the format of `~r/PATTERN/`.
|
|
|
|
""",
|
|
|
|
suggestions: ["foo", ~r/foo/iu]
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
key: :federated_timeline_removal,
|
|
|
|
type: {:list, :string},
|
|
|
|
description: """
|
|
|
|
A list of patterns which result in message being removed from federated timelines (a.k.a unlisted).
|
|
|
|
|
|
|
|
Each pattern can be a string or [Regex](https://hexdocs.pm/elixir/Regex.html) in the format of `~r/PATTERN/`.
|
|
|
|
""",
|
|
|
|
suggestions: ["foo", ~r/foo/iu]
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
key: :replace,
|
|
|
|
type: {:list, :tuple},
|
2020-12-26 10:35:05 +00:00
|
|
|
key_placeholder: "instance",
|
|
|
|
value_placeholder: "reason",
|
2020-11-10 16:18:53 +00:00
|
|
|
description: """
|
|
|
|
**Pattern**: a string or [Regex](https://hexdocs.pm/elixir/Regex.html) in the format of `~r/PATTERN/`.
|
|
|
|
|
|
|
|
**Replacement**: a string. Leaving the field empty is permitted.
|
|
|
|
"""
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
end
|
2019-02-08 09:38:24 +00:00
|
|
|
end
|