2020-10-16 00:32:20 +02:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-10-16 00:32:20 +02:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.InstancesController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
|
|
|
alias Pleroma.Instances
|
|
|
|
|
2020-10-16 01:13:52 +02:00
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
|
|
|
|
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.PleromaInstancesOperation
|
2020-10-16 00:32:20 +02:00
|
|
|
|
|
|
|
def show(conn, _params) do
|
|
|
|
unreachable =
|
|
|
|
Instances.get_consistently_unreachable()
|
2020-10-21 21:40:37 +02:00
|
|
|
|> Map.new(fn {host, date} -> {host, to_string(date)} end)
|
2020-10-16 00:32:20 +02:00
|
|
|
|
|
|
|
json(conn, %{"unreachable" => unreachable})
|
|
|
|
end
|
|
|
|
end
|