8990bef543aae34ba0662e0b20e80d80fd765586
[akkoma] / lib / pleroma / web / metadata / utils.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 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) when is_binary(content) do
34 content
35 |> scrub_html
36 |> Emoji.Formatter.demojify()
37 |> HtmlEntities.decode()
38 |> Formatter.truncate(max_length)
39 end
40
41 def scrub_html(content) when is_binary(content) do
42 content
43 # html content comes from DB already encoded, decode first and scrub after
44 |> HtmlEntities.decode()
45 |> String.replace(~r/<br\s?\/?>/, " ")
46 |> HTML.strip_tags()
47 end
48
49 def scrub_html(content), do: content
50
51 def user_name_string(user) do
52 "#{user.name} " <>
53 if user.local do
54 "(@#{user.nickname}@#{Pleroma.Web.Endpoint.host()})"
55 else
56 "(@#{user.nickname})"
57 end
58 end
59
60 @spec fetch_media_type(list(String.t()), String.t()) :: String.t() | nil
61 def fetch_media_type(supported_types, media_type) do
62 Enum.find(supported_types, fn support_type ->
63 String.starts_with?(media_type, support_type)
64 end)
65 end
66 end