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-02 19:31:42 +00:00
|
|
|
defmodule Pleroma.Web.Nodeinfo.NodeinfoController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Config
|
2018-05-02 19:31:42 +00:00
|
|
|
alias Pleroma.Stats
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.User
|
2018-05-02 19:31:42 +00:00
|
|
|
alias Pleroma.Web
|
2018-10-07 01:23:38 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.MRF
|
2018-05-02 19:31:42 +00:00
|
|
|
|
2018-11-05 14:19:03 +00:00
|
|
|
plug(Pleroma.Web.FederatingPlug)
|
|
|
|
|
2018-05-02 19:31:42 +00:00
|
|
|
def schemas(conn, _params) do
|
|
|
|
response = %{
|
|
|
|
links: [
|
2019-02-01 17:23:40 +00:00
|
|
|
%{
|
|
|
|
rel: "http://nodeinfo.diaspora.software/ns/schema/2.0",
|
|
|
|
href: Web.base_url() <> "/nodeinfo/2.0.json"
|
|
|
|
},
|
2018-05-02 19:31:42 +00:00
|
|
|
%{
|
2019-02-01 06:55:10 +00:00
|
|
|
rel: "http://nodeinfo.diaspora.software/ns/schema/2.1",
|
|
|
|
href: Web.base_url() <> "/nodeinfo/2.1.json"
|
2018-05-02 19:31:42 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
json(conn, response)
|
|
|
|
end
|
|
|
|
|
2019-02-01 17:23:40 +00:00
|
|
|
# returns a nodeinfo 2.0 map, since 2.1 just adds a repository field
|
|
|
|
# under software.
|
2019-02-03 17:44:18 +00:00
|
|
|
def raw_nodeinfo do
|
2018-07-12 06:00:55 +00:00
|
|
|
instance = Application.get_env(:pleroma, :instance)
|
|
|
|
media_proxy = Application.get_env(:pleroma, :media_proxy)
|
2018-07-17 07:56:30 +00:00
|
|
|
suggestions = Application.get_env(:pleroma, :suggestions)
|
2018-09-03 12:13:30 +00:00
|
|
|
chat = Application.get_env(:pleroma, :chat)
|
|
|
|
gopher = Application.get_env(:pleroma, :gopher)
|
2018-05-03 13:31:39 +00:00
|
|
|
stats = Stats.get_stats()
|
2018-10-05 20:32:53 +00:00
|
|
|
|
|
|
|
mrf_simple =
|
|
|
|
Application.get_env(:pleroma, :mrf_simple)
|
|
|
|
|> Enum.into(%{})
|
2018-05-03 13:31:39 +00:00
|
|
|
|
2019-02-08 09:38:24 +00:00
|
|
|
# This horror is needed to convert regex sigils to strings
|
|
|
|
mrf_keyword =
|
2019-02-08 09:48:39 +00:00
|
|
|
Application.get_env(:pleroma, :mrf_keyword, [])
|
2019-02-08 09:38:24 +00:00
|
|
|
|> Enum.map(fn {key, value} ->
|
|
|
|
{key,
|
|
|
|
Enum.map(value, fn
|
|
|
|
{pattern, replacement} ->
|
|
|
|
%{
|
|
|
|
"pattern" =>
|
|
|
|
if not is_binary(pattern) do
|
|
|
|
inspect(pattern)
|
|
|
|
else
|
|
|
|
pattern
|
|
|
|
end,
|
|
|
|
"replacement" => replacement
|
|
|
|
}
|
|
|
|
|
|
|
|
pattern ->
|
|
|
|
if not is_binary(pattern) do
|
|
|
|
inspect(pattern)
|
|
|
|
else
|
|
|
|
pattern
|
|
|
|
end
|
|
|
|
end)}
|
|
|
|
end)
|
|
|
|
|> Enum.into(%{})
|
|
|
|
|
2018-10-01 09:51:12 +00:00
|
|
|
mrf_policies =
|
2018-10-07 01:23:38 +00:00
|
|
|
MRF.get_policies()
|
|
|
|
|> Enum.map(fn policy -> to_string(policy) |> String.split(".") |> List.last() end)
|
2018-10-04 11:37:17 +00:00
|
|
|
|
|
|
|
quarantined = Keyword.get(instance, :quarantined_instances)
|
|
|
|
|
|
|
|
quarantined =
|
|
|
|
if is_list(quarantined) do
|
|
|
|
quarantined
|
2018-10-01 09:51:12 +00:00
|
|
|
else
|
2018-10-04 11:37:17 +00:00
|
|
|
[]
|
2018-10-01 09:51:12 +00:00
|
|
|
end
|
|
|
|
|
2018-09-03 14:35:51 +00:00
|
|
|
staff_accounts =
|
2019-03-04 19:14:04 +00:00
|
|
|
User.all_superusers()
|
2018-09-03 14:35:51 +00:00
|
|
|
|> Enum.map(fn u -> u.ap_id end)
|
|
|
|
|
2018-11-26 23:42:24 +00:00
|
|
|
mrf_user_allowlist =
|
|
|
|
Config.get([:mrf_user_allowlist], [])
|
|
|
|
|> Enum.into(%{}, fn {k, v} -> {k, length(v)} end)
|
|
|
|
|
2018-10-07 01:23:38 +00:00
|
|
|
federation_response =
|
2019-02-03 17:44:18 +00:00
|
|
|
if Keyword.get(instance, :mrf_transparency) do
|
2018-10-07 01:23:38 +00:00
|
|
|
%{
|
|
|
|
mrf_policies: mrf_policies,
|
|
|
|
mrf_simple: mrf_simple,
|
2019-02-08 09:38:24 +00:00
|
|
|
mrf_keyword: mrf_keyword,
|
2018-11-26 23:42:24 +00:00
|
|
|
mrf_user_allowlist: mrf_user_allowlist,
|
2018-10-07 01:23:38 +00:00
|
|
|
quarantined_instances: quarantined
|
|
|
|
}
|
|
|
|
else
|
|
|
|
%{}
|
|
|
|
end
|
|
|
|
|
2018-12-07 18:44:45 +00:00
|
|
|
features =
|
|
|
|
[
|
|
|
|
"pleroma_api",
|
|
|
|
"mastodon_api",
|
|
|
|
"mastodon_api_streaming",
|
|
|
|
if Keyword.get(media_proxy, :enabled) do
|
|
|
|
"media_proxy"
|
|
|
|
end,
|
|
|
|
if Keyword.get(gopher, :enabled) do
|
|
|
|
"gopher"
|
|
|
|
end,
|
|
|
|
if Keyword.get(chat, :enabled) do
|
|
|
|
"chat"
|
|
|
|
end,
|
|
|
|
if Keyword.get(suggestions, :enabled) do
|
|
|
|
"suggestions"
|
|
|
|
end,
|
|
|
|
if Keyword.get(instance, :allow_relay) do
|
|
|
|
"relay"
|
|
|
|
end
|
|
|
|
]
|
|
|
|
|> Enum.filter(& &1)
|
2018-09-04 16:15:02 +00:00
|
|
|
|
2019-02-01 17:23:40 +00:00
|
|
|
%{
|
|
|
|
version: "2.0",
|
2018-05-02 19:31:42 +00:00
|
|
|
software: %{
|
2019-02-01 17:40:43 +00:00
|
|
|
name: Pleroma.Application.name() |> String.downcase(),
|
|
|
|
version: Pleroma.Application.version()
|
2018-05-02 19:31:42 +00:00
|
|
|
},
|
|
|
|
protocols: ["ostatus", "activitypub"],
|
|
|
|
services: %{
|
|
|
|
inbound: [],
|
|
|
|
outbound: []
|
|
|
|
},
|
2018-07-12 06:00:55 +00:00
|
|
|
openRegistrations: Keyword.get(instance, :registrations_open),
|
2018-05-02 19:31:42 +00:00
|
|
|
usage: %{
|
|
|
|
users: %{
|
2018-05-03 13:31:39 +00:00
|
|
|
total: stats.user_count || 0
|
2018-05-02 20:36:19 +00:00
|
|
|
},
|
2018-05-03 13:31:39 +00:00
|
|
|
localPosts: stats.status_count || 0
|
2018-05-02 19:31:42 +00:00
|
|
|
},
|
2018-05-03 08:52:20 +00:00
|
|
|
metadata: %{
|
2018-07-12 06:00:55 +00:00
|
|
|
nodeName: Keyword.get(instance, :name),
|
2018-07-17 15:10:14 +00:00
|
|
|
nodeDescription: Keyword.get(instance, :description),
|
2018-07-19 08:42:00 +00:00
|
|
|
private: !Keyword.get(instance, :public, true),
|
2018-07-18 04:36:20 +00:00
|
|
|
suggestions: %{
|
|
|
|
enabled: Keyword.get(suggestions, :enabled, false),
|
|
|
|
thirdPartyEngine: Keyword.get(suggestions, :third_party_engine, ""),
|
2018-08-02 09:03:35 +00:00
|
|
|
timeout: Keyword.get(suggestions, :timeout, 5000),
|
2018-09-09 04:57:23 +00:00
|
|
|
limit: Keyword.get(suggestions, :limit, 23),
|
2018-08-02 09:03:35 +00:00
|
|
|
web: Keyword.get(suggestions, :web, "")
|
2018-09-03 14:35:51 +00:00
|
|
|
},
|
2018-09-03 14:55:42 +00:00
|
|
|
staffAccounts: staff_accounts,
|
2018-10-07 01:23:38 +00:00
|
|
|
federation: federation_response,
|
2018-09-07 00:45:26 +00:00
|
|
|
postFormats: Keyword.get(instance, :allowed_post_formats),
|
2018-10-29 20:07:52 +00:00
|
|
|
uploadLimits: %{
|
|
|
|
general: Keyword.get(instance, :upload_limit),
|
|
|
|
avatar: Keyword.get(instance, :avatar_upload_limit),
|
|
|
|
banner: Keyword.get(instance, :banner_upload_limit),
|
|
|
|
background: Keyword.get(instance, :background_upload_limit)
|
|
|
|
},
|
2018-12-14 13:38:56 +00:00
|
|
|
accountActivationRequired: Keyword.get(instance, :account_activation_required, false),
|
2018-12-14 11:13:13 +00:00
|
|
|
invitesEnabled: Keyword.get(instance, :invites_enabled, false),
|
2018-12-26 11:46:16 +00:00
|
|
|
features: features,
|
|
|
|
restrictedNicknames: Pleroma.Config.get([Pleroma.User, :restricted_nicknames])
|
2018-05-03 08:52:20 +00:00
|
|
|
}
|
2018-05-02 19:31:42 +00:00
|
|
|
}
|
2019-02-01 17:23:40 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Schema definition: https://github.com/jhass/nodeinfo/blob/master/schemas/2.0/schema.json
|
|
|
|
# and https://github.com/jhass/nodeinfo/blob/master/schemas/2.1/schema.json
|
|
|
|
def nodeinfo(conn, %{"version" => "2.0"}) do
|
|
|
|
conn
|
|
|
|
|> put_resp_header(
|
|
|
|
"content-type",
|
|
|
|
"application/json; profile=http://nodeinfo.diaspora.software/ns/schema/2.0#; charset=utf-8"
|
|
|
|
)
|
|
|
|
|> json(raw_nodeinfo())
|
|
|
|
end
|
|
|
|
|
|
|
|
def nodeinfo(conn, %{"version" => "2.1"}) do
|
|
|
|
raw_response = raw_nodeinfo()
|
|
|
|
|
|
|
|
updated_software =
|
|
|
|
raw_response
|
|
|
|
|> Map.get(:software)
|
|
|
|
|> Map.put(:repository, Pleroma.Application.repository())
|
|
|
|
|
2019-02-01 19:03:23 +00:00
|
|
|
response =
|
|
|
|
raw_response
|
|
|
|
|> Map.put(:software, updated_software)
|
|
|
|
|> Map.put(:version, "2.1")
|
2018-05-02 19:31:42 +00:00
|
|
|
|
2018-05-03 08:50:02 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_header(
|
|
|
|
"content-type",
|
2019-02-01 06:55:10 +00:00
|
|
|
"application/json; profile=http://nodeinfo.diaspora.software/ns/schema/2.1#; charset=utf-8"
|
2018-05-03 08:50:02 +00:00
|
|
|
)
|
|
|
|
|> json(response)
|
2018-05-02 19:31:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def nodeinfo(conn, _) do
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
2018-05-02 20:45:20 +00:00
|
|
|
|> json(%{error: "Nodeinfo schema version not handled"})
|
2018-05-02 19:31:42 +00:00
|
|
|
end
|
|
|
|
end
|