80a8be9a2d5e2db48f37d1ff809c1e565517a087
[anni] / lib / pleroma / web / metadata / utils.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.Metadata.Utils do
6   alias Pleroma.Activity
7   alias Pleroma.Emoji
8   alias Pleroma.Formatter
9   alias Pleroma.HTML
10
11   defp scrub_html_and_truncate_object_field(field, object) do
12     field
13     # html content comes from DB already encoded, decode first and scrub after
14     |> HtmlEntities.decode()
15     |> String.replace(~r/<br\s?\/?>/, " ")
16     |> Activity.HTML.get_cached_stripped_html_for_activity(object, "metadata")
17     |> Emoji.Formatter.demojify()
18     |> HtmlEntities.decode()
19     |> Formatter.truncate()
20   end
21
22   def scrub_html_and_truncate(%{data: %{"summary" => summary}} = object)
23       when is_binary(summary) and summary != "" do
24     summary
25     |> scrub_html_and_truncate_object_field(object)
26   end
27
28   def scrub_html_and_truncate(%{data: %{"content" => content}} = object) do
29     content
30     |> scrub_html_and_truncate_object_field(object)
31   end
32
33   def scrub_html_and_truncate(content, max_length \\ 200, omission \\ "...")
34       when is_binary(content) do
35     content
36     |> scrub_html
37     |> Emoji.Formatter.demojify()
38     |> HtmlEntities.decode()
39     |> Formatter.truncate(max_length, omission)
40   end
41
42   def scrub_html(content) when is_binary(content) do
43     content
44     # html content comes from DB already encoded, decode first and scrub after
45     |> HtmlEntities.decode()
46     |> String.replace(~r/<br\s?\/?>/, " ")
47     |> HTML.strip_tags()
48   end
49
50   def scrub_html(content), do: content
51
52   def user_name_string(user) do
53     "#{user.name} " <>
54       if user.local do
55         "(@#{user.nickname}@#{Pleroma.Web.Endpoint.host()})"
56       else
57         "(@#{user.nickname})"
58       end
59   end
60
61   @spec fetch_media_type(list(String.t()), String.t()) :: String.t() | nil
62   def fetch_media_type(supported_types, media_type) do
63     Enum.find(supported_types, fn support_type ->
64       String.starts_with?(media_type, support_type)
65     end)
66   end
67 end