1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.Metadata.Utils do
8 alias Pleroma.Formatter
10 alias Pleroma.Web.MediaProxy
12 def scrub_html_and_truncate(%{data: %{"content" => content}} = object) do
14 # html content comes from DB already encoded, decode first and scrub after
15 |> HtmlEntities.decode()
16 |> String.replace(~r/<br\s?\/?>/, " ")
17 |> Activity.HTML.get_cached_stripped_html_for_activity(object, "metadata")
18 |> Emoji.Formatter.demojify()
19 |> HtmlEntities.decode()
20 |> Formatter.truncate()
23 def scrub_html_and_truncate(content, max_length \\ 200) when is_binary(content) do
26 |> Emoji.Formatter.demojify()
27 |> HtmlEntities.decode()
28 |> Formatter.truncate(max_length)
31 def scrub_html(content) when is_binary(content) do
33 # html content comes from DB already encoded, decode first and scrub after
34 |> HtmlEntities.decode()
35 |> String.replace(~r/<br\s?\/?>/, " ")
39 def scrub_html(content), do: content
41 def attachment_url(url) do
42 MediaProxy.preview_url(url)
45 def user_name_string(user) do
48 "(@#{user.nickname}@#{Pleroma.Web.Endpoint.host()})"
54 @spec fetch_media_type(list(String.t()), String.t()) :: String.t() | nil
55 def fetch_media_type(supported_types, media_type) do
56 Enum.find(supported_types, fn support_type ->
57 String.starts_with?(media_type, support_type)