summaryrefslogtreecommitdiff
path: root/lib/pleroma/gun.ex
blob: f9c828facf2561c4af2265d62b4ac81b1abe25d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Gun do
  @callback open(charlist(), pos_integer(), map()) :: {:ok, pid()}
  @callback info(pid()) :: map()
  @callback close(pid()) :: :ok
  @callback await_up(pid, pos_integer()) :: {:ok, atom()} | {:error, atom()}
  @callback connect(pid(), map()) :: reference()
  @callback await(pid(), reference()) :: {:response, :fin, 200, []}
  @callback set_owner(pid(), pid()) :: :ok

  @api Pleroma.Config.get([Pleroma.Gun], Pleroma.Gun.API)

  defp api, do: @api

  def open(host, port, opts), do: api().open(host, port, opts)

  def info(pid), do: api().info(pid)

  def close(pid), do: api().close(pid)

  def await_up(pid, timeout \\ 5_000), do: api().await_up(pid, timeout)

  def connect(pid, opts), do: api().connect(pid, opts)

  def await(pid, ref), do: api().await(pid, ref)

  def set_owner(pid, owner), do: api().set_owner(pid, owner)
end