2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-05-10 16:34:09 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF do
|
2018-05-10 16:51:58 +00:00
|
|
|
@callback filter(Map.t()) :: {:ok | :reject, Map.t()}
|
2018-05-10 16:34:09 +00:00
|
|
|
|
2019-06-02 09:44:42 +00:00
|
|
|
def filter(policies, %{} = object) do
|
|
|
|
policies
|
2018-05-10 16:34:09 +00:00
|
|
|
|> Enum.reduce({:ok, object}, fn
|
2020-02-11 09:53:24 +00:00
|
|
|
policy, {:ok, object} -> policy.filter(object)
|
|
|
|
_, error -> error
|
2018-05-10 16:34:09 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2019-06-02 09:44:42 +00:00
|
|
|
def filter(%{} = object), do: get_policies() |> filter(object)
|
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
def get_policies do
|
2019-05-30 08:33:58 +00:00
|
|
|
Pleroma.Config.get([:instance, :rewrite_policy], []) |> get_policies()
|
2018-05-10 16:34:09 +00:00
|
|
|
end
|
2018-05-10 16:51:58 +00:00
|
|
|
|
|
|
|
defp get_policies(policy) when is_atom(policy), do: [policy]
|
|
|
|
defp get_policies(policies) when is_list(policies), do: policies
|
|
|
|
defp get_policies(_), do: []
|
2019-07-22 14:33:58 +00:00
|
|
|
|
|
|
|
@spec subdomains_regex([String.t()]) :: [Regex.t()]
|
|
|
|
def subdomains_regex(domains) when is_list(domains) do
|
2019-08-10 21:18:26 +00:00
|
|
|
for domain <- domains, do: ~r(^#{String.replace(domain, "*.", "(.*\\.)*")}$)i
|
2019-07-22 14:33:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@spec subdomain_match?([Regex.t()], String.t()) :: boolean()
|
|
|
|
def subdomain_match?(domains, host) do
|
|
|
|
Enum.any?(domains, fn domain -> Regex.match?(domain, host) end)
|
|
|
|
end
|
2019-08-13 21:26:24 +00:00
|
|
|
|
|
|
|
@callback describe() :: {:ok | :error, Map.t()}
|
|
|
|
|
|
|
|
def describe(policies) do
|
2019-08-13 21:52:54 +00:00
|
|
|
{:ok, policy_configs} =
|
|
|
|
policies
|
|
|
|
|> Enum.reduce({:ok, %{}}, fn
|
|
|
|
policy, {:ok, data} ->
|
|
|
|
{:ok, policy_data} = policy.describe()
|
|
|
|
{:ok, Map.merge(data, policy_data)}
|
2019-08-13 21:26:24 +00:00
|
|
|
|
2019-08-13 21:52:54 +00:00
|
|
|
_, 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,
|
2019-08-13 22:36:24 +00:00
|
|
|
exclusions: length(exclusions) > 0
|
2019-08-13 21:52:54 +00:00
|
|
|
}
|
|
|
|
|> Map.merge(policy_configs)
|
|
|
|
|
|
|
|
{:ok, base}
|
2019-08-13 21:26:24 +00:00
|
|
|
end
|
|
|
|
|
2019-08-13 22:36:24 +00:00
|
|
|
def describe, do: get_policies() |> describe()
|
2018-05-10 16:34:09 +00:00
|
|
|
end
|