add mrf for dropping follower-only and direct posts
This commit is contained in:
parent
595ca3bb3a
commit
f69d38e455
1 changed files with 33 additions and 0 deletions
33
lib/pleroma/web/activity_pub/mrf/reject_non_public.ex
Normal file
33
lib/pleroma/web/activity_pub/mrf/reject_non_public.ex
Normal file
|
@ -0,0 +1,33 @@
|
|||
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
|
||||
#Public
|
||||
public in object["to"] -> "p"
|
||||
#Unlisted
|
||||
public in object["cc"] -> "u"
|
||||
#Followers-only
|
||||
user.follower_address in object["to"] -> "f"
|
||||
#Direct
|
||||
true -> "d"
|
||||
end
|
||||
|
||||
case visibility do
|
||||
"p" -> {:ok, object}
|
||||
"u" -> {:ok, object}
|
||||
_ -> {:reject, nil}
|
||||
end
|
||||
else
|
||||
{:ok, object}
|
||||
end
|
||||
end
|
||||
|
||||
end
|
Loading…
Reference in a new issue