2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-12-30 16:35:53 +00:00
|
|
|
defmodule Pleroma.HTTP do
|
2018-12-04 14:51:49 +00:00
|
|
|
@moduledoc """
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2018-12-01 05:26:59 +00:00
|
|
|
alias Pleroma.HTTP.Connection
|
|
|
|
alias Pleroma.HTTP.RequestBuilder, as: Builder
|
2018-08-24 20:01:13 +00:00
|
|
|
|
2018-12-29 09:48:54 +00:00
|
|
|
@type t :: __MODULE__
|
|
|
|
|
2018-12-04 14:48:55 +00:00
|
|
|
@doc """
|
|
|
|
Builds and perform http request.
|
2018-12-04 14:51:49 +00: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 14:48:55 +00:00
|
|
|
"""
|
2018-08-24 20:01:13 +00:00
|
|
|
def request(method, url, body \\ "", headers \\ [], options \\ []) do
|
2019-03-07 23:18:59 +00: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 23:32:58 +00:00
|
|
|
|> (&Tesla.request(Connection.new(options), &1)).()
|
2019-03-07 23:18:59 +00:00
|
|
|
rescue
|
|
|
|
e ->
|
|
|
|
{:error, e}
|
|
|
|
catch
|
|
|
|
:exit, e ->
|
|
|
|
{:error, e}
|
|
|
|
end
|
2018-08-24 20:01:13 +00:00
|
|
|
end
|
|
|
|
|
2018-12-04 11:01:39 +00:00
|
|
|
defp process_sni_options(options, nil), do: options
|
2018-12-04 14:48:55 +00:00
|
|
|
|
2018-08-24 20:01:13 +00: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 16:35:53 +00:00
|
|
|
|
2018-10-26 06:38:08 +00:00
|
|
|
def process_request_options(options) do
|
2019-07-12 20:52:26 +00:00
|
|
|
Keyword.merge(Pleroma.HTTP.Connection.hackney_options([]), options)
|
2017-12-30 16:35:53 +00:00
|
|
|
end
|
2018-08-24 20:01:13 +00:00
|
|
|
|
2018-12-04 14:51:49 +00:00
|
|
|
@doc """
|
|
|
|
Performs GET request.
|
|
|
|
|
|
|
|
See `Pleroma.HTTP.request/5`
|
|
|
|
"""
|
2018-12-01 05:26:59 +00:00
|
|
|
def get(url, headers \\ [], options \\ []),
|
|
|
|
do: request(:get, url, "", headers, options)
|
2018-08-24 20:01:13 +00:00
|
|
|
|
2018-12-04 14:51:49 +00:00
|
|
|
@doc """
|
|
|
|
Performs POST request.
|
|
|
|
|
|
|
|
See `Pleroma.HTTP.request/5`
|
|
|
|
"""
|
2018-08-24 20:01:13 +00:00
|
|
|
def post(url, body, headers \\ [], options \\ []),
|
|
|
|
do: request(:post, url, body, headers, options)
|
2017-12-30 16:35:53 +00:00
|
|
|
end
|