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 [
|
2019-05-20 22:58:26 -06:00
|
|
|
connect_timeout: 10_000,
|
2019-03-08 15:50:43 -07:00
|
|
|
recv_timeout: 20_000,
|
2019-01-30 04:38:38 -07:00
|
|
|
follow_redirect: true,
|
2019-07-28 14:24:39 -06:00
|
|
|
force_redirect: true,
|
2019-01-30 04:38:38 -07:00
|
|
|
pool: :federation
|
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
|
|
|
|
#
|
2019-07-12 14:52:26 -06:00
|
|
|
def hackney_options(opts) do
|
2018-11-30 22:26:59 -07:00
|
|
|
options = Keyword.get(opts, :adapter, [])
|
2019-03-08 15:59:10 -07:00
|
|
|
adapter_options = Pleroma.Config.get([:http, :adapter], [])
|
2019-05-28 00:49:53 -06:00
|
|
|
proxy_url = Pleroma.Config.get([:http, :proxy_url], nil)
|
2019-03-08 15:59:10 -07:00
|
|
|
|
|
|
|
@hackney_options
|
|
|
|
|> Keyword.merge(adapter_options)
|
|
|
|
|> Keyword.merge(options)
|
2019-05-28 00:49:53 -06:00
|
|
|
|> Keyword.merge(proxy: proxy_url)
|
2018-11-30 22:26:59 -07:00
|
|
|
end
|
|
|
|
end
|