Merge branch 'list-users' into 'develop'
[akkoma] / lib / pleroma / web / activity_pub / mrf.ex
index d43a8760b9246afbd6ce2de62c9a4136e80b0249..263ed11af84a73a88c5539b98c19a4367faede43 100644 (file)
@@ -39,16 +39,32 @@ defmodule Pleroma.Web.ActivityPub.MRF do
   @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)}
+    {:ok, policy_configs} =
+      policies
+      |> Enum.reduce({:ok, %{}}, fn
+        policy, {:ok, data} ->
+          {:ok, policy_data} = policy.describe()
+          {:ok, Map.merge(data, policy_data)}
 
-      _, error ->
-        error
-    end)
+        _, error ->
+          error
+      end)
+
+    mrf_policies =
+      get_policies()
+      |> Enum.map(fn policy -> to_string(policy) |> String.split(".") |> List.last() end)
+
+    exclusions = Pleroma.Config.get([:instance, :mrf_transparency_exclusions])
+
+    base =
+      %{
+        mrf_policies: mrf_policies,
+        exclusions: length(exclusions) > 0
+      }
+      |> Map.merge(policy_configs)
+
+    {:ok, base}
   end
 
-  def describe(), do: get_policies() |> describe()
+  def describe, do: get_policies() |> describe()
 end