2019-01-28 12:59:36 -07: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 13:26:40 -07:00
|
|
|
defmodule Pleroma.Web.RichMedia.Parser do
|
2019-01-12 17:06:50 -07:00
|
|
|
@parsers [
|
|
|
|
Pleroma.Web.RichMedia.Parsers.OGP,
|
|
|
|
Pleroma.Web.RichMedia.Parsers.TwitterCard,
|
|
|
|
Pleroma.Web.RichMedia.Parsers.OEmbed
|
|
|
|
]
|
2019-01-01 13:26:40 -07:00
|
|
|
|
2019-01-26 09:26:11 -07:00
|
|
|
def parse(nil), do: {:error, "No URL provided"}
|
|
|
|
|
2019-01-04 16:50:54 -07:00
|
|
|
if Mix.env() == :test do
|
|
|
|
def parse(url), do: parse_url(url)
|
|
|
|
else
|
2019-01-26 09:26:11 -07:00
|
|
|
def parse(url) do
|
2019-01-28 13:19:07 -07: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 09:26:11 -07:00
|
|
|
end
|
|
|
|
end
|
2019-01-04 16:50:54 -07:00
|
|
|
end
|
2019-01-01 13:26:40 -07:00
|
|
|
|
2019-01-04 16:50:54 -07:00
|
|
|
defp parse_url(url) do
|
2019-01-27 05:21:05 -07:00
|
|
|
try do
|
2019-01-30 04:38:38 -07:00
|
|
|
{:ok, %Tesla.Env{body: html}} = Pleroma.HTTP.get(url, [], pool: :media)
|
2019-01-04 16:23:47 -07:00
|
|
|
|
2019-01-27 05:21:05 -07:00
|
|
|
html |> maybe_parse() |> get_parsed_data()
|
|
|
|
rescue
|
2019-01-28 13:19:07 -07:00
|
|
|
e ->
|
|
|
|
{:error, "Parsing error: #{inspect(e)}"}
|
2019-01-27 05:21:05 -07:00
|
|
|
end
|
2019-01-02 07:02:50 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_parse(html) do
|
|
|
|
Enum.reduce_while(@parsers, %{}, fn parser, acc ->
|
2019-01-01 13:26:40 -07:00
|
|
|
case parser.parse(html, acc) do
|
|
|
|
{:ok, data} -> {:halt, data}
|
|
|
|
{:error, _msg} -> {:cont, acc}
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
2019-01-02 07:02:50 -07:00
|
|
|
|
2019-01-28 13:31:43 -07:00
|
|
|
defp get_parsed_data(%{title: title} = data) when is_binary(title) and byte_size(title) > 0 do
|
|
|
|
{:ok, data}
|
2019-01-02 07:02:50 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
defp get_parsed_data(data) do
|
2019-01-28 13:31:43 -07:00
|
|
|
{:error, "Found metadata was invalid or incomplete: #{inspect(data)}"}
|
2019-01-02 07:02:50 -07:00
|
|
|
end
|
2019-01-01 13:26:40 -07:00
|
|
|
end
|