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
|
|
|
|
|
2017-12-30 09:35:53 -07:00
|
|
|
defmodule Pleroma.HTTP do
|
2018-12-04 07:51:49 -07:00
|
|
|
@moduledoc """
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2018-11-30 22:26:59 -07:00
|
|
|
alias Pleroma.HTTP.Connection
|
|
|
|
alias Pleroma.HTTP.RequestBuilder, as: Builder
|
2018-08-24 14:01:13 -06:00
|
|
|
|
2018-12-29 02:48:54 -07:00
|
|
|
@type t :: __MODULE__
|
|
|
|
|
2018-12-04 07:48:55 -07:00
|
|
|
@doc """
|
|
|
|
Builds and perform http request.
|
2018-12-04 07:51:49 -07:00
|
|
|
|
|
|
|
# Arguments:
|
|
|
|
`method` - :get, :post, :put, :delete
|
|
|
|
`url`
|
|
|
|
`body`
|
|
|
|
`headers` - a keyworld list of headers, e.g. `[{"content-type", "text/plain"}]`
|
|
|
|
`options` - custom, per-request middleware or adapter options
|
|
|
|
|
|
|
|
# Returns:
|
|
|
|
`{:ok, %Tesla.Env{}}` or `{:error, error}`
|
|
|
|
|
2018-12-04 07:48:55 -07:00
|
|
|
"""
|
2018-08-24 14:01:13 -06:00
|
|
|
def request(method, url, body \\ "", headers \\ [], options \\ []) do
|
2019-03-07 16:18:59 -07:00
|
|
|
try do
|
|
|
|
options =
|
|
|
|
process_request_options(options)
|
|
|
|
|> process_sni_options(url)
|
|
|
|
|
|
|
|
params = Keyword.get(options, :params, [])
|
|
|
|
|
|
|
|
%{}
|
|
|
|
|> Builder.method(method)
|
|
|
|
|> Builder.headers(headers)
|
|
|
|
|> Builder.opts(options)
|
|
|
|
|> Builder.url(url)
|
|
|
|
|> Builder.add_param(:body, :body, body)
|
|
|
|
|> Builder.add_param(:query, :query, params)
|
|
|
|
|> Enum.into([])
|
2019-03-07 16:32:58 -07:00
|
|
|
|> (&Tesla.request(Connection.new(options), &1)).()
|
2019-03-07 16:18:59 -07:00
|
|
|
rescue
|
|
|
|
e ->
|
|
|
|
{:error, e}
|
|
|
|
catch
|
|
|
|
:exit, e ->
|
|
|
|
{:error, e}
|
|
|
|
end
|
2018-08-24 14:01:13 -06:00
|
|
|
end
|
|
|
|
|
2018-12-04 04:01:39 -07:00
|
|
|
defp process_sni_options(options, nil), do: options
|
2018-12-04 07:48:55 -07:00
|
|
|
|
2018-08-24 14:01:13 -06:00
|
|
|
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 09:35:53 -07:00
|
|
|
|
2018-10-26 00:38:08 -06:00
|
|
|
def process_request_options(options) do
|
2019-07-12 14:52:26 -06:00
|
|
|
Keyword.merge(Pleroma.HTTP.Connection.hackney_options([]), options)
|
2017-12-30 09:35:53 -07:00
|
|
|
end
|
2018-08-24 14:01:13 -06:00
|
|
|
|
2018-12-04 07:51:49 -07:00
|
|
|
@doc """
|
|
|
|
Performs GET request.
|
|
|
|
|
|
|
|
See `Pleroma.HTTP.request/5`
|
|
|
|
"""
|
2018-11-30 22:26:59 -07:00
|
|
|
def get(url, headers \\ [], options \\ []),
|
|
|
|
do: request(:get, url, "", headers, options)
|
2018-08-24 14:01:13 -06:00
|
|
|
|
2018-12-04 07:51:49 -07:00
|
|
|
@doc """
|
|
|
|
Performs POST request.
|
|
|
|
|
|
|
|
See `Pleroma.HTTP.request/5`
|
|
|
|
"""
|
2018-08-24 14:01:13 -06:00
|
|
|
def post(url, body, headers \\ [], options \\ []),
|
|
|
|
do: request(:post, url, body, headers, options)
|
2017-12-30 09:35:53 -07:00
|
|
|
end
|