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-10 00:48:28 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.NormalizeMarkup do
|
2019-05-06 02:28:04 +00:00
|
|
|
@moduledoc "Scrub configured hypertext markup"
|
2018-09-10 00:48:28 +00:00
|
|
|
alias Pleroma.HTML
|
|
|
|
|
2021-06-07 19:22:08 +00:00
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF.Policy
|
2018-09-10 00:48:28 +00:00
|
|
|
|
2020-11-10 16:18:53 +00:00
|
|
|
@impl true
|
2022-09-06 19:24:02 +00:00
|
|
|
def history_awareness, do: :auto
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def filter(%{"type" => type, "object" => child_object} = object)
|
|
|
|
when type in ["Create", "Update"] do
|
2018-11-06 18:34:57 +00:00
|
|
|
scrub_policy = Pleroma.Config.get([:mrf_normalize_markup, :scrub_policy])
|
2018-09-10 00:48:28 +00:00
|
|
|
|
|
|
|
content =
|
2019-07-10 05:12:21 +00:00
|
|
|
child_object["content"]
|
2018-09-10 00:48:28 +00:00
|
|
|
|> HTML.filter_tags(scrub_policy)
|
|
|
|
|
2019-07-10 05:12:21 +00:00
|
|
|
object = put_in(object, ["object", "content"], content)
|
2018-09-10 00:48:28 +00:00
|
|
|
|
|
|
|
{:ok, object}
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter(object), do: {:ok, object}
|
2019-08-13 21:52:54 +00:00
|
|
|
|
2020-11-10 16:18:53 +00:00
|
|
|
@impl true
|
2019-08-13 22:36:24 +00:00
|
|
|
def describe, do: {:ok, %{}}
|
2020-11-10 16:18:53 +00:00
|
|
|
|
|
|
|
@impl true
|
|
|
|
def config_description do
|
|
|
|
%{
|
|
|
|
key: :mrf_normalize_markup,
|
|
|
|
related_policy: "Pleroma.Web.ActivityPub.MRF.NormalizeMarkup",
|
|
|
|
label: "MRF Normalize Markup",
|
|
|
|
description: "MRF NormalizeMarkup settings. Scrub configured hypertext markup.",
|
|
|
|
children: [
|
|
|
|
%{
|
|
|
|
key: :scrub_policy,
|
|
|
|
type: :module,
|
|
|
|
suggestions: [Pleroma.HTML.Scrubber.Default]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
end
|
2018-09-10 00:48:28 +00:00
|
|
|
end
|