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-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
|
|
|
|
|
|
|
|
def filter(%{"type" => activity_type} = object) when activity_type == "Create" 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
|
|
|
|
|
|
|
child = object["object"]
|
|
|
|
|
|
|
|
content =
|
|
|
|
child["content"]
|
|
|
|
|> HTML.filter_tags(scrub_policy)
|
|
|
|
|
|
|
|
child = Map.put(child, "content", content)
|
|
|
|
|
|
|
|
object = Map.put(object, "object", child)
|
|
|
|
|
|
|
|
{:ok, object}
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter(object), do: {:ok, object}
|
|
|
|
end
|