akkoma/lib/pleroma/web/activity_pub/mrf/reject_non_public.ex

32 lines
793 B
Elixir
Raw Normal View History

defmodule Pleroma.Web.ActivityPub.MRF.RejectNonPublic do
alias Pleroma.User
@behaviour Pleroma.Web.ActivityPub.MRF
def filter(object) do
if object["type"] == "Create" do
user = User.get_by_ap_id(object["actor"])
public = "https://www.w3.org/ns/activitystreams#Public"
#Determine visibility
visibility =
cond do
2018-06-08 05:03:24 +00:00
public in object["to"] -> "public"
public in object["cc"] -> "unlisted"
user.follower_address in object["to"] -> "followers"
true -> "direct"
end
2018-06-08 04:55:58 +00:00
{flag, object_out} =
case visibility do
2018-06-08 05:03:24 +00:00
"public" -> {:ok, object}
"unlisted" -> {:ok, object}
2018-06-08 04:55:58 +00:00
_ -> {:reject, nil}
end
{flag, object_out}
else
{:ok, object}
end
end
end