summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/pleroma_api/controllers/instances_controller.ex
blob: 6257e31534dcd8f5dd8da4d7c9532d0f243b6008 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.PleromaAPI.InstancesController do
  use Pleroma.Web, :controller

  alias Pleroma.Instances

  plug(Pleroma.Web.ApiSpec.CastAndValidate)

  defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.PleromaInstancesOperation

  def show(conn, _params) do
    unreachable =
      Instances.get_consistently_unreachable()
      |> Map.new(fn {host, date} -> {host, to_string(date)} end)

    json(conn, %{"unreachable" => unreachable})
  end
end