MRF: add describe() for gathering and describing the MRF configuration

develop
Ariadne Conill 2019-08-13 21:26:24 +00:00
parent 943da97d6b
commit 694bc43123
1 changed files with 16 additions and 0 deletions

View File

@ -35,4 +35,20 @@ defmodule Pleroma.Web.ActivityPub.MRF do
def subdomain_match?(domains, host) do
Enum.any?(domains, fn domain -> Regex.match?(domain, host) end)
end
@callback describe() :: {:ok | :error, Map.t()}
def describe(policies) do
policies
|> Enum.reduce({:ok, %{}}, fn
policy, {:ok, data} ->
{:ok, policy_data} = policy.describe()
{:ok, Map.merge(data, policy_data)}
_, error ->
error
end)
end
def describe(), do: get_policies() |> describe()
end