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-06-08 04:00:57 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.RejectNonPublic do
|
|
|
|
alias Pleroma.User
|
2019-05-06 02:28:04 +00:00
|
|
|
@moduledoc "Rejects non-public (followers-only, direct) activities"
|
2018-06-08 04:00:57 +00:00
|
|
|
@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
|