2019-10-02 09:13:52 +02:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-10-02 09:13:52 +02:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.InstanceController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2021-03-05 12:51:29 +01:00
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
2020-05-05 15:24:16 +02:00
|
|
|
|
2021-06-09 02:14:12 +02:00
|
|
|
plug(:skip_auth when action in [:show, :peers])
|
2020-04-22 17:50:25 +02:00
|
|
|
|
2020-05-05 15:24:16 +02:00
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.InstanceOperation
|
|
|
|
|
2019-10-02 09:13:52 +02:00
|
|
|
@doc "GET /api/v1/instance"
|
|
|
|
def show(conn, _params) do
|
|
|
|
render(conn, "show.json")
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "GET /api/v1/instance/peers"
|
|
|
|
def peers(conn, _params) do
|
|
|
|
json(conn, Pleroma.Stats.get_peers())
|
|
|
|
end
|
|
|
|
end
|