2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 15:44:49 -07:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 13:04:54 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-06-07 22:00:57 -06:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.RejectNonPublic do
|
2019-05-05 20:28:04 -06:00
|
|
|
@moduledoc "Rejects non-public (followers-only, direct) activities"
|
2019-07-09 23:12:21 -06:00
|
|
|
|
|
|
|
alias Pleroma.Config
|
|
|
|
alias Pleroma.User
|
|
|
|
|
2018-06-07 22:00:57 -06:00
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF
|
|
|
|
|
2019-07-28 20:43:19 -06:00
|
|
|
require Pleroma.Constants
|
2019-07-09 23:12:21 -06:00
|
|
|
|
2018-06-07 23:10:11 -06:00
|
|
|
@impl true
|
2018-09-09 19:13:38 -06:00
|
|
|
def filter(%{"type" => "Create"} = object) do
|
|
|
|
user = User.get_cached_by_ap_id(object["actor"])
|
2018-06-07 22:00:57 -06:00
|
|
|
|
2018-09-09 19:13:38 -06:00
|
|
|
# Determine visibility
|
|
|
|
visibility =
|
|
|
|
cond do
|
2019-07-28 20:43:19 -06:00
|
|
|
Pleroma.Constants.as_public() in object["to"] -> "public"
|
|
|
|
Pleroma.Constants.as_public() in object["cc"] -> "unlisted"
|
2018-09-09 19:13:38 -06:00
|
|
|
user.follower_address in object["to"] -> "followers"
|
|
|
|
true -> "direct"
|
|
|
|
end
|
2018-06-10 17:40:51 -06:00
|
|
|
|
2019-07-09 23:12:21 -06:00
|
|
|
policy = Config.get(:mrf_rejectnonpublic)
|
|
|
|
|
|
|
|
cond do
|
|
|
|
visibility in ["public", "unlisted"] ->
|
|
|
|
{:ok, object}
|
2018-11-06 11:34:57 -07:00
|
|
|
|
2019-07-09 23:12:21 -06:00
|
|
|
visibility == "followers" and Keyword.get(policy, :allow_followersonly) ->
|
2018-09-09 19:13:38 -06:00
|
|
|
{:ok, object}
|
|
|
|
|
2019-07-09 23:12:21 -06:00
|
|
|
visibility == "direct" and Keyword.get(policy, :allow_direct) ->
|
2018-09-09 19:13:38 -06:00
|
|
|
{:ok, object}
|
|
|
|
|
2019-07-09 23:12:21 -06:00
|
|
|
true ->
|
2020-07-13 07:47:13 -06:00
|
|
|
{:reject, "[RejectNonPublic] visibility: #{visibility}"}
|
2018-06-07 22:00:57 -06:00
|
|
|
end
|
|
|
|
end
|
2018-09-09 19:13:38 -06:00
|
|
|
|
|
|
|
@impl true
|
|
|
|
def filter(object), do: {:ok, object}
|
2019-08-13 15:52:54 -06:00
|
|
|
|
|
|
|
@impl true
|
2019-08-14 12:53:18 -06:00
|
|
|
def describe,
|
2020-07-09 09:53:51 -06:00
|
|
|
do: {:ok, %{mrf_rejectnonpublic: Config.get(:mrf_rejectnonpublic) |> Enum.into(%{})}}
|
2020-11-10 09:18:53 -07:00
|
|
|
|
|
|
|
@impl true
|
|
|
|
def config_description do
|
|
|
|
%{
|
|
|
|
key: :mrf_rejectnonpublic,
|
|
|
|
related_policy: "Pleroma.Web.ActivityPub.MRF.RejectNonPublic",
|
|
|
|
description: "RejectNonPublic drops posts with non-public visibility settings.",
|
|
|
|
label: "MRF Reject Non Public",
|
|
|
|
children: [
|
|
|
|
%{
|
|
|
|
key: :allow_followersonly,
|
|
|
|
label: "Allow followers-only",
|
|
|
|
type: :boolean,
|
|
|
|
description: "Whether to allow followers-only posts"
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
key: :allow_direct,
|
|
|
|
type: :boolean,
|
|
|
|
description: "Whether to allow direct messages"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
end
|
2018-06-07 22:00:57 -06:00
|
|
|
end
|