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
|
2019-05-12 19:15:29 +00:00
|
|
|
alias Pleroma.Web.Federator.Publisher
|
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-05-03 13:31:39 +00:00
|
|
|
stats = Stats.get_stats()
|
2018-10-05 20:32:53 +00:00
|
|
|
|
2019-05-30 08:33:58 +00:00
|
|
|
quarantined = Config.get([:instance, :quarantined_instances], [])
|
2018-10-01 09:51:12 +00:00
|
|
|
|
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-10-07 01:23:38 +00:00
|
|
|
federation_response =
|
2019-05-30 08:33:58 +00:00
|
|
|
if Config.get([:instance, :mrf_transparency]) do
|
2019-08-13 21:57:39 +00:00
|
|
|
{:ok, data} = MRF.describe()
|
|
|
|
|
|
|
|
data
|
|
|
|
|> Map.merge(%{quarantined_instances: quarantined})
|
2018-10-07 01:23:38 +00:00
|
|
|
else
|
|
|
|
%{}
|
|
|
|
end
|
2020-02-13 16:53:39 +00:00
|
|
|
|> Map.put(:enabled, Config.get([:instance, :federating]))
|
2018-10-07 01:23:38 +00:00
|
|
|
|
2018-12-07 18:44:45 +00:00
|
|
|
features =
|
|
|
|
[
|
|
|
|
"pleroma_api",
|
|
|
|
"mastodon_api",
|
|
|
|
"mastodon_api_streaming",
|
2019-06-04 06:19:44 +00:00
|
|
|
"polls",
|
2019-06-04 15:10:54 +00:00
|
|
|
"pleroma_explicit_addressing",
|
2019-09-11 19:58:55 +00:00
|
|
|
"shareable_emoji_packs",
|
2019-11-08 18:48:28 +00:00
|
|
|
"multifetch",
|
2019-05-30 08:33:58 +00:00
|
|
|
if Config.get([:media_proxy, :enabled]) do
|
2018-12-07 18:44:45 +00:00
|
|
|
"media_proxy"
|
|
|
|
end,
|
2019-05-30 08:33:58 +00:00
|
|
|
if Config.get([:gopher, :enabled]) do
|
2018-12-07 18:44:45 +00:00
|
|
|
"gopher"
|
|
|
|
end,
|
2019-05-30 08:33:58 +00:00
|
|
|
if Config.get([:chat, :enabled]) do
|
2018-12-07 18:44:45 +00:00
|
|
|
"chat"
|
|
|
|
end,
|
2019-05-30 08:33:58 +00:00
|
|
|
if Config.get([:instance, :allow_relay]) do
|
2018-12-07 18:44:45 +00:00
|
|
|
"relay"
|
2019-03-22 10:57:20 +00:00
|
|
|
end,
|
2019-05-30 08:33:58 +00:00
|
|
|
if Config.get([:instance, :safe_dm_mentions]) do
|
2019-03-22 10:57:20 +00:00
|
|
|
"safe_dm_mentions"
|
2018-12-07 18:44:45 +00:00
|
|
|
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
|
|
|
},
|
2019-05-12 19:15:29 +00:00
|
|
|
protocols: Publisher.gather_nodeinfo_protocol_names(),
|
2018-05-02 19:31:42 +00:00
|
|
|
services: %{
|
|
|
|
inbound: [],
|
|
|
|
outbound: []
|
|
|
|
},
|
2019-05-30 08:33:58 +00:00
|
|
|
openRegistrations: Config.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: %{
|
2019-05-30 08:33:58 +00:00
|
|
|
nodeName: Config.get([:instance, :name]),
|
|
|
|
nodeDescription: Config.get([:instance, :description]),
|
|
|
|
private: !Config.get([:instance, :public], true),
|
2018-07-18 04:36:20 +00:00
|
|
|
suggestions: %{
|
2020-01-27 13:21:50 +00:00
|
|
|
enabled: false
|
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,
|
2019-06-04 06:19:44 +00:00
|
|
|
pollLimits: Config.get([:instance, :poll_limits]),
|
2019-05-30 08:33:58 +00:00
|
|
|
postFormats: Config.get([:instance, :allowed_post_formats]),
|
2018-10-29 20:07:52 +00:00
|
|
|
uploadLimits: %{
|
2019-05-30 08:33:58 +00:00
|
|
|
general: Config.get([:instance, :upload_limit]),
|
|
|
|
avatar: Config.get([:instance, :avatar_upload_limit]),
|
|
|
|
banner: Config.get([:instance, :banner_upload_limit]),
|
|
|
|
background: Config.get([:instance, :background_upload_limit])
|
2018-10-29 20:07:52 +00:00
|
|
|
},
|
2019-11-15 09:51:55 +00:00
|
|
|
fieldsLimits: %{
|
|
|
|
maxFields: Config.get([:instance, :max_account_fields]),
|
|
|
|
maxRemoteFields: Config.get([:instance, :max_remote_account_fields]),
|
|
|
|
nameLength: Config.get([:instance, :account_field_name_length]),
|
|
|
|
valueLength: Config.get([:instance, :account_field_value_length])
|
|
|
|
},
|
2019-05-30 08:33:58 +00:00
|
|
|
accountActivationRequired: Config.get([:instance, :account_activation_required], false),
|
|
|
|
invitesEnabled: Config.get([:instance, :invites_enabled], false),
|
2019-07-29 16:17:40 +00:00
|
|
|
mailerEnabled: Config.get([Pleroma.Emails.Mailer, :enabled], false),
|
2018-12-26 11:46:16 +00:00
|
|
|
features: features,
|
2019-07-03 18:35:57 +00:00
|
|
|
restrictedNicknames: Config.get([Pleroma.User, :restricted_nicknames]),
|
|
|
|
skipThreadContainment: Config.get([:instance, :skip_thread_containment], false)
|
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
|
2019-07-10 09:25:58 +00:00
|
|
|
render_error(conn, :not_found, "Nodeinfo schema version not handled")
|
2018-05-02 19:31:42 +00:00
|
|
|
end
|
|
|
|
end
|