2019-10-02 07:13:52 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-10-02 07:13:52 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.InstanceController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2021-03-05 11:51:29 +00:00
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
2020-05-05 13:24:16 +00:00
|
|
|
|
2021-06-09 00:14:12 +00:00
|
|
|
plug(:skip_auth when action in [:show, :peers])
|
2020-04-22 15:50:25 +00:00
|
|
|
|
2020-05-05 13:24:16 +00:00
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.InstanceOperation
|
|
|
|
|
2019-10-02 07:13:52 +00: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
|