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 @safe_mention_regex ~r/^(\s*(?<mentions>(@.+?\s+){1,})+)(?<rest>.*)/s
10 @link_regex ~r"((?:http(s)?:\/\/)?[\w.-]+(?:\.[\w\.-]+)+[\w\-\._~%:/?#[\]@!\$&'\(\)\*\+,;=.]+)|[0-9a-z+\-\.]+:[0-9a-z$-_.+!*'(),]+"ui
11 @markdown_characters_regex ~r/(`|\*|_|{|}|[|]|\(|\)|#|\+|-|\.|!)/
13 @auto_linker_config hashtag: true,
14 hashtag_handler: &Pleroma.Formatter.hashtag_handler/4,
16 mention_handler: &Pleroma.Formatter.mention_handler/4,
19 def escape_mention_handler("@" <> nickname = mention, buffer, _, _) do
20 case User.get_cached_by_nickname(nickname) do
22 # escape markdown characters with `\\`
23 # (we don't want something like @user__name to be parsed by markdown)
24 String.replace(mention, @markdown_characters_regex, "\\\\\\1")
31 def mention_handler("@" <> nickname, buffer, opts, acc) do
32 case User.get_cached_by_nickname(nickname) do
33 %User{id: id} = user ->
34 ap_id = get_ap_id(user)
35 nickname_text = get_nickname_text(nickname, opts)
38 ~s(<span class="h-card"><a data-user="#{id}" class="u-url mention" href="#{ap_id}" rel="ugc">@<span>#{
42 {link, %{acc | mentions: MapSet.put(acc.mentions, {"@" <> nickname, user})}}
49 def hashtag_handler("#" <> tag = tag_text, _buffer, _opts, acc) do
50 tag = String.downcase(tag)
51 url = "#{Pleroma.Web.base_url()}/tag/#{tag}"
52 link = ~s(<a class="hashtag" data-tag="#{tag}" href="#{url}" rel="tag ugc">#{tag_text}</a>)
54 {link, %{acc | tags: MapSet.put(acc.tags, {tag_text, tag})}}
58 Parses a text and replace plain text links with HTML. Returns a tuple with a result text, mentions, and hashtags.
60 If the 'safe_mention' option is given, only consecutive mentions at the start the post are actually mentioned.
62 @spec linkify(String.t(), keyword()) ::
63 {String.t(), [{String.t(), User.t()}], [{String.t(), String.t()}]}
64 def linkify(text, options \\ []) do
65 options = options ++ @auto_linker_config
67 if options[:safe_mention] && Regex.named_captures(@safe_mention_regex, text) do
68 %{"mentions" => mentions, "rest" => rest} = Regex.named_captures(@safe_mention_regex, text)
69 acc = %{mentions: MapSet.new(), tags: MapSet.new()}
71 {text_mentions, %{mentions: mentions}} = AutoLinker.link_map(mentions, acc, options)
72 {text_rest, %{tags: tags}} = AutoLinker.link_map(rest, acc, options)
74 {text_mentions <> text_rest, MapSet.to_list(mentions), MapSet.to_list(tags)}
76 acc = %{mentions: MapSet.new(), tags: MapSet.new()}
77 {text, %{mentions: mentions, tags: tags}} = AutoLinker.link_map(text, acc, options)
79 {text, MapSet.to_list(mentions), MapSet.to_list(tags)}
84 Escapes a special characters in mention names.
86 def mentions_escape(text, options \\ []) do
88 Keyword.merge(options,
91 mention_handler: &Pleroma.Formatter.escape_mention_handler/4
94 if options[:safe_mention] && Regex.named_captures(@safe_mention_regex, text) do
95 %{"mentions" => mentions, "rest" => rest} = Regex.named_captures(@safe_mention_regex, text)
96 AutoLinker.link(mentions, options) <> AutoLinker.link(rest, options)
98 AutoLinker.link(text, options)
102 def html_escape({text, mentions, hashtags}, type) do
103 {html_escape(text, type), mentions, hashtags}
106 def html_escape(text, "text/html") do
107 HTML.filter_tags(text)
110 def html_escape(text, "text/plain") do
111 Regex.split(@link_regex, text, include_captures: true)
112 |> Enum.map_every(2, fn chunk ->
113 {:safe, part} = Phoenix.HTML.html_escape(chunk)
119 def truncate(text, max_length \\ 200, omission \\ "...") do
120 # Remove trailing whitespace
121 text = Regex.replace(~r/([^ \t\r\n])([ \t]+$)/u, text, "\\g{1}")
123 if String.length(text) < max_length do
126 length_with_omission = max_length - String.length(omission)
127 String.slice(text, 0, length_with_omission) <> omission
131 defp get_ap_id(%User{source_data: %{"url" => url}}) when is_binary(url), do: url
132 defp get_ap_id(%User{ap_id: ap_id}), do: ap_id
134 defp get_nickname_text(nickname, %{mentions_format: :full}), do: User.full_nickname(nickname)
135 defp get_nickname_text(nickname, _), do: User.local_nickname(nickname)