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-04-14 11:31:12 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.SimplePolicy do
|
|
|
|
alias Pleroma.User
|
2018-05-10 16:34:09 +00:00
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF
|
2018-04-14 11:31:12 +00:00
|
|
|
|
2018-11-06 18:34:57 +00:00
|
|
|
defp check_accept(%{host: actor_host} = _actor_info, object) do
|
|
|
|
accepts = Pleroma.Config.get([:mrf_simple, :accept])
|
2018-04-14 11:31:12 +00:00
|
|
|
|
2018-11-06 18:34:57 +00:00
|
|
|
cond do
|
|
|
|
accepts == [] -> {:ok, object}
|
2018-11-07 09:40:24 +00:00
|
|
|
actor_host == Pleroma.Config.get([Pleroma.Web.Endpoint, :url, :host]) -> {:ok, object}
|
2018-11-06 18:34:57 +00:00
|
|
|
Enum.member?(accepts, actor_host) -> {:ok, object}
|
|
|
|
true -> {:reject, nil}
|
|
|
|
end
|
2018-06-19 21:23:37 +00:00
|
|
|
end
|
|
|
|
|
2018-11-06 18:34:57 +00:00
|
|
|
defp check_reject(%{host: actor_host} = _actor_info, object) do
|
|
|
|
if Enum.member?(Pleroma.Config.get([:mrf_simple, :reject]), actor_host) do
|
|
|
|
{:reject, nil}
|
|
|
|
else
|
|
|
|
{:ok, object}
|
|
|
|
end
|
2018-04-14 11:31:12 +00:00
|
|
|
end
|
|
|
|
|
2018-11-06 18:34:57 +00:00
|
|
|
defp check_media_removal(
|
|
|
|
%{host: actor_host} = _actor_info,
|
2018-12-04 18:28:38 +00:00
|
|
|
%{"type" => "Create", "object" => %{"attachment" => child_attachment}} = object
|
2018-11-06 18:34:57 +00:00
|
|
|
)
|
2018-11-07 09:40:24 +00:00
|
|
|
when length(child_attachment) > 0 do
|
2018-11-06 18:34:57 +00:00
|
|
|
object =
|
|
|
|
if Enum.member?(Pleroma.Config.get([:mrf_simple, :media_removal]), actor_host) do
|
|
|
|
child_object = Map.delete(object["object"], "attachment")
|
|
|
|
Map.put(object, "object", child_object)
|
|
|
|
else
|
|
|
|
object
|
|
|
|
end
|
2018-09-10 01:06:44 +00:00
|
|
|
|
|
|
|
{:ok, object}
|
2018-04-14 11:31:12 +00:00
|
|
|
end
|
|
|
|
|
2018-11-06 18:34:57 +00:00
|
|
|
defp check_media_removal(_actor_info, object), do: {:ok, object}
|
2018-09-10 00:53:37 +00:00
|
|
|
|
2018-09-10 01:06:44 +00:00
|
|
|
defp check_media_nsfw(
|
2018-11-06 18:34:57 +00:00
|
|
|
%{host: actor_host} = _actor_info,
|
2018-09-10 01:06:44 +00:00
|
|
|
%{
|
|
|
|
"type" => "Create",
|
|
|
|
"object" => %{"attachment" => child_attachment} = child_object
|
|
|
|
} = object
|
|
|
|
)
|
2018-11-06 18:34:57 +00:00
|
|
|
when length(child_attachment) > 0 do
|
|
|
|
object =
|
|
|
|
if Enum.member?(Pleroma.Config.get([:mrf_simple, :media_nsfw]), actor_host) do
|
|
|
|
tags = (child_object["tag"] || []) ++ ["nsfw"]
|
|
|
|
child_object = Map.put(child_object, "tags", tags)
|
|
|
|
child_object = Map.put(child_object, "sensitive", true)
|
|
|
|
Map.put(object, "object", child_object)
|
|
|
|
else
|
|
|
|
object
|
|
|
|
end
|
|
|
|
|
2018-09-10 01:06:44 +00:00
|
|
|
{:ok, object}
|
2018-04-14 11:31:12 +00:00
|
|
|
end
|
|
|
|
|
2018-11-06 18:34:57 +00:00
|
|
|
defp check_media_nsfw(_actor_info, object), do: {:ok, object}
|
2018-04-14 11:31:12 +00:00
|
|
|
|
2018-11-06 18:34:57 +00:00
|
|
|
defp check_ftl_removal(%{host: actor_host} = _actor_info, object) do
|
2018-09-10 01:06:44 +00:00
|
|
|
object =
|
2018-11-06 18:34:57 +00:00
|
|
|
with true <-
|
|
|
|
Enum.member?(
|
|
|
|
Pleroma.Config.get([:mrf_simple, :federated_timeline_removal]),
|
|
|
|
actor_host
|
|
|
|
),
|
2018-11-07 09:40:24 +00:00
|
|
|
user <- User.get_cached_by_ap_id(object["actor"]),
|
2018-11-06 18:34:57 +00:00
|
|
|
true <- "https://www.w3.org/ns/activitystreams#Public" in object["to"],
|
|
|
|
true <- user.follower_address in object["cc"] do
|
2018-09-10 01:06:44 +00:00
|
|
|
to =
|
|
|
|
List.delete(object["to"], "https://www.w3.org/ns/activitystreams#Public") ++
|
|
|
|
[user.follower_address]
|
|
|
|
|
|
|
|
cc =
|
|
|
|
List.delete(object["cc"], user.follower_address) ++
|
|
|
|
["https://www.w3.org/ns/activitystreams#Public"]
|
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("to", to)
|
|
|
|
|> Map.put("cc", cc)
|
|
|
|
else
|
2018-11-06 18:34:57 +00:00
|
|
|
_ -> object
|
2018-09-10 01:06:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
{:ok, object}
|
2018-04-14 11:31:12 +00:00
|
|
|
end
|
|
|
|
|
2018-05-10 16:34:09 +00:00
|
|
|
@impl true
|
2018-04-14 11:31:12 +00:00
|
|
|
def filter(object) do
|
|
|
|
actor_info = URI.parse(object["actor"])
|
|
|
|
|
2018-06-19 21:23:37 +00:00
|
|
|
with {:ok, object} <- check_accept(actor_info, object),
|
|
|
|
{:ok, object} <- check_reject(actor_info, object),
|
2018-04-14 11:31:12 +00:00
|
|
|
{:ok, object} <- check_media_removal(actor_info, object),
|
|
|
|
{:ok, object} <- check_media_nsfw(actor_info, object),
|
|
|
|
{:ok, object} <- check_ftl_removal(actor_info, object) do
|
|
|
|
{:ok, object}
|
|
|
|
else
|
2018-05-04 20:59:01 +00:00
|
|
|
_e -> {:reject, nil}
|
2018-04-14 11:31:12 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|