2019-01-28 06: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/>
|
2019-01-28 06:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.RichMedia.Helpers do
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Activity
|
2019-06-25 19:25:37 +00:00
|
|
|
alias Pleroma.Config
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.HTML
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Object
|
2019-01-28 06:04:54 +00:00
|
|
|
alias Pleroma.Web.RichMedia.Parser
|
|
|
|
|
2020-09-04 16:05:08 +00:00
|
|
|
@options [
|
2020-08-03 17:37:31 +00:00
|
|
|
pool: :media,
|
2020-09-04 16:05:08 +00:00
|
|
|
max_body: 2_000_000,
|
|
|
|
recv_timeout: 2_000
|
2020-08-03 17:37:31 +00:00
|
|
|
]
|
|
|
|
|
2020-06-09 17:49:24 +00:00
|
|
|
@spec validate_page_url(URI.t() | binary()) :: :ok | :error
|
2019-03-04 18:38:23 +00:00
|
|
|
defp validate_page_url(page_url) when is_binary(page_url) do
|
2020-09-04 16:05:08 +00:00
|
|
|
validate_tld = Config.get([Pleroma.Formatter, :validate_tld])
|
2019-06-26 03:24:12 +00:00
|
|
|
|
2019-06-25 19:25:37 +00:00
|
|
|
page_url
|
2020-07-21 22:18:17 +00:00
|
|
|
|> Linkify.Parser.url?(validate_tld: validate_tld)
|
2019-06-25 19:25:37 +00:00
|
|
|
|> parse_uri(page_url)
|
|
|
|
end
|
2019-06-18 13:08:18 +00:00
|
|
|
|
2020-06-09 17:49:24 +00:00
|
|
|
defp validate_page_url(%URI{host: host, scheme: "https", authority: authority})
|
|
|
|
when is_binary(authority) do
|
2019-06-25 12:52:53 +00:00
|
|
|
cond do
|
2019-06-25 19:25:37 +00:00
|
|
|
host in Config.get([:rich_media, :ignore_hosts], []) ->
|
2019-06-25 12:52:53 +00:00
|
|
|
:error
|
|
|
|
|
2019-06-25 19:25:37 +00:00
|
|
|
get_tld(host) in Config.get([:rich_media, :ignore_tld], []) ->
|
|
|
|
:error
|
2019-06-25 12:52:53 +00:00
|
|
|
|
|
|
|
true ->
|
2019-06-25 19:25:37 +00:00
|
|
|
:ok
|
2019-03-04 18:38:23 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp validate_page_url(_), do: :error
|
2019-02-24 19:13:46 +00:00
|
|
|
|
2019-06-25 19:25:37 +00:00
|
|
|
defp parse_uri(true, url) do
|
|
|
|
url
|
|
|
|
|> URI.parse()
|
|
|
|
|> validate_page_url
|
|
|
|
end
|
|
|
|
|
|
|
|
defp parse_uri(_, _), do: :error
|
|
|
|
|
|
|
|
defp get_tld(host) do
|
|
|
|
host
|
|
|
|
|> String.split(".")
|
|
|
|
|> Enum.reverse()
|
|
|
|
|> hd
|
|
|
|
end
|
|
|
|
|
2020-07-30 17:57:26 +00:00
|
|
|
def fetch_data_for_object(object) do
|
2019-06-25 19:25:37 +00:00
|
|
|
with true <- Config.get([:rich_media, :enabled]),
|
2020-07-30 17:57:26 +00:00
|
|
|
{:ok, page_url} <-
|
2020-09-05 09:37:27 +00:00
|
|
|
HTML.extract_first_external_url_from_object(object),
|
2019-02-24 19:13:46 +00:00
|
|
|
:ok <- validate_page_url(page_url),
|
2019-01-28 06:04:54 +00:00
|
|
|
{:ok, rich_media} <- Parser.parse(page_url) do
|
|
|
|
%{page_url: page_url, rich_media: rich_media}
|
|
|
|
else
|
|
|
|
_ -> %{}
|
|
|
|
end
|
|
|
|
end
|
2019-03-23 02:26:49 +00:00
|
|
|
|
2020-07-30 17:57:26 +00:00
|
|
|
def fetch_data_for_activity(%Activity{data: %{"type" => "Create"}} = activity) do
|
|
|
|
with true <- Config.get([:rich_media, :enabled]),
|
2021-01-04 12:38:31 +00:00
|
|
|
%Object{} = object <- Object.normalize(activity, fetch: false) do
|
2020-07-30 17:57:26 +00:00
|
|
|
fetch_data_for_object(object)
|
|
|
|
else
|
|
|
|
_ -> %{}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-23 02:26:49 +00:00
|
|
|
def fetch_data_for_activity(_), do: %{}
|
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 =
|
|
|
|
case Pleroma.HTTP.head(url, headers, @options) do
|
|
|
|
# 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
|
|
|
|
|
|
|
|
with :ok <- head_check, do: Pleroma.HTTP.get(url, headers, @options)
|
|
|
|
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
|
|
|
|
|
|
|
|
@max_body @options[:max_body]
|
|
|
|
defp check_content_length(headers) do
|
|
|
|
case List.keyfind(headers, "content-length", 0) do
|
|
|
|
{_, maybe_content_length} ->
|
|
|
|
case Integer.parse(maybe_content_length) do
|
|
|
|
{content_length, ""} when content_length <= @max_body -> :ok
|
|
|
|
{_, ""} -> {:error, :body_too_large}
|
|
|
|
_ -> :ok
|
|
|
|
end
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
:ok
|
|
|
|
end
|
2020-08-03 17:37:31 +00:00
|
|
|
end
|
2019-01-28 06:04:54 +00:00
|
|
|
end
|