pleroma/lib/pleroma/http/connection.ex

41 lines
920 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 16:41:47 +01:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.HTTP.Connection do
2018-12-04 15:48:55 +01:00
@moduledoc """
Connection for http-requests.
"""
@hackney_options [
connect_timeout: 10_000,
recv_timeout: 20_000,
follow_redirect: true,
pool: :federation
]
2018-12-02 14:58:38 +01:00
@adapter Application.get_env(:tesla, :adapter)
@doc """
Configure a client connection
# Returns
Tesla.Env.client
"""
@spec new(Keyword.t()) :: Tesla.Env.client()
def new(opts \\ []) do
2018-12-02 14:58:38 +01:00
Tesla.client([], {@adapter, hackney_options(opts)})
end
# fetch Hackney options
#
2018-12-09 10:12:48 +01:00
defp hackney_options(opts) do
options = Keyword.get(opts, :adapter, [])
adapter_options = Pleroma.Config.get([:http, :adapter], [])
@hackney_options
|> Keyword.merge(adapter_options)
|> Keyword.merge(options)
end
end