2017-12-30 16:35:53 +00:00
|
|
|
defmodule Pleroma.HTTP do
|
2018-08-24 20:01:13 +00:00
|
|
|
require HTTPoison
|
|
|
|
|
|
|
|
def request(method, url, body \\ "", headers \\ [], options \\ []) do
|
|
|
|
options =
|
|
|
|
process_request_options(options)
|
|
|
|
|> process_sni_options(url)
|
|
|
|
|
|
|
|
HTTPoison.request(method, url, body, headers, options)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp process_sni_options(options, url) do
|
|
|
|
uri = URI.parse(url)
|
|
|
|
host = uri.host |> to_charlist()
|
|
|
|
|
|
|
|
case uri.scheme do
|
|
|
|
"https" -> options ++ [ssl: [server_name_indication: host]]
|
|
|
|
_ -> options
|
|
|
|
end
|
|
|
|
end
|
2017-12-30 16:35:53 +00:00
|
|
|
|
2018-10-26 06:38:08 +00:00
|
|
|
def process_request_options(options) do
|
2017-12-30 16:35:53 +00:00
|
|
|
config = Application.get_env(:pleroma, :http, [])
|
2018-01-29 15:06:16 +00:00
|
|
|
proxy = Keyword.get(config, :proxy_url, nil)
|
2018-10-26 03:06:42 +00:00
|
|
|
options = options ++ [hackney: [pool: :default]]
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-12-30 16:35:53 +00:00
|
|
|
case proxy do
|
2018-01-29 15:06:16 +00:00
|
|
|
nil -> options
|
2017-12-30 16:35:53 +00:00
|
|
|
_ -> options ++ [proxy: proxy]
|
|
|
|
end
|
|
|
|
end
|
2018-08-24 20:01:13 +00:00
|
|
|
|
|
|
|
def get(url, headers \\ [], options \\ []), do: request(:get, url, "", headers, options)
|
|
|
|
|
|
|
|
def post(url, body, headers \\ [], options \\ []),
|
|
|
|
do: request(:post, url, body, headers, options)
|
2017-12-30 16:35:53 +00:00
|
|
|
end
|