2018-12-27 11:24:04 +01:00
|
|
|
# Portions of this file are derived from Pleroma:
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
# Upstream: https://git.pleroma.social/pleroma/pleroma/blob/develop/lib/pleroma/web/nodeinfo/nodeinfo_controller.ex
|
|
|
|
|
2018-11-06 10:30:27 +01:00
|
|
|
defmodule MobilizonWeb.NodeInfoController do
|
2018-10-11 17:37:39 +02:00
|
|
|
use MobilizonWeb, :controller
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2019-03-05 17:23:05 +01:00
|
|
|
alias Mobilizon.{Events, Users}
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2018-10-11 17:37:39 +02:00
|
|
|
@instance Application.get_env(:mobilizon, :instance)
|
2018-05-17 11:32:23 +02:00
|
|
|
|
|
|
|
def schemas(conn, _params) do
|
|
|
|
response = %{
|
|
|
|
links: [
|
|
|
|
%{
|
|
|
|
rel: "http://nodeinfo.diaspora.software/ns/schema/2.0",
|
2018-11-06 10:30:27 +01:00
|
|
|
href: MobilizonWeb.Router.Helpers.node_info_url(MobilizonWeb.Endpoint, :nodeinfo, "2.0")
|
2018-05-17 11:32:23 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
json(conn, response)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Schema definition: https://github.com/jhass/nodeinfo/blob/master/schemas/2.0/schema.json
|
2018-09-03 17:53:31 +02:00
|
|
|
def nodeinfo(conn, %{"version" => "2.0"}) do
|
2018-05-17 11:32:23 +02:00
|
|
|
response = %{
|
|
|
|
version: "2.0",
|
|
|
|
software: %{
|
2018-10-11 17:37:39 +02:00
|
|
|
name: "mobilizon",
|
2018-05-17 11:32:23 +02:00
|
|
|
version: Keyword.get(@instance, :version)
|
|
|
|
},
|
|
|
|
protocols: ["activitypub"],
|
|
|
|
services: %{
|
|
|
|
inbound: [],
|
|
|
|
outbound: []
|
|
|
|
},
|
|
|
|
openRegistrations: Keyword.get(@instance, :registrations_open),
|
|
|
|
usage: %{
|
|
|
|
users: %{
|
2019-03-05 17:23:05 +01:00
|
|
|
total: Users.count_users()
|
2018-05-17 11:32:23 +02:00
|
|
|
},
|
|
|
|
localPosts: Events.count_local_events(),
|
2018-07-27 10:45:35 +02:00
|
|
|
localComments: Events.count_local_comments()
|
2018-05-17 11:32:23 +02:00
|
|
|
},
|
|
|
|
metadata: %{
|
|
|
|
nodeName: Keyword.get(@instance, :name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_resp_header(
|
|
|
|
"content-type",
|
|
|
|
"application/json; profile=http://nodeinfo.diaspora.software/ns/schema/2.0#; charset=utf-8"
|
|
|
|
)
|
|
|
|
|> json(response)
|
|
|
|
end
|
|
|
|
|
|
|
|
def nodeinfo(conn, _) do
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Nodeinfo schema version not handled"})
|
|
|
|
end
|
|
|
|
end
|