diff options
author | feld <feld@feld.me> | 2020-04-01 17:05:09 +0000 |
---|---|---|
committer | feld <feld@feld.me> | 2020-04-01 17:05:09 +0000 |
commit | ef7d2b0f11a9bf74e982b73ae4cec632f93fbebc (patch) | |
tree | 2058bf1189b7a7ba12b1a160c27a9e92f3fa28bb /lib/pleroma/gun/api.ex | |
parent | bfec45bf740f9fcfcea92bbded6bd2c146dc64c1 (diff) | |
parent | 1fcdcb12a717fa3dbd54a5c3778bd216df6449ad (diff) | |
download | pleroma-ef7d2b0f11a9bf74e982b73ae4cec632f93fbebc.tar.gz |
Merge branch 'gun' into 'develop'
Gun adapter
Closes #945
See merge request pleroma/pleroma!1861
Diffstat (limited to 'lib/pleroma/gun/api.ex')
-rw-r--r-- | lib/pleroma/gun/api.ex | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/lib/pleroma/gun/api.ex b/lib/pleroma/gun/api.ex new file mode 100644 index 000000000..f51cd7db8 --- /dev/null +++ b/lib/pleroma/gun/api.ex @@ -0,0 +1,45 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/> +# SPDX-License-Identifier: AGPL-3.0-only + +defmodule Pleroma.Gun.API do + @behaviour Pleroma.Gun + + alias Pleroma.Gun + + @gun_keys [ + :connect_timeout, + :http_opts, + :http2_opts, + :protocols, + :retry, + :retry_timeout, + :trace, + :transport, + :tls_opts, + :tcp_opts, + :socks_opts, + :ws_opts + ] + + @impl Gun + def open(host, port, opts \\ %{}), do: :gun.open(host, port, Map.take(opts, @gun_keys)) + + @impl Gun + defdelegate info(pid), to: :gun + + @impl Gun + defdelegate close(pid), to: :gun + + @impl Gun + defdelegate await_up(pid, timeout \\ 5_000), to: :gun + + @impl Gun + defdelegate connect(pid, opts), to: :gun + + @impl Gun + defdelegate await(pid, ref), to: :gun + + @impl Gun + defdelegate set_owner(pid, owner), to: :gun +end |