2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:44:49 +00:00
|
|
|
# Copyright © 2017-2020 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 """
|
2020-02-11 07:12:57 +00:00
|
|
|
Wrapper for `Tesla.request/2`.
|
2018-12-04 14:51:49 +00:00
|
|
|
"""
|
|
|
|
|
2018-12-01 05:26:59 +00:00
|
|
|
alias Pleroma.HTTP.Connection
|
2020-02-11 07:12:57 +00:00
|
|
|
alias Pleroma.HTTP.Request
|
2018-12-01 05:26:59 +00:00
|
|
|
alias Pleroma.HTTP.RequestBuilder, as: Builder
|
2020-02-11 07:12:57 +00:00
|
|
|
alias Tesla.Client
|
|
|
|
alias Tesla.Env
|
|
|
|
|
|
|
|
require Logger
|
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 """
|
2020-02-11 07:12:57 +00:00
|
|
|
Performs GET request.
|
|
|
|
|
|
|
|
See `Pleroma.HTTP.request/5`
|
|
|
|
"""
|
|
|
|
@spec get(Request.url() | nil, Request.headers(), keyword()) ::
|
|
|
|
nil | {:ok, Env.t()} | {:error, any()}
|
|
|
|
def get(url, headers \\ [], options \\ [])
|
|
|
|
def get(nil, _, _), do: nil
|
|
|
|
def get(url, headers, options), do: request(:get, url, "", headers, options)
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Performs POST request.
|
|
|
|
|
|
|
|
See `Pleroma.HTTP.request/5`
|
|
|
|
"""
|
|
|
|
@spec post(Request.url(), String.t(), Request.headers(), keyword()) ::
|
|
|
|
{:ok, Env.t()} | {:error, any()}
|
|
|
|
def post(url, body, headers \\ [], options \\ []),
|
|
|
|
do: request(:post, url, body, headers, options)
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Builds and performs http request.
|
2018-12-04 14:51:49 +00:00
|
|
|
|
|
|
|
# Arguments:
|
|
|
|
`method` - :get, :post, :put, :delete
|
2020-02-11 07:12:57 +00:00
|
|
|
`url` - full url
|
|
|
|
`body` - request body
|
2018-12-04 14:51:49 +00:00
|
|
|
`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
|
|
|
"""
|
2020-02-11 07:12:57 +00:00
|
|
|
@spec request(atom(), Request.url(), String.t(), Request.headers(), keyword()) ::
|
|
|
|
{:ok, Env.t()} | {:error, any()}
|
|
|
|
def request(method, url, body, headers, options) when is_binary(url) do
|
2020-03-03 12:11:48 +00:00
|
|
|
uri = URI.parse(url)
|
2020-03-12 15:28:54 +00:00
|
|
|
adapter_opts = Connection.options(uri, options[:adapter] || [])
|
2020-03-03 12:11:48 +00:00
|
|
|
options = put_in(options[:adapter], adapter_opts)
|
2020-03-12 15:28:54 +00:00
|
|
|
params = options[:params] || []
|
2020-03-03 12:11:48 +00:00
|
|
|
request = build_request(method, headers, options, url, body, params)
|
|
|
|
|
|
|
|
adapter = Application.get_env(:tesla, :adapter)
|
|
|
|
client = Tesla.client([Tesla.Middleware.FollowRedirects], adapter)
|
|
|
|
|
|
|
|
pid = Process.whereis(adapter_opts[:pool])
|
|
|
|
|
|
|
|
pool_alive? =
|
|
|
|
if adapter == Tesla.Adapter.Gun && pid do
|
|
|
|
Process.alive?(pid)
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
request_opts =
|
|
|
|
adapter_opts
|
|
|
|
|> Enum.into(%{})
|
|
|
|
|> Map.put(:env, Pleroma.Config.get([:env]))
|
|
|
|
|> Map.put(:pool_alive?, pool_alive?)
|
|
|
|
|
|
|
|
response = request(client, request, request_opts)
|
|
|
|
|
|
|
|
Connection.after_request(adapter_opts)
|
|
|
|
|
|
|
|
response
|
2020-02-11 07:12:57 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@spec request(Client.t(), keyword(), map()) :: {:ok, Env.t()} | {:error, any()}
|
2020-03-05 14:31:06 +00:00
|
|
|
def request(%Client{} = client, request, %{env: :test}), do: request(client, request)
|
2020-02-11 07:12:57 +00:00
|
|
|
|
2020-03-05 14:31:06 +00:00
|
|
|
def request(%Client{} = client, request, %{body_as: :chunks}), do: request(client, request)
|
2020-02-11 07:12:57 +00:00
|
|
|
|
2020-03-05 14:31:06 +00:00
|
|
|
def request(%Client{} = client, request, %{pool_alive?: false}), do: request(client, request)
|
2020-02-11 07:12:57 +00:00
|
|
|
|
|
|
|
def request(%Client{} = client, request, %{pool: pool, timeout: timeout}) do
|
2020-03-03 14:27:56 +00:00
|
|
|
:poolboy.transaction(
|
|
|
|
pool,
|
|
|
|
&Pleroma.Pool.Request.execute(&1, client, request, timeout),
|
|
|
|
timeout
|
|
|
|
)
|
2018-08-24 20:01:13 +00:00
|
|
|
end
|
|
|
|
|
2020-03-05 14:31:06 +00:00
|
|
|
@spec request(Client.t(), keyword()) :: {:ok, Env.t()} | {:error, any()}
|
|
|
|
def request(client, request), do: Tesla.request(client, request)
|
2017-12-30 16:35:53 +00:00
|
|
|
|
2020-02-11 07:12:57 +00:00
|
|
|
defp build_request(method, headers, options, url, body, params) do
|
|
|
|
Builder.new()
|
|
|
|
|> Builder.method(method)
|
|
|
|
|> Builder.headers(headers)
|
|
|
|
|> Builder.opts(options)
|
|
|
|
|> Builder.url(url)
|
|
|
|
|> Builder.add_param(:body, :body, body)
|
|
|
|
|> Builder.add_param(:query, :query, params)
|
|
|
|
|> Builder.convert_to_keyword()
|
2017-12-30 16:35:53 +00:00
|
|
|
end
|
|
|
|
end
|