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