2019-01-28 19:59:36 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-01-01 20:26:40 +00:00
|
|
|
defmodule Pleroma.Web.RichMedia.Parser do
|
2019-01-13 00:06:50 +00:00
|
|
|
@parsers [
|
|
|
|
Pleroma.Web.RichMedia.Parsers.OGP,
|
|
|
|
Pleroma.Web.RichMedia.Parsers.TwitterCard,
|
|
|
|
Pleroma.Web.RichMedia.Parsers.OEmbed
|
|
|
|
]
|
2019-01-01 20:26:40 +00:00
|
|
|
|
2019-02-10 21:37:51 +00:00
|
|
|
@hackney_options [
|
|
|
|
pool: :media,
|
|
|
|
recv_timeout: 2_000,
|
2019-04-11 17:16:15 +00:00
|
|
|
max_body: 2_000_000,
|
|
|
|
with_body: true
|
2019-02-10 21:37:51 +00:00
|
|
|
]
|
|
|
|
|
2019-01-26 16:26:11 +00:00
|
|
|
def parse(nil), do: {:error, "No URL provided"}
|
|
|
|
|
2019-06-06 20:59:51 +00:00
|
|
|
if Pleroma.Config.get(:env) == :test do
|
2019-01-04 23:50:54 +00:00
|
|
|
def parse(url), do: parse_url(url)
|
|
|
|
else
|
2019-01-26 16:26:11 +00:00
|
|
|
def parse(url) do
|
2019-01-28 20:19:07 +00:00
|
|
|
try do
|
|
|
|
Cachex.fetch!(:rich_media_cache, url, fn _ ->
|
|
|
|
{:commit, parse_url(url)}
|
|
|
|
end)
|
|
|
|
rescue
|
|
|
|
e ->
|
|
|
|
{:error, "Cachex error: #{inspect(e)}"}
|
2019-01-26 16:26:11 +00:00
|
|
|
end
|
|
|
|
end
|
2019-01-04 23:50:54 +00:00
|
|
|
end
|
2019-01-01 20:26:40 +00:00
|
|
|
|
2019-01-04 23:50:54 +00:00
|
|
|
defp parse_url(url) do
|
2019-01-27 12:21:05 +00:00
|
|
|
try do
|
2019-02-10 21:37:51 +00:00
|
|
|
{:ok, %Tesla.Env{body: html}} = Pleroma.HTTP.get(url, [], adapter: @hackney_options)
|
2019-01-04 23:23:47 +00:00
|
|
|
|
2019-05-30 21:03:31 +00:00
|
|
|
html
|
|
|
|
|> maybe_parse()
|
|
|
|
|> clean_parsed_data()
|
|
|
|
|> check_parsed_data()
|
2019-01-27 12:21:05 +00:00
|
|
|
rescue
|
2019-01-28 20:19:07 +00:00
|
|
|
e ->
|
|
|
|
{:error, "Parsing error: #{inspect(e)}"}
|
2019-01-27 12:21:05 +00:00
|
|
|
end
|
2019-01-02 14:02:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_parse(html) do
|
|
|
|
Enum.reduce_while(@parsers, %{}, fn parser, acc ->
|
2019-01-01 20:26:40 +00:00
|
|
|
case parser.parse(html, acc) do
|
|
|
|
{:ok, data} -> {:halt, data}
|
|
|
|
{:error, _msg} -> {:cont, acc}
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
2019-01-02 14:02:50 +00:00
|
|
|
|
2019-01-31 16:03:56 +00:00
|
|
|
defp check_parsed_data(%{title: title} = data) when is_binary(title) and byte_size(title) > 0 do
|
2019-01-28 20:31:43 +00:00
|
|
|
{:ok, data}
|
2019-01-02 14:02:50 +00:00
|
|
|
end
|
|
|
|
|
2019-01-31 16:03:56 +00:00
|
|
|
defp check_parsed_data(data) do
|
2019-01-28 20:31:43 +00:00
|
|
|
{:error, "Found metadata was invalid or incomplete: #{inspect(data)}"}
|
2019-01-02 14:02:50 +00:00
|
|
|
end
|
2019-01-31 16:03:56 +00:00
|
|
|
|
|
|
|
defp clean_parsed_data(data) do
|
|
|
|
data
|
2019-02-05 20:50:57 +00:00
|
|
|
|> Enum.reject(fn {key, val} ->
|
|
|
|
with {:ok, _} <- Jason.encode(%{key => val}) do
|
|
|
|
false
|
|
|
|
else
|
2019-01-31 16:03:56 +00:00
|
|
|
_ -> true
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|> Map.new()
|
|
|
|
end
|
2019-01-01 20:26:40 +00:00
|
|
|
end
|