2020-10-15 23: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/>
|
2020-10-15 23:13:52 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.ApiSpec.PleromaInstancesOperation do
|
|
|
|
alias OpenApiSpex.Operation
|
|
|
|
alias OpenApiSpex.Schema
|
|
|
|
|
|
|
|
def open_api_operation(action) do
|
|
|
|
operation = String.to_existing_atom("#{action}_operation")
|
|
|
|
apply(__MODULE__, operation, [])
|
|
|
|
end
|
|
|
|
|
|
|
|
def show_operation do
|
|
|
|
%Operation{
|
2021-02-03 12:38:59 +00:00
|
|
|
tags: ["Instance"],
|
|
|
|
summary: "Retrieve federation status",
|
2020-10-15 23:13:52 +00:00
|
|
|
description: "Information about instances deemed unreachable by the server",
|
|
|
|
operationId: "PleromaInstances.show",
|
|
|
|
responses: %{
|
|
|
|
200 => Operation.response("PleromaInstances", "application/json", pleroma_instances())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def pleroma_instances do
|
|
|
|
%Schema{
|
|
|
|
type: :object,
|
|
|
|
properties: %{
|
|
|
|
unreachable: %Schema{
|
|
|
|
type: :object,
|
|
|
|
properties: %{hostname: %Schema{type: :string, format: :"date-time"}}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
example: %{
|
|
|
|
"unreachable" => %{"consistently-unreachable.name" => "2020-10-14 22:07:58.216473"}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|