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