2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 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
|
|
|
|
|
|
|
|
alias Pleroma.Web
|
2020-05-12 15:08:00 +00:00
|
|
|
alias Pleroma.Web.Nodeinfo.Nodeinfo
|
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
|
|
|
# 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
|
2020-05-12 15:08:00 +00:00
|
|
|
def nodeinfo(conn, %{"version" => version}) do
|
|
|
|
case Nodeinfo.get_nodeinfo(version) do
|
|
|
|
{:error, :missing} ->
|
|
|
|
render_error(conn, :not_found, "Nodeinfo schema version not handled")
|
|
|
|
|
|
|
|
node_info ->
|
|
|
|
conn
|
|
|
|
|> put_resp_header(
|
|
|
|
"content-type",
|
|
|
|
"application/json; profile=http://nodeinfo.diaspora.software/ns/schema/2.0#; charset=utf-8"
|
|
|
|
)
|
|
|
|
|> json(node_info)
|
|
|
|
end
|
2018-05-02 19:31:42 +00:00
|
|
|
end
|
|
|
|
end
|