forked from AkkomaGang/akkoma
Merge branch 'feature/nodeinfo_federation_info' into 'develop'
Nodeinfo federation info See merge request pleroma/pleroma!367
This commit is contained in:
commit
f7ba393bb9
1 changed files with 29 additions and 1 deletions
|
@ -27,6 +27,29 @@ def nodeinfo(conn, %{"version" => "2.0"}) do
|
||||||
gopher = Application.get_env(:pleroma, :gopher)
|
gopher = Application.get_env(:pleroma, :gopher)
|
||||||
stats = Stats.get_stats()
|
stats = Stats.get_stats()
|
||||||
|
|
||||||
|
mrf_simple =
|
||||||
|
Application.get_env(:pleroma, :mrf_simple)
|
||||||
|
|> Enum.into(%{})
|
||||||
|
|
||||||
|
mrf_policies = Keyword.get(instance, :rewrite_policy)
|
||||||
|
|
||||||
|
mrf_policies =
|
||||||
|
if(is_list(mrf_policies)) do
|
||||||
|
mrf_policies
|
||||||
|
|> Enum.map(fn policy -> to_string(policy) |> String.split(".") |> List.last() end)
|
||||||
|
else
|
||||||
|
[to_string(mrf_policies) |> String.split(".") |> List.last()]
|
||||||
|
end
|
||||||
|
|
||||||
|
quarantined = Keyword.get(instance, :quarantined_instances)
|
||||||
|
|
||||||
|
quarantined =
|
||||||
|
if is_list(quarantined) do
|
||||||
|
quarantined
|
||||||
|
else
|
||||||
|
[]
|
||||||
|
end
|
||||||
|
|
||||||
staff_accounts =
|
staff_accounts =
|
||||||
User.moderator_user_query()
|
User.moderator_user_query()
|
||||||
|> Repo.all()
|
|> Repo.all()
|
||||||
|
@ -64,7 +87,12 @@ def nodeinfo(conn, %{"version" => "2.0"}) do
|
||||||
},
|
},
|
||||||
staffAccounts: staff_accounts,
|
staffAccounts: staff_accounts,
|
||||||
chat: Keyword.get(chat, :enabled),
|
chat: Keyword.get(chat, :enabled),
|
||||||
gopher: Keyword.get(gopher, :enabled)
|
gopher: Keyword.get(gopher, :enabled),
|
||||||
|
federation: %{
|
||||||
|
mrf_policies: mrf_policies,
|
||||||
|
mrf_simple: mrf_simple,
|
||||||
|
quarantined_instances: quarantined
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue