2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 16:41:47 +01:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-01 06:26:59 +01:00
|
|
|
defmodule Pleroma.HTTP.Connection do
|
2018-12-04 15:48:55 +01:00
|
|
|
@moduledoc """
|
|
|
|
Connection for http-requests.
|
|
|
|
"""
|
|
|
|
|
2018-12-06 03:23:15 +01:00
|
|
|
@hackney_options [
|
2019-05-21 06:58:26 +02:00
|
|
|
connect_timeout: 10_000,
|
2019-03-08 23:50:43 +01:00
|
|
|
recv_timeout: 20_000,
|
2019-01-30 12:38:38 +01:00
|
|
|
follow_redirect: true,
|
2019-07-28 22:24:39 +02:00
|
|
|
force_redirect: true,
|
2019-01-30 12:38:38 +01:00
|
|
|
pool: :federation
|
2018-12-06 03:23:15 +01:00
|
|
|
]
|
2018-12-02 14:58:38 +01:00
|
|
|
@adapter Application.get_env(:tesla, :adapter)
|
2018-12-01 06:26:59 +01:00
|
|
|
|
|
|
|
@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)})
|
2018-12-01 06:26:59 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
# fetch Hackney options
|
|
|
|
#
|
2019-07-12 22:52:26 +02:00
|
|
|
def hackney_options(opts) do
|
2018-12-01 06:26:59 +01:00
|
|
|
options = Keyword.get(opts, :adapter, [])
|
2019-03-08 23:59:10 +01:00
|
|
|
adapter_options = Pleroma.Config.get([:http, :adapter], [])
|
2019-05-28 08:49:53 +02:00
|
|
|
proxy_url = Pleroma.Config.get([:http, :proxy_url], nil)
|
2019-03-08 23:59:10 +01:00
|
|
|
|
|
|
|
@hackney_options
|
|
|
|
|> Keyword.merge(adapter_options)
|
|
|
|
|> Keyword.merge(options)
|
2019-05-28 08:49:53 +02:00
|
|
|
|> Keyword.merge(proxy: proxy_url)
|
2018-12-01 06:26:59 +01:00
|
|
|
end
|
|
|
|
end
|