2020-10-15 22:32:20 +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 22:32:20 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.InstancesController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
|
|
|
alias Pleroma.Instances
|
|
|
|
|
2020-10-15 23:13:52 +00:00
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
|
|
|
|
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.PleromaInstancesOperation
|
2020-10-15 22:32:20 +00:00
|
|
|
|
|
|
|
def show(conn, _params) do
|
|
|
|
unreachable =
|
|
|
|
Instances.get_consistently_unreachable()
|
2020-10-21 19:40:37 +00:00
|
|
|
|> Map.new(fn {host, date} -> {host, to_string(date)} end)
|
2020-10-15 22:32:20 +00:00
|
|
|
|
|
|
|
json(conn, %{"unreachable" => unreachable})
|
|
|
|
end
|
|
|
|
end
|