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.HTML do
6 alias HtmlSanitizeEx.Scrubber
8 defp get_scrubbers(scrubber) when is_atom(scrubber), do: [scrubber]
9 defp get_scrubbers(scrubbers) when is_list(scrubbers), do: scrubbers
10 defp get_scrubbers(_), do: [Pleroma.HTML.Scrubber.Default]
13 Pleroma.Config.get([:markup, :scrub_policy])
17 def filter_tags(html, nil) do
18 filter_tags(html, get_scrubbers())
21 def filter_tags(html, scrubbers) when is_list(scrubbers) do
22 Enum.reduce(scrubbers, html, fn scrubber, html ->
23 filter_tags(html, scrubber)
27 def filter_tags(html, scrubber), do: Scrubber.scrub(html, scrubber)
28 def filter_tags(html), do: filter_tags(html, nil)
29 def strip_tags(html), do: Scrubber.scrub(html, Scrubber.StripTags)
31 def get_cached_scrubbed_html_for_activity(content, scrubbers, activity, key \\ "") do
32 key = "#{key}#{generate_scrubber_signature(scrubbers)}|#{activity.id}"
34 Cachex.fetch!(:scrubber_cache, key, fn _key ->
35 ensure_scrubbed_html(content, scrubbers, activity.data["object"]["fake"] || false)
39 def get_cached_stripped_html_for_activity(content, activity, key) do
40 get_cached_scrubbed_html_for_activity(
42 HtmlSanitizeEx.Scrubber.StripTags,
48 def ensure_scrubbed_html(
53 {:commit, filter_tags(content, scrubbers)}
56 def ensure_scrubbed_html(
61 {:ignore, filter_tags(content, scrubbers)}
64 defp generate_scrubber_signature(scrubber) when is_atom(scrubber) do
65 generate_scrubber_signature([scrubber])
68 defp generate_scrubber_signature(scrubbers) do
69 Enum.reduce(scrubbers, "", fn scrubber, signature ->
70 "#{signature}#{to_string(scrubber)}"
74 def extract_first_external_url(_, nil), do: {:error, "No content"}
76 def extract_first_external_url(object, content) do
77 key = "URL|#{object.id}"
79 Cachex.fetch!(:scrubber_cache, key, fn _key ->
82 |> Floki.filter_out("a.mention")
83 |> Floki.attribute("a", "href")
86 {:commit, {:ok, result}}
91 defmodule Pleroma.HTML.Scrubber.TwitterText do
93 An HTML scrubbing policy which limits to twitter-style text. Only
94 paragraphs, breaks and links are allowed through the filter.
97 @markup Application.get_env(:pleroma, :markup)
98 @valid_schemes Pleroma.Config.get([:uri_schemes, :valid_schemes], [])
100 require HtmlSanitizeEx.Scrubber.Meta
101 alias HtmlSanitizeEx.Scrubber.Meta
103 Meta.remove_cdata_sections_before_scrub()
104 Meta.strip_comments()
107 Meta.allow_tag_with_uri_attributes("a", ["href", "data-user", "data-tag"], @valid_schemes)
109 Meta.allow_tag_with_this_attribute_values("a", "class", [
117 Meta.allow_tag_with_this_attribute_values("a", "rel", [
124 Meta.allow_tag_with_these_attributes("a", ["name", "title"])
126 # paragraphs and linebreaks
127 Meta.allow_tag_with_these_attributes("br", [])
128 Meta.allow_tag_with_these_attributes("p", [])
131 Meta.allow_tag_with_this_attribute_values("span", "class", ["h-card"])
132 Meta.allow_tag_with_these_attributes("span", [])
134 # allow inline images for custom emoji
135 @allow_inline_images Keyword.get(@markup, :allow_inline_images)
137 if @allow_inline_images do
138 # restrict img tags to http/https only, because of MediaProxy.
139 Meta.allow_tag_with_uri_attributes("img", ["src"], ["http", "https"])
141 Meta.allow_tag_with_these_attributes("img", [
149 Meta.strip_everything_not_covered()
152 defmodule Pleroma.HTML.Scrubber.Default do
153 @doc "The default HTML scrubbing policy: no "
155 require HtmlSanitizeEx.Scrubber.Meta
156 alias HtmlSanitizeEx.Scrubber.Meta
157 # credo:disable-for-previous-line
158 # No idea how to fix this one…
160 @markup Application.get_env(:pleroma, :markup)
161 @valid_schemes Pleroma.Config.get([:uri_schemes, :valid_schemes], [])
163 Meta.remove_cdata_sections_before_scrub()
164 Meta.strip_comments()
166 Meta.allow_tag_with_uri_attributes("a", ["href", "data-user", "data-tag"], @valid_schemes)
168 Meta.allow_tag_with_this_attribute_values("a", "class", [
176 Meta.allow_tag_with_this_attribute_values("a", "rel", [
183 Meta.allow_tag_with_these_attributes("a", ["name", "title"])
185 Meta.allow_tag_with_these_attributes("abbr", ["title"])
187 Meta.allow_tag_with_these_attributes("b", [])
188 Meta.allow_tag_with_these_attributes("blockquote", [])
189 Meta.allow_tag_with_these_attributes("br", [])
190 Meta.allow_tag_with_these_attributes("code", [])
191 Meta.allow_tag_with_these_attributes("del", [])
192 Meta.allow_tag_with_these_attributes("em", [])
193 Meta.allow_tag_with_these_attributes("i", [])
194 Meta.allow_tag_with_these_attributes("li", [])
195 Meta.allow_tag_with_these_attributes("ol", [])
196 Meta.allow_tag_with_these_attributes("p", [])
197 Meta.allow_tag_with_these_attributes("pre", [])
198 Meta.allow_tag_with_these_attributes("strong", [])
199 Meta.allow_tag_with_these_attributes("u", [])
200 Meta.allow_tag_with_these_attributes("ul", [])
202 Meta.allow_tag_with_this_attribute_values("span", "class", ["h-card"])
203 Meta.allow_tag_with_these_attributes("span", [])
205 @allow_inline_images Keyword.get(@markup, :allow_inline_images)
207 if @allow_inline_images do
208 # restrict img tags to http/https only, because of MediaProxy.
209 Meta.allow_tag_with_uri_attributes("img", ["src"], ["http", "https"])
211 Meta.allow_tag_with_these_attributes("img", [
219 @allow_tables Keyword.get(@markup, :allow_tables)
222 Meta.allow_tag_with_these_attributes("table", [])
223 Meta.allow_tag_with_these_attributes("tbody", [])
224 Meta.allow_tag_with_these_attributes("td", [])
225 Meta.allow_tag_with_these_attributes("th", [])
226 Meta.allow_tag_with_these_attributes("thead", [])
227 Meta.allow_tag_with_these_attributes("tr", [])
230 @allow_headings Keyword.get(@markup, :allow_headings)
232 if @allow_headings do
233 Meta.allow_tag_with_these_attributes("h1", [])
234 Meta.allow_tag_with_these_attributes("h2", [])
235 Meta.allow_tag_with_these_attributes("h3", [])
236 Meta.allow_tag_with_these_attributes("h4", [])
237 Meta.allow_tag_with_these_attributes("h5", [])
240 @allow_fonts Keyword.get(@markup, :allow_fonts)
243 Meta.allow_tag_with_these_attributes("font", ["face"])
246 Meta.strip_everything_not_covered()
249 defmodule Pleroma.HTML.Transform.MediaProxy do
250 @moduledoc "Transforms inline image URIs to use MediaProxy."
252 alias Pleroma.Web.MediaProxy
254 def before_scrub(html), do: html
256 def scrub_attribute("img", {"src", "http" <> target}) do
264 def scrub_attribute(_tag, attribute), do: attribute
266 def scrub({"img", attributes, children}) do
269 |> Enum.map(fn attr -> scrub_attribute("img", attr) end)
270 |> Enum.reject(&is_nil(&1))
272 {"img", attributes, children}
275 def scrub({:comment, _children}), do: ""
277 def scrub({tag, attributes, children}), do: {tag, attributes, children}
278 def scrub({_tag, children}), do: children
279 def scrub(text), do: text