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-01-26 16:26:11 +00:00
|
|
|
def parse(nil), do: {:error, "No URL provided"}
|
|
|
|
|
2019-01-04 23:50:54 +00:00
|
|
|
if Mix.env() == :test do
|
|
|
|
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-01-30 20:08:41 +00:00
|
|
|
{:ok, %Tesla.Env{body: html}} = Pleroma.HTTP.get(url, [], adapter: [pool: :media])
|
2019-01-04 23:23:47 +00:00
|
|
|
|
2019-01-31 16:03:56 +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
|
|
|
|
2019-01-31 16:19:31 +00:00
|
|
|
defp string_is_valid_unicode(data) when is_binary(data) do
|
2019-01-31 16:03:56 +00:00
|
|
|
data
|
|
|
|
|> :unicode.characters_to_binary()
|
|
|
|
|> clean_string()
|
|
|
|
end
|
|
|
|
|
2019-01-31 16:19:31 +00:00
|
|
|
defp string_is_valid_unicode(data), do: {:ok, data}
|
|
|
|
|
2019-01-31 16:03:56 +00:00
|
|
|
defp clean_string({:error, _, _}), do: {:error, "Invalid data"}
|
|
|
|
defp clean_string(data), do: {:ok, data}
|
|
|
|
|
|
|
|
defp clean_parsed_data(data) do
|
|
|
|
data
|
|
|
|
|> Enum.reject(fn {_, val} ->
|
|
|
|
case string_is_valid_unicode(val) do
|
|
|
|
{:ok, _} -> false
|
|
|
|
_ -> true
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|> Map.new()
|
|
|
|
end
|
2019-01-01 20:26:40 +00:00
|
|
|
end
|