pleroma/lib/pleroma/web/nodeinfo/nodeinfo_controller.ex

194 lines
5.6 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 16:41:47 +01:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-05-02 21:31:42 +02:00
defmodule Pleroma.Web.Nodeinfo.NodeinfoController do
use Pleroma.Web, :controller
2019-02-09 16:16:26 +01:00
alias Pleroma.Config
2018-05-02 21:31:42 +02:00
alias Pleroma.Stats
2019-02-09 16:16:26 +01:00
alias Pleroma.User
2018-05-02 21:31:42 +02:00
alias Pleroma.Web
alias Pleroma.Web.ActivityPub.MRF
alias Pleroma.Web.ActivityPub.MRF.KeywordPolicy
2018-05-02 21:31:42 +02:00
2018-11-05 15:19:03 +01:00
plug(Pleroma.Web.FederatingPlug)
2018-05-02 21:31:42 +02:00
def schemas(conn, _params) do
response = %{
links: [
%{
rel: "http://nodeinfo.diaspora.software/ns/schema/2.0",
href: Web.base_url() <> "/nodeinfo/2.0.json"
},
2018-05-02 21:31:42 +02:00
%{
rel: "http://nodeinfo.diaspora.software/ns/schema/2.1",
href: Web.base_url() <> "/nodeinfo/2.1.json"
2018-05-02 21:31:42 +02:00
}
]
}
json(conn, response)
end
# returns a nodeinfo 2.0 map, since 2.1 just adds a repository field
# under software.
2019-02-03 18:44:18 +01:00
def raw_nodeinfo do
2018-07-12 08:00:55 +02:00
instance = Application.get_env(:pleroma, :instance)
media_proxy = Application.get_env(:pleroma, :media_proxy)
suggestions = Application.get_env(:pleroma, :suggestions)
chat = Application.get_env(:pleroma, :chat)
gopher = Application.get_env(:pleroma, :gopher)
stats = Stats.get_stats()
mrf_simple =
Application.get_env(:pleroma, :mrf_simple)
|> Enum.into(%{})
mrf_keyword = KeywordPolicy.list()
2019-02-08 10:38:24 +01:00
mrf_policies =
MRF.get_policies()
|> Enum.map(fn policy -> to_string(policy) |> String.split(".") |> List.last() end)
2018-10-04 13:37:17 +02:00
quarantined = Keyword.get(instance, :quarantined_instances)
quarantined =
if is_list(quarantined) do
quarantined
else
2018-10-04 13:37:17 +02:00
[]
end
staff_accounts =
2019-03-04 20:14:04 +01:00
User.all_superusers()
|> Enum.map(fn u -> u.ap_id end)
2018-11-27 00:42:24 +01:00
mrf_user_allowlist =
Config.get([:mrf_user_allowlist], [])
|> Enum.into(%{}, fn {k, v} -> {k, length(v)} end)
federation_response =
2019-02-03 18:44:18 +01:00
if Keyword.get(instance, :mrf_transparency) do
%{
mrf_policies: mrf_policies,
mrf_simple: mrf_simple,
2019-02-08 10:38:24 +01:00
mrf_keyword: mrf_keyword,
2018-11-27 00:42:24 +01:00
mrf_user_allowlist: mrf_user_allowlist,
quarantined_instances: quarantined
}
else
%{}
end
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,
if Keyword.get(instance, :safe_dm_mentions) do
"safe_dm_mentions"
end
]
|> Enum.filter(& &1)
%{
version: "2.0",
2018-05-02 21:31:42 +02:00
software: %{
2019-02-01 18:40:43 +01:00
name: Pleroma.Application.name() |> String.downcase(),
version: Pleroma.Application.version()
2018-05-02 21:31:42 +02:00
},
protocols: ["ostatus", "activitypub"],
services: %{
inbound: [],
outbound: []
},
2018-07-12 08:00:55 +02:00
openRegistrations: Keyword.get(instance, :registrations_open),
2018-05-02 21:31:42 +02:00
usage: %{
users: %{
total: stats.user_count || 0
},
localPosts: stats.status_count || 0
2018-05-02 21:31:42 +02:00
},
2018-05-03 10:52:20 +02:00
metadata: %{
2018-07-12 08:00:55 +02:00
nodeName: Keyword.get(instance, :name),
nodeDescription: Keyword.get(instance, :description),
2018-07-19 10:42:00 +02:00
private: !Keyword.get(instance, :public, true),
2018-07-18 06:36:20 +02:00
suggestions: %{
enabled: Keyword.get(suggestions, :enabled, false),
thirdPartyEngine: Keyword.get(suggestions, :third_party_engine, ""),
2018-08-02 11:03:35 +02:00
timeout: Keyword.get(suggestions, :timeout, 5000),
2018-09-09 06:57:23 +02:00
limit: Keyword.get(suggestions, :limit, 23),
2018-08-02 11:03:35 +02:00
web: Keyword.get(suggestions, :web, "")
},
staffAccounts: staff_accounts,
federation: federation_response,
postFormats: Keyword.get(instance, :allowed_post_formats),
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)
},
accountActivationRequired: Keyword.get(instance, :account_activation_required, false),
invitesEnabled: Keyword.get(instance, :invites_enabled, false),
2018-12-26 12:46:16 +01:00
features: features,
restrictedNicknames: Pleroma.Config.get([Pleroma.User, :restricted_nicknames])
2018-05-03 10:52:20 +02:00
}
2018-05-02 21:31:42 +02: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())
response =
raw_response
|> Map.put(:software, updated_software)
|> Map.put(:version, "2.1")
2018-05-02 21:31:42 +02:00
conn
|> put_resp_header(
"content-type",
"application/json; profile=http://nodeinfo.diaspora.software/ns/schema/2.1#; charset=utf-8"
)
|> json(response)
2018-05-02 21:31:42 +02:00
end
def nodeinfo(conn, _) do
conn
|> put_status(404)
2018-05-02 22:45:20 +02:00
|> json(%{error: "Nodeinfo schema version not handled"})
2018-05-02 21:31:42 +02:00
end
end