diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2020-04-02 14:47:17 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-04-02 14:47:17 +0300 |
commit | dbcfac11b45b367185a3b18a2db3e3fb07e8f20d (patch) | |
tree | 039254a94616f04f4ea00e893bf0fb66dc06d9e8 /lib/pleroma/gun/api.ex | |
parent | dfd2c741849e9afaf35e3ddbecbb50feb47f5d22 (diff) | |
parent | fd932b14a7e7335a91a2acc2d6dd6fba7e2e90b3 (diff) | |
download | pleroma-dbcfac11b45b367185a3b18a2db3e3fb07e8f20d.tar.gz |
Merge branch 'develop' into issue/1276
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 |