pleroma/lib/pleroma/gun.ex

32 lines
1021 B
Elixir
Raw Normal View History

2020-02-11 08:12:57 +01:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
2020-02-11 08:12:57 +01:00
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Gun do
2020-03-03 17:24:14 +01:00
@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
2020-02-11 08:12:57 +01:00
2020-03-06 19:04:18 +01:00
@api Pleroma.Config.get([Pleroma.Gun], Pleroma.Gun.API)
defp api, do: @api
2020-03-03 17:24:14 +01:00
def open(host, port, opts), do: api().open(host, port, opts)
2020-02-11 08:12:57 +01:00
2020-03-03 17:24:14 +01:00
def info(pid), do: api().info(pid)
2020-02-11 08:12:57 +01:00
2020-03-03 17:24:14 +01:00
def close(pid), do: api().close(pid)
2020-02-11 08:12:57 +01:00
2020-03-03 17:24:14 +01:00
def await_up(pid, timeout \\ 5_000), do: api().await_up(pid, timeout)
2020-02-11 08:12:57 +01:00
2020-03-03 17:24:14 +01:00
def connect(pid, opts), do: api().connect(pid, opts)
2020-02-11 08:12:57 +01:00
2020-03-03 17:24:14 +01:00
def await(pid, ref), do: api().await(pid, ref)
2020-02-11 08:12:57 +01:00
2020-03-03 17:24:14 +01:00
def set_owner(pid, owner), do: api().set_owner(pid, owner)
2020-02-11 08:12:57 +01:00
end