mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2024-11-16 01:26:14 +01:00
MRF: add describe() for gathering and describing the MRF configuration
This commit is contained in:
parent
943da97d6b
commit
694bc43123
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user