2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-09-09 23:29:00 +00:00
|
|
|
defmodule Pleroma.HTML do
|
2018-09-16 02:07:01 +00:00
|
|
|
defp get_scrubbers(scrubber) when is_atom(scrubber), do: [scrubber]
|
|
|
|
defp get_scrubbers(scrubbers) when is_list(scrubbers), do: scrubbers
|
|
|
|
defp get_scrubbers(_), do: [Pleroma.HTML.Scrubber.Default]
|
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
def get_scrubbers do
|
2018-11-06 18:34:57 +00:00
|
|
|
Pleroma.Config.get([:markup, :scrub_policy])
|
2018-09-16 02:07:01 +00:00
|
|
|
|> get_scrubbers
|
|
|
|
end
|
|
|
|
|
2018-09-22 01:10:53 +00:00
|
|
|
def filter_tags(html, nil) do
|
2018-12-30 19:44:17 +00:00
|
|
|
filter_tags(html, get_scrubbers())
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter_tags(html, scrubbers) when is_list(scrubbers) do
|
|
|
|
Enum.reduce(scrubbers, html, fn scrubber, html ->
|
2018-09-16 02:07:01 +00:00
|
|
|
filter_tags(html, scrubber)
|
|
|
|
end)
|
2018-09-09 23:29:00 +00:00
|
|
|
end
|
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
def filter_tags(html, scrubber) do
|
|
|
|
{:ok, content} = FastSanitize.Sanitizer.scrub(html, scrubber)
|
|
|
|
content
|
|
|
|
end
|
|
|
|
|
2018-09-22 01:10:53 +00:00
|
|
|
def filter_tags(html), do: filter_tags(html, nil)
|
2019-10-28 22:18:08 +00:00
|
|
|
def strip_tags(html), do: filter_tags(html, FastSanitize.Sanitizer.StripTags)
|
2018-12-31 07:19:48 +00:00
|
|
|
|
2019-04-30 19:52:17 +00:00
|
|
|
def get_cached_scrubbed_html_for_activity(
|
|
|
|
content,
|
|
|
|
scrubbers,
|
|
|
|
activity,
|
|
|
|
key \\ "",
|
|
|
|
callback \\ fn x -> x end
|
|
|
|
) do
|
2019-04-05 12:19:44 +00:00
|
|
|
key = "#{key}#{generate_scrubber_signature(scrubbers)}|#{activity.id}"
|
2019-10-29 17:58:54 +00:00
|
|
|
|
2019-04-01 08:55:59 +00:00
|
|
|
Cachex.fetch!(:scrubber_cache, key, fn _key ->
|
2019-04-17 09:22:32 +00:00
|
|
|
object = Pleroma.Object.normalize(activity)
|
2019-04-30 19:52:17 +00:00
|
|
|
ensure_scrubbed_html(content, scrubbers, object.data["fake"] || false, callback)
|
2019-04-01 08:55:59 +00:00
|
|
|
end)
|
2018-12-31 07:19:48 +00:00
|
|
|
end
|
|
|
|
|
2019-04-05 12:19:44 +00:00
|
|
|
def get_cached_stripped_html_for_activity(content, activity, key) do
|
|
|
|
get_cached_scrubbed_html_for_activity(
|
2019-01-04 23:25:31 +00:00
|
|
|
content,
|
2019-10-28 22:18:08 +00:00
|
|
|
FastSanitize.Sanitizer.StripTags,
|
2019-04-05 12:19:44 +00:00
|
|
|
activity,
|
2019-04-30 19:52:17 +00:00
|
|
|
key,
|
|
|
|
&HtmlEntities.decode/1
|
2019-01-04 23:25:31 +00:00
|
|
|
)
|
2018-09-22 01:10:53 +00:00
|
|
|
end
|
|
|
|
|
2018-12-31 07:19:48 +00:00
|
|
|
def ensure_scrubbed_html(
|
|
|
|
content,
|
2019-04-01 08:55:59 +00:00
|
|
|
scrubbers,
|
2019-04-30 19:52:17 +00:00
|
|
|
fake,
|
|
|
|
callback
|
2018-12-31 07:19:48 +00:00
|
|
|
) do
|
2019-04-30 19:52:17 +00:00
|
|
|
content =
|
|
|
|
content
|
|
|
|
|> filter_tags(scrubbers)
|
|
|
|
|> callback.()
|
|
|
|
|
|
|
|
if fake do
|
|
|
|
{:ignore, content}
|
|
|
|
else
|
|
|
|
{:commit, content}
|
|
|
|
end
|
2018-12-31 07:19:48 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp generate_scrubber_signature(scrubber) when is_atom(scrubber) do
|
|
|
|
generate_scrubber_signature([scrubber])
|
|
|
|
end
|
|
|
|
|
|
|
|
defp generate_scrubber_signature(scrubbers) do
|
|
|
|
Enum.reduce(scrubbers, "", fn scrubber, signature ->
|
2019-01-04 23:19:46 +00:00
|
|
|
"#{signature}#{to_string(scrubber)}"
|
2018-12-31 07:19:48 +00:00
|
|
|
end)
|
|
|
|
end
|
2018-09-22 01:10:53 +00:00
|
|
|
|
2019-02-05 05:06:17 +00:00
|
|
|
def extract_first_external_url(_, nil), do: {:error, "No content"}
|
|
|
|
|
2019-01-26 14:55:12 +00:00
|
|
|
def extract_first_external_url(object, content) do
|
|
|
|
key = "URL|#{object.id}"
|
|
|
|
|
|
|
|
Cachex.fetch!(:scrubber_cache, key, fn _key ->
|
|
|
|
result =
|
|
|
|
content
|
2019-06-18 21:31:30 +00:00
|
|
|
|> Floki.filter_out("a.mention,a.hashtag,a[rel~=\"tag\"]")
|
2019-01-26 14:55:12 +00:00
|
|
|
|> Floki.attribute("a", "href")
|
|
|
|
|> Enum.at(0)
|
|
|
|
|
2019-01-28 20:55:33 +00:00
|
|
|
{:commit, {:ok, result}}
|
2019-01-26 14:55:12 +00:00
|
|
|
end)
|
2018-09-09 23:29:00 +00:00
|
|
|
end
|
|
|
|
end
|
2018-09-10 00:05:26 +00:00
|
|
|
|
|
|
|
defmodule Pleroma.HTML.Scrubber.TwitterText do
|
|
|
|
@moduledoc """
|
|
|
|
An HTML scrubbing policy which limits to twitter-style text. Only
|
|
|
|
paragraphs, breaks and links are allowed through the filter.
|
|
|
|
"""
|
|
|
|
|
2019-02-08 16:18:44 +00:00
|
|
|
@valid_schemes Pleroma.Config.get([:uri_schemes, :valid_schemes], [])
|
2018-10-18 05:36:58 +00:00
|
|
|
|
2019-10-30 06:20:13 +00:00
|
|
|
require FastSanitize.Sanitizer.Meta
|
|
|
|
alias FastSanitize.Sanitizer.Meta
|
2018-09-10 00:05:26 +00:00
|
|
|
|
|
|
|
Meta.strip_comments()
|
|
|
|
|
|
|
|
# links
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_uri_attributes(:a, ["href", "data-user", "data-tag"], @valid_schemes)
|
2019-04-23 22:55:21 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_this_attribute_values(:a, "class", [
|
2019-04-23 22:55:21 +00:00
|
|
|
"hashtag",
|
|
|
|
"u-url",
|
|
|
|
"mention",
|
|
|
|
"u-url mention",
|
|
|
|
"mention u-url"
|
|
|
|
])
|
2018-09-10 00:05:26 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_this_attribute_values(:a, "rel", [
|
2019-03-17 13:46:46 +00:00
|
|
|
"tag",
|
|
|
|
"nofollow",
|
|
|
|
"noopener",
|
|
|
|
"noreferrer"
|
|
|
|
])
|
2018-09-10 00:05:26 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_these_attributes(:a, ["name", "title"])
|
2019-04-23 22:55:21 +00:00
|
|
|
|
2018-09-10 00:05:26 +00:00
|
|
|
# paragraphs and linebreaks
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_these_attributes(:br, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:p, [])
|
2018-09-10 00:05:26 +00:00
|
|
|
|
|
|
|
# microformats
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_this_attribute_values(:span, "class", ["h-card"])
|
|
|
|
Meta.allow_tag_with_these_attributes(:span, [])
|
2018-09-10 00:23:23 +00:00
|
|
|
|
|
|
|
# allow inline images for custom emoji
|
2019-05-30 08:33:58 +00:00
|
|
|
if Pleroma.Config.get([:markup, :allow_inline_images]) do
|
2018-10-18 14:29:31 +00:00
|
|
|
# restrict img tags to http/https only, because of MediaProxy.
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_uri_attributes(:img, ["src"], ["http", "https"])
|
2018-09-10 00:23:23 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_these_attributes(:img, [
|
2018-09-10 00:23:23 +00:00
|
|
|
"width",
|
|
|
|
"height",
|
2019-02-07 15:41:20 +00:00
|
|
|
"class",
|
2018-09-10 00:23:23 +00:00
|
|
|
"title",
|
|
|
|
"alt"
|
|
|
|
])
|
|
|
|
end
|
2018-09-22 03:19:43 +00:00
|
|
|
|
|
|
|
Meta.strip_everything_not_covered()
|
2018-09-10 00:05:26 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defmodule Pleroma.HTML.Scrubber.Default do
|
|
|
|
@doc "The default HTML scrubbing policy: no "
|
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
require FastSanitize.Sanitizer.Meta
|
|
|
|
alias FastSanitize.Sanitizer.Meta
|
2019-02-09 13:39:27 +00:00
|
|
|
# credo:disable-for-previous-line
|
|
|
|
# No idea how to fix this one…
|
2018-09-10 00:05:26 +00:00
|
|
|
|
2019-02-08 16:18:44 +00:00
|
|
|
@valid_schemes Pleroma.Config.get([:uri_schemes, :valid_schemes], [])
|
2018-10-18 05:36:58 +00:00
|
|
|
|
2018-09-10 00:05:26 +00:00
|
|
|
Meta.strip_comments()
|
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_uri_attributes(:a, ["href", "data-user", "data-tag"], @valid_schemes)
|
2019-04-23 22:55:21 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_this_attribute_values(:a, "class", [
|
2019-04-23 22:55:21 +00:00
|
|
|
"hashtag",
|
|
|
|
"u-url",
|
|
|
|
"mention",
|
|
|
|
"u-url mention",
|
|
|
|
"mention u-url"
|
|
|
|
])
|
2018-09-10 00:05:26 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_this_attribute_values(:a, "rel", [
|
2019-03-17 13:46:46 +00:00
|
|
|
"tag",
|
|
|
|
"nofollow",
|
|
|
|
"noopener",
|
2019-09-17 08:22:46 +00:00
|
|
|
"noreferrer",
|
|
|
|
"ugc"
|
2019-03-17 13:46:46 +00:00
|
|
|
])
|
2018-09-10 00:05:26 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_these_attributes(:a, ["name", "title"])
|
|
|
|
|
|
|
|
Meta.allow_tag_with_these_attributes(:abbr, ["title"])
|
|
|
|
|
|
|
|
Meta.allow_tag_with_these_attributes(:b, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:blockquote, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:br, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:code, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:del, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:em, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:i, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:li, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:ol, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:p, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:pre, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:strong, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:sub, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:sup, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:u, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:ul, [])
|
|
|
|
|
|
|
|
Meta.allow_tag_with_this_attribute_values(:span, "class", ["h-card"])
|
|
|
|
Meta.allow_tag_with_these_attributes(:span, [])
|
2019-04-23 22:55:21 +00:00
|
|
|
|
2019-05-30 08:33:58 +00:00
|
|
|
@allow_inline_images Pleroma.Config.get([:markup, :allow_inline_images])
|
2018-09-10 00:05:26 +00:00
|
|
|
|
|
|
|
if @allow_inline_images do
|
2018-10-18 14:29:31 +00:00
|
|
|
# restrict img tags to http/https only, because of MediaProxy.
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_uri_attributes(:img, ["src"], ["http", "https"])
|
2018-09-10 00:05:26 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_these_attributes(:img, [
|
2018-09-10 00:05:26 +00:00
|
|
|
"width",
|
|
|
|
"height",
|
2019-02-07 15:41:20 +00:00
|
|
|
"class",
|
2018-09-10 00:05:26 +00:00
|
|
|
"title",
|
|
|
|
"alt"
|
|
|
|
])
|
|
|
|
end
|
|
|
|
|
2019-05-30 08:33:58 +00:00
|
|
|
if Pleroma.Config.get([:markup, :allow_tables]) do
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_these_attributes(:table, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:tbody, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:td, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:th, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:thead, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:tr, [])
|
2018-09-10 00:05:26 +00:00
|
|
|
end
|
|
|
|
|
2019-05-30 08:33:58 +00:00
|
|
|
if Pleroma.Config.get([:markup, :allow_headings]) do
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_these_attributes(:h1, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:h2, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:h3, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:h4, [])
|
|
|
|
Meta.allow_tag_with_these_attributes(:h5, [])
|
2018-09-10 00:05:26 +00:00
|
|
|
end
|
|
|
|
|
2019-05-30 08:33:58 +00:00
|
|
|
if Pleroma.Config.get([:markup, :allow_fonts]) do
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_these_attributes(:font, ["face"])
|
2018-09-10 00:05:26 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
Meta.strip_everything_not_covered()
|
|
|
|
end
|
2018-09-16 02:07:32 +00:00
|
|
|
|
|
|
|
defmodule Pleroma.HTML.Transform.MediaProxy do
|
|
|
|
@moduledoc "Transforms inline image URIs to use MediaProxy."
|
|
|
|
|
|
|
|
alias Pleroma.Web.MediaProxy
|
|
|
|
|
|
|
|
def before_scrub(html), do: html
|
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
def scrub_attribute(:img, {"src", "http" <> target}) do
|
2018-09-16 02:07:32 +00:00
|
|
|
media_url =
|
|
|
|
("http" <> target)
|
|
|
|
|> MediaProxy.url()
|
|
|
|
|
|
|
|
{"src", media_url}
|
|
|
|
end
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def scrub_attribute(_tag, attribute), do: attribute
|
2018-09-16 02:07:32 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
def scrub({:img, attributes, children}) do
|
2018-09-16 02:07:32 +00:00
|
|
|
attributes =
|
|
|
|
attributes
|
2019-10-28 22:18:08 +00:00
|
|
|
|> Enum.map(fn attr -> scrub_attribute(:img, attr) end)
|
2018-09-16 02:07:32 +00:00
|
|
|
|> Enum.reject(&is_nil(&1))
|
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
{:img, attributes, children}
|
2018-09-16 02:07:32 +00:00
|
|
|
end
|
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
def scrub({:comment, _text, _children}), do: ""
|
2018-10-23 00:48:49 +00:00
|
|
|
|
2018-09-16 02:07:32 +00:00
|
|
|
def scrub({tag, attributes, children}), do: {tag, attributes, children}
|
2018-12-09 09:12:48 +00:00
|
|
|
def scrub({_tag, children}), do: children
|
2018-09-16 02:07:32 +00:00
|
|
|
def scrub(text), do: text
|
|
|
|
end
|
2019-08-06 11:21:25 +00:00
|
|
|
|
|
|
|
defmodule Pleroma.HTML.Scrubber.LinksOnly do
|
|
|
|
@moduledoc """
|
|
|
|
An HTML scrubbing policy which limits to links only.
|
|
|
|
"""
|
|
|
|
|
|
|
|
@valid_schemes Pleroma.Config.get([:uri_schemes, :valid_schemes], [])
|
|
|
|
|
2019-10-30 06:20:13 +00:00
|
|
|
require FastSanitize.Sanitizer.Meta
|
|
|
|
alias FastSanitize.Sanitizer.Meta
|
2019-08-06 11:21:25 +00:00
|
|
|
|
|
|
|
Meta.strip_comments()
|
|
|
|
|
|
|
|
# links
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_uri_attributes(:a, ["href"], @valid_schemes)
|
2019-08-06 11:21:25 +00:00
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_this_attribute_values(:a, "rel", [
|
2019-08-06 11:21:25 +00:00
|
|
|
"tag",
|
|
|
|
"nofollow",
|
|
|
|
"noopener",
|
|
|
|
"noreferrer",
|
2019-09-17 08:22:46 +00:00
|
|
|
"me",
|
|
|
|
"ugc"
|
2019-08-06 11:21:25 +00:00
|
|
|
])
|
|
|
|
|
2019-10-28 22:18:08 +00:00
|
|
|
Meta.allow_tag_with_these_attributes(:a, ["name", "title"])
|
2019-08-06 11:21:25 +00:00
|
|
|
Meta.strip_everything_not_covered()
|
|
|
|
end
|