2020-10-12 11:00:50 -06:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-12 23:49:20 -07:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-10-12 11:00:50 -06:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-03-03 08:53:44 -07:00
|
|
|
defmodule Pleroma.HTTP.AdapterHelper.Hackney do
|
|
|
|
@behaviour Pleroma.HTTP.AdapterHelper
|
2020-02-11 00:12:57 -07:00
|
|
|
|
|
|
|
@defaults [
|
|
|
|
follow_redirect: true,
|
2020-09-04 10:05:08 -06:00
|
|
|
force_redirect: true
|
2020-02-11 00:12:57 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
@spec options(keyword(), URI.t()) :: keyword()
|
|
|
|
def options(connection_opts \\ [], %URI{} = uri) do
|
2020-03-13 00:37:57 -06:00
|
|
|
proxy = Pleroma.Config.get([:http, :proxy_url])
|
2020-02-11 00:12:57 -07:00
|
|
|
|
2020-03-06 11:24:19 -07:00
|
|
|
config_opts = Pleroma.Config.get([:http, :adapter], [])
|
|
|
|
|
2020-02-11 00:12:57 -07:00
|
|
|
@defaults
|
2020-03-06 11:24:19 -07:00
|
|
|
|> Keyword.merge(config_opts)
|
2020-02-11 00:12:57 -07:00
|
|
|
|> Keyword.merge(connection_opts)
|
|
|
|
|> add_scheme_opts(uri)
|
2020-09-04 10:05:08 -06:00
|
|
|
|> maybe_add_with_body()
|
2020-03-03 08:53:44 -07:00
|
|
|
|> Pleroma.HTTP.AdapterHelper.maybe_add_proxy(proxy)
|
2020-02-11 00:12:57 -07:00
|
|
|
end
|
|
|
|
|
2020-09-04 05:24:15 -06:00
|
|
|
defp add_scheme_opts(opts, %URI{scheme: "https"}) do
|
2022-06-07 05:24:40 -06:00
|
|
|
Keyword.put(opts, :ssl_options, versions: [:"tlsv1.3", :"tlsv1.2", :"tlsv1.1", :tlsv1])
|
2020-09-04 05:24:15 -06:00
|
|
|
end
|
|
|
|
|
2020-05-30 04:59:04 -06:00
|
|
|
defp add_scheme_opts(opts, _), do: opts
|
2020-09-04 10:05:08 -06:00
|
|
|
|
|
|
|
defp maybe_add_with_body(opts) do
|
|
|
|
if opts[:max_body] do
|
|
|
|
Keyword.put(opts, :with_body, true)
|
|
|
|
else
|
|
|
|
opts
|
|
|
|
end
|
|
|
|
end
|
2020-02-11 00:12:57 -07:00
|
|
|
end
|