2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:44:49 +00:00
|
|
|
# Copyright © 2017-2020 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
|
|
|
|
|
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF
|
|
|
|
|
2019-07-10 05:12:21 +00:00
|
|
|
def filter(%{"type" => "Create", "object" => child_object} = object) 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
|
|
|
|
2019-08-13 22:36:24 +00:00
|
|
|
def describe, do: {:ok, %{}}
|
2018-09-10 00:48:28 +00:00
|
|
|
end
|