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

73 lines
2.0 KiB
Elixir
Raw Normal View History

2018-05-02 19:31:42 +00:00
defmodule Pleroma.Web.Nodeinfo.NodeinfoController do
use Pleroma.Web, :controller
alias Pleroma.Stats
alias Pleroma.Web
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 19:31:42 +00:00
}
]
}
json(conn, response)
end
# Schema definition: https://github.com/jhass/nodeinfo/blob/master/schemas/2.0/schema.json
def nodeinfo(conn, %{"version" => "2.0"}) do
2018-07-12 06:00:55 +00:00
instance = Application.get_env(:pleroma, :instance)
media_proxy = Application.get_env(:pleroma, :media_proxy)
suggestions = Application.get_env(:pleroma, :suggestions)
stats = Stats.get_stats()
2018-05-02 19:31:42 +00:00
response = %{
version: "2.0",
software: %{
name: "pleroma",
2018-07-12 06:00:55 +00:00
version: Keyword.get(instance, :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: %{
total: stats.user_count || 0
},
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),
nodeDescription: Keyword.get(instance, :description),
mediaProxy: Keyword.get(media_proxy, :enabled),
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),
web: Keyword.get(suggestions, :web, "")
2018-07-18 04:36:20 +00:00
}
2018-05-03 08:52:20 +00:00
}
2018-05-02 19:31:42 +00:00
}
conn
|> put_resp_header(
"content-type",
"application/json; profile=http://nodeinfo.diaspora.software/ns/schema/2.0#; charset=utf-8"
)
|> 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