1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Formatter do
9 alias Pleroma.Web.MediaProxy
11 @safe_mention_regex ~r/^(\s*(?<mentions>(@.+?\s+){1,})+)(?<rest>.*)/s
12 @link_regex ~r"((?:http(s)?:\/\/)?[\w.-]+(?:\.[\w\.-]+)+[\w\-\._~%:/?#[\]@!\$&'\(\)\*\+,;=.]+)|[0-9a-z+\-\.]+:[0-9a-z$-_.+!*'(),]+"ui
13 @markdown_characters_regex ~r/(`|\*|_|{|}|[|]|\(|\)|#|\+|-|\.|!)/
15 @auto_linker_config hashtag: true,
16 hashtag_handler: &Pleroma.Formatter.hashtag_handler/4,
18 mention_handler: &Pleroma.Formatter.mention_handler/4
20 def escape_mention_handler("@" <> nickname = mention, buffer, _, _) do
21 case User.get_cached_by_nickname(nickname) do
23 # escape markdown characters with `\\`
24 # (we don't want something like @user__name to be parsed by markdown)
25 String.replace(mention, @markdown_characters_regex, "\\\\\\1")
32 def mention_handler("@" <> nickname, buffer, opts, acc) do
33 case User.get_cached_by_nickname(nickname) do
34 %User{id: id} = user ->
35 ap_id = get_ap_id(user)
36 nickname_text = get_nickname_text(nickname, opts)
39 "<span class='h-card'><a data-user='#{id}' class='u-url mention' href='#{ap_id}'>@<span>#{
43 {link, %{acc | mentions: MapSet.put(acc.mentions, {"@" <> nickname, user})}}
50 def hashtag_handler("#" <> tag = tag_text, _buffer, _opts, acc) do
51 tag = String.downcase(tag)
52 url = "#{Pleroma.Web.base_url()}/tag/#{tag}"
53 link = "<a class='hashtag' data-tag='#{tag}' href='#{url}' rel='tag'>#{tag_text}</a>"
55 {link, %{acc | tags: MapSet.put(acc.tags, {tag_text, tag})}}
59 Parses a text and replace plain text links with HTML. Returns a tuple with a result text, mentions, and hashtags.
61 If the 'safe_mention' option is given, only consecutive mentions at the start the post are actually mentioned.
63 @spec linkify(String.t(), keyword()) ::
64 {String.t(), [{String.t(), User.t()}], [{String.t(), String.t()}]}
65 def linkify(text, options \\ []) do
66 options = options ++ @auto_linker_config
68 if options[:safe_mention] && Regex.named_captures(@safe_mention_regex, text) do
69 %{"mentions" => mentions, "rest" => rest} = Regex.named_captures(@safe_mention_regex, text)
70 acc = %{mentions: MapSet.new(), tags: MapSet.new()}
72 {text_mentions, %{mentions: mentions}} = AutoLinker.link_map(mentions, acc, options)
73 {text_rest, %{tags: tags}} = AutoLinker.link_map(rest, acc, options)
75 {text_mentions <> text_rest, MapSet.to_list(mentions), MapSet.to_list(tags)}
77 acc = %{mentions: MapSet.new(), tags: MapSet.new()}
78 {text, %{mentions: mentions, tags: tags}} = AutoLinker.link_map(text, acc, options)
80 {text, MapSet.to_list(mentions), MapSet.to_list(tags)}
85 Escapes a special characters in mention names.
87 def mentions_escape(text, options \\ []) do
89 Keyword.merge(options,
92 mention_handler: &Pleroma.Formatter.escape_mention_handler/4
95 if options[:safe_mention] && Regex.named_captures(@safe_mention_regex, text) do
96 %{"mentions" => mentions, "rest" => rest} = Regex.named_captures(@safe_mention_regex, text)
97 AutoLinker.link(mentions, options) <> AutoLinker.link(rest, options)
99 AutoLinker.link(text, options)
104 emojify(text, Emoji.get_all())
107 def emojify(text, nil), do: text
109 def emojify(text, emoji, strip \\ false) do
110 Enum.reduce(emoji, text, fn emoji_data, text ->
111 emoji = HTML.strip_tags(elem(emoji_data, 0))
112 file = HTML.strip_tags(elem(emoji_data, 1))
116 "<img class='emoji' alt='#{emoji}' title='#{emoji}' src='#{MediaProxy.url(file)}' />"
121 String.replace(text, ":#{emoji}:", html) |> HTML.filter_tags()
125 def demojify(text) do
126 emojify(text, Emoji.get_all(), true)
129 def demojify(text, nil), do: text
131 @doc "Outputs a list of the emoji-shortcodes in a text"
132 def get_emoji(text) when is_binary(text) do
133 Enum.filter(Emoji.get_all(), fn {emoji, _, _} -> String.contains?(text, ":#{emoji}:") end)
136 def get_emoji(_), do: []
138 @doc "Outputs a list of the emoji-Maps in a text"
139 def get_emoji_map(text) when is_binary(text) do
141 |> Enum.reduce(%{}, fn {name, file, _group}, acc ->
142 Map.put(acc, name, "#{Pleroma.Web.Endpoint.static_url()}#{file}")
146 def get_emoji_map(_), do: []
148 def html_escape({text, mentions, hashtags}, type) do
149 {html_escape(text, type), mentions, hashtags}
152 def html_escape(text, "text/html") do
153 HTML.filter_tags(text)
156 def html_escape(text, "text/plain") do
157 Regex.split(@link_regex, text, include_captures: true)
158 |> Enum.map_every(2, fn chunk ->
159 {:safe, part} = Phoenix.HTML.html_escape(chunk)
165 def truncate(text, max_length \\ 200, omission \\ "...") do
166 # Remove trailing whitespace
167 text = Regex.replace(~r/([^ \t\r\n])([ \t]+$)/u, text, "\\g{1}")
169 if String.length(text) < max_length do
172 length_with_omission = max_length - String.length(omission)
173 String.slice(text, 0, length_with_omission) <> omission
177 defp get_ap_id(%User{info: %{source_data: %{"url" => url}}}) when is_binary(url), do: url
178 defp get_ap_id(%User{ap_id: ap_id}), do: ap_id
180 defp get_nickname_text(nickname, %{mentions_format: :full}), do: User.full_nickname(nickname)
181 defp get_nickname_text(nickname, _), do: User.local_nickname(nickname)