2019-10-02 14:13:52 +07: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 14:13:52 +07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.InstanceController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2021-03-05 15:51:29 +04:00
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
2020-05-05 17:24:16 +04:00
|
|
|
|
2021-06-08 19:14:12 -05:00
|
|
|
plug(:skip_auth when action in [:show, :peers])
|
2020-04-22 18:50:25 +03:00
|
|
|
|
2020-05-05 17:24:16 +04:00
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.InstanceOperation
|
|
|
|
|
2019-10-02 14:13:52 +07: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
|