summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/activity_pub/mrf/user_allow_list_policy.ex
blob: 65b371bf385e2bc3f133aeb3c80ec2fc65280425 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.ActivityPub.MRF.UserAllowListPolicy do
  alias Pleroma.Config

  @moduledoc "Accept-list of users from specified instances"
  @behaviour Pleroma.Web.ActivityPub.MRF

  defp filter_by_list(object, []), do: {:ok, object}

  defp filter_by_list(%{"actor" => actor} = object, allow_list) do
    if actor in allow_list do
      {:ok, object}
    else
      {:reject, "[UserAllowListPolicy] #{actor} not in the list"}
    end
  end

  @impl true
  def filter(%{"actor" => actor} = object) do
    actor_info = URI.parse(actor)

    allow_list =
      Config.get(
        [:mrf_user_allowlist, actor_info.host],
        []
      )

    filter_by_list(object, allow_list)
  end

  def filter(object), do: {:ok, object}

  @impl true
  def describe do
    mrf_user_allowlist =
      Config.get([:mrf_user_allowlist], [])
      |> Enum.into(%{}, fn {k, v} -> {k, length(v)} end)

    {:ok, %{mrf_user_allowlist: mrf_user_allowlist}}
  end

  # TODO: change way of getting settings on `lib/pleroma/web/activity_pub/mrf/user_allow_list_policy.ex:18` to use `hosts` subkey
  # @impl true
  # def config_description do
  #   %{
  #     key: :mrf_user_allowlist,
  #     related_policy: "Pleroma.Web.ActivityPub.MRF.UserAllowListPolicy",
  #     description: "Accept-list of users from specified instances",
  #     children: [
  #       %{
  #         key: :hosts,
  #         type: :map,
  #         description:
  #           "The keys in this section are the domain names that the policy should apply to." <>
  #             " Each key should be assigned a list of users that should be allowed " <>
  #             "through by their ActivityPub ID",
  #         suggestions: [%{"example.org" => ["https://example.org/users/admin"]}]
  #       }
  #     ]
  #   }
  # end
end