pleroma/lib/pleroma/web/activity_pub/mrf/keyword_policy.ex

82 lines
2.7 KiB
Elixir
Raw Normal View History

2019-02-08 10:38:24 +01:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.ActivityPub.MRF.KeywordPolicy do
@behaviour Pleroma.Web.ActivityPub.MRF
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
2019-02-11 19:35:40 +01:00
defp check_reject(%{"object" => %{"content" => content, "summary" => summary}} = message) do
2019-02-08 10:38:24 +01:00
if Enum.any?(Pleroma.Config.get([:mrf_keyword, :reject]), fn pattern ->
2019-02-11 19:35:40 +01:00
string_matches?(content, pattern) or string_matches?(summary, pattern)
2019-02-08 10:38:24 +01:00
end) do
{:reject, nil}
else
{:ok, message}
end
end
2019-02-11 19:35:40 +01:00
defp check_ftl_removal(
%{"to" => to, "object" => %{"content" => content, "summary" => summary}} = message
) do
2019-02-08 10:38:24 +01:00
if "https://www.w3.org/ns/activitystreams#Public" in to and
Enum.any?(Pleroma.Config.get([:mrf_keyword, :federated_timeline_removal]), fn pattern ->
2019-02-11 19:35:40 +01:00
string_matches?(content, pattern) or string_matches?(summary, pattern)
2019-02-08 10:38:24 +01:00
end) do
to = List.delete(to, "https://www.w3.org/ns/activitystreams#Public")
2019-02-08 11:16:50 +01:00
cc = ["https://www.w3.org/ns/activitystreams#Public" | message["cc"] || []]
2019-02-08 10:38:24 +01:00
message =
message
|> Map.put("to", to)
|> Map.put("cc", cc)
{:ok, message}
else
{:ok, message}
end
end
2019-02-11 19:35:40 +01:00
defp check_replace(%{"object" => %{"content" => content, "summary" => summary}} = message) do
{content, summary} =
Enum.reduce(Pleroma.Config.get([:mrf_keyword, :replace]), {content, summary}, fn {pattern,
replacement},
{content_acc,
summary_acc} ->
{String.replace(content_acc, pattern, replacement),
String.replace(summary_acc, pattern, replacement)}
2019-02-08 10:38:24 +01:00
end)
2019-02-11 19:35:40 +01:00
{:ok,
message
|> put_in(["object", "content"], content)
|> put_in(["object", "summary"], summary)}
2019-02-08 10:38:24 +01:00
end
@impl true
def filter(%{"object" => %{"content" => nil}} = message) do
{:ok, message}
end
@impl true
def filter(%{"type" => "Create", "object" => %{"content" => _content}} = message) do
with {:ok, message} <- check_reject(message),
{:ok, message} <- check_ftl_removal(message),
{:ok, message} <- check_replace(message) do
{:ok, message}
else
_e ->
{:reject, nil}
end
end
@impl true
def filter(message), do: {:ok, message}
end