2019-01-28 06:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-02 20:38:50 +00:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2019-01-28 06:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.RichMedia.Helpers do
|
2024-02-11 21:11:52 +00:00
|
|
|
alias Pleroma.Config
|
2019-05-13 02:02:00 +00:00
|
|
|
|
2020-08-03 17:37:31 +00:00
|
|
|
def rich_media_get(url) do
|
|
|
|
headers = [{"user-agent", Pleroma.Application.user_agent() <> "; Bot"}]
|
|
|
|
|
2020-09-14 11:45:58 +00:00
|
|
|
head_check =
|
2024-02-11 21:11:52 +00:00
|
|
|
case Pleroma.HTTP.head(url, headers, http_options()) do
|
2020-09-14 11:45:58 +00:00
|
|
|
# If the HEAD request didn't reach the server for whatever reason,
|
|
|
|
# we assume the GET that comes right after won't either
|
|
|
|
{:error, _} = e ->
|
|
|
|
e
|
|
|
|
|
|
|
|
{:ok, %Tesla.Env{status: 200, headers: headers}} ->
|
|
|
|
with :ok <- check_content_type(headers),
|
|
|
|
:ok <- check_content_length(headers),
|
|
|
|
do: :ok
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
2024-02-11 21:11:52 +00:00
|
|
|
with :ok <- head_check, do: Pleroma.HTTP.get(url, headers, http_options())
|
2020-09-14 11:45:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp check_content_type(headers) do
|
|
|
|
case List.keyfind(headers, "content-type", 0) do
|
|
|
|
{_, content_type} ->
|
|
|
|
case Plug.Conn.Utils.media_type(content_type) do
|
|
|
|
{:ok, "text", "html", _} -> :ok
|
|
|
|
_ -> {:error, {:content_type, content_type}}
|
|
|
|
end
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp check_content_length(headers) do
|
2024-02-11 21:11:52 +00:00
|
|
|
max_body = Keyword.get(http_options(), :max_body)
|
|
|
|
|
2020-09-14 11:45:58 +00:00
|
|
|
case List.keyfind(headers, "content-length", 0) do
|
|
|
|
{_, maybe_content_length} ->
|
|
|
|
case Integer.parse(maybe_content_length) do
|
2024-02-11 21:11:52 +00:00
|
|
|
{content_length, ""} when content_length <= max_body -> :ok
|
2020-09-14 11:45:58 +00:00
|
|
|
{_, ""} -> {:error, :body_too_large}
|
|
|
|
_ -> :ok
|
|
|
|
end
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
:ok
|
|
|
|
end
|
2020-08-03 17:37:31 +00:00
|
|
|
end
|
2024-02-11 21:11:52 +00:00
|
|
|
|
2024-05-08 02:11:19 +00:00
|
|
|
defp http_options do
|
2024-02-11 21:11:52 +00:00
|
|
|
[
|
|
|
|
pool: :media,
|
2024-02-11 21:53:21 +00:00
|
|
|
max_body: Config.get([:rich_media, :max_body], 5_000_000)
|
2024-02-11 21:11:52 +00:00
|
|
|
]
|
|
|
|
end
|
2019-01-28 06:04:54 +00:00
|
|
|
end
|