2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 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
|
2019-12-08 16:42:40 +00:00
|
|
|
# Scrubbers are compiled on boot so they can be configured in OTP releases
|
|
|
|
# @on_load :compile_scrubbers
|
|
|
|
|
|
|
|
def compile_scrubbers do
|
|
|
|
dir = Path.join(:code.priv_dir(:pleroma), "scrubbers")
|
|
|
|
|
|
|
|
dir
|
2019-12-09 17:38:01 +00:00
|
|
|
|> Pleroma.Utils.compile_dir()
|
2019-12-08 16:42:40 +00:00
|
|
|
|> case do
|
|
|
|
{:error, _errors, _warnings} ->
|
|
|
|
raise "Compiling scrubbers failed"
|
|
|
|
|
|
|
|
{:ok, _modules, _warnings} ->
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
|
|
2024-02-11 21:11:52 +00:00
|
|
|
@spec extract_first_external_url_from_object(Pleroma.Object.t()) :: String.t() | nil
|
|
|
|
def extract_first_external_url_from_object(%{data: %{"content" => content}})
|
2020-09-05 09:37:27 +00:00
|
|
|
when is_binary(content) do
|
|
|
|
content
|
|
|
|
|> Floki.parse_fragment!()
|
|
|
|
|> Floki.find("a:not(.mention,.hashtag,.attachment,[rel~=\"tag\"])")
|
|
|
|
|> Enum.take(1)
|
|
|
|
|> Floki.attribute("href")
|
|
|
|
|> Enum.at(0)
|
2018-09-09 23:29:00 +00:00
|
|
|
end
|
2024-02-11 21:11:52 +00:00
|
|
|
|
|
|
|
def extract_first_external_url_from_object(_), do: nil
|
2018-09-09 23:29:00 +00:00
|
|
|
end
|