2018-06-08 04:00:57 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.RejectNonPublic do
|
|
|
|
alias Pleroma.User
|
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF
|
|
|
|
|
2018-06-08 05:10:11 +00:00
|
|
|
@impl true
|
2018-09-10 01:13:38 +00:00
|
|
|
def filter(%{"type" => "Create"} = object) do
|
|
|
|
user = User.get_cached_by_ap_id(object["actor"])
|
|
|
|
public = "https://www.w3.org/ns/activitystreams#Public"
|
2018-06-08 04:00:57 +00:00
|
|
|
|
2018-09-10 01:13:38 +00:00
|
|
|
# Determine visibility
|
|
|
|
visibility =
|
|
|
|
cond do
|
|
|
|
public in object["to"] -> "public"
|
|
|
|
public in object["cc"] -> "unlisted"
|
|
|
|
user.follower_address in object["to"] -> "followers"
|
|
|
|
true -> "direct"
|
|
|
|
end
|
2018-06-10 23:40:51 +00:00
|
|
|
|
2018-11-06 18:34:57 +00:00
|
|
|
policy = Pleroma.Config.get(:mrf_rejectnonpublic)
|
|
|
|
|
2018-09-10 01:13:38 +00:00
|
|
|
case visibility do
|
|
|
|
"public" ->
|
|
|
|
{:ok, object}
|
|
|
|
|
|
|
|
"unlisted" ->
|
|
|
|
{:ok, object}
|
|
|
|
|
|
|
|
"followers" ->
|
2018-11-06 18:34:57 +00:00
|
|
|
with true <- Keyword.get(policy, :allow_followersonly) do
|
2018-06-10 23:40:51 +00:00
|
|
|
{:ok, object}
|
2018-09-10 01:13:38 +00:00
|
|
|
else
|
|
|
|
_e -> {:reject, nil}
|
|
|
|
end
|
2018-06-10 23:40:51 +00:00
|
|
|
|
2018-09-10 01:13:38 +00:00
|
|
|
"direct" ->
|
2018-11-06 18:34:57 +00:00
|
|
|
with true <- Keyword.get(policy, :allow_direct) do
|
2018-09-10 01:13:38 +00:00
|
|
|
{:ok, object}
|
|
|
|
else
|
|
|
|
_e -> {:reject, nil}
|
|
|
|
end
|
2018-06-08 04:00:57 +00:00
|
|
|
end
|
|
|
|
end
|
2018-09-10 01:13:38 +00:00
|
|
|
|
|
|
|
@impl true
|
|
|
|
def filter(object), do: {:ok, object}
|
2018-06-08 04:00:57 +00:00
|
|
|
end
|