2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 08:41:47 -07:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 13:04:54 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-11-30 22:26:59 -07:00
|
|
|
defmodule Pleroma.HTTP.Connection do
|
2018-12-04 07:48:55 -07:00
|
|
|
@moduledoc """
|
|
|
|
Connection for http-requests.
|
|
|
|
"""
|
|
|
|
|
2018-12-05 19:23:15 -07:00
|
|
|
@hackney_options [
|
|
|
|
timeout: 10000,
|
2018-12-05 19:38:33 -07:00
|
|
|
recv_timeout: 20000,
|
|
|
|
follow_redirect: true
|
2018-12-05 19:23:15 -07:00
|
|
|
]
|
2018-12-02 06:58:38 -07:00
|
|
|
@adapter Application.get_env(:tesla, :adapter)
|
2018-11-30 22:26:59 -07:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Configure a client connection
|
|
|
|
|
|
|
|
# Returns
|
|
|
|
|
|
|
|
Tesla.Env.client
|
|
|
|
"""
|
|
|
|
@spec new(Keyword.t()) :: Tesla.Env.client()
|
|
|
|
def new(opts \\ []) do
|
2018-12-02 06:58:38 -07:00
|
|
|
Tesla.client([], {@adapter, hackney_options(opts)})
|
2018-11-30 22:26:59 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
# fetch Hackney options
|
|
|
|
#
|
2018-12-09 02:12:48 -07:00
|
|
|
defp hackney_options(opts) do
|
2018-11-30 22:26:59 -07:00
|
|
|
options = Keyword.get(opts, :adapter, [])
|
|
|
|
@hackney_options ++ options
|
|
|
|
end
|
|
|
|
end
|