mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 06:14:07 +00:00
2641dcdd15
Rebased from #103 Co-authored-by: Tusooa Zhu <tusooa@kazv.moe> Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/202
50 lines
1.3 KiB
Elixir
50 lines
1.3 KiB
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.NormalizeMarkup do
|
|
@moduledoc "Scrub configured hypertext markup"
|
|
alias Pleroma.HTML
|
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF.Policy
|
|
|
|
@impl true
|
|
def history_awareness, do: :auto
|
|
|
|
@impl true
|
|
def filter(%{"type" => type, "object" => child_object} = object)
|
|
when type in ["Create", "Update"] do
|
|
scrub_policy = Pleroma.Config.get([:mrf_normalize_markup, :scrub_policy])
|
|
|
|
content =
|
|
child_object["content"]
|
|
|> HTML.filter_tags(scrub_policy)
|
|
|
|
object = put_in(object, ["object", "content"], content)
|
|
|
|
{:ok, object}
|
|
end
|
|
|
|
def filter(object), do: {:ok, object}
|
|
|
|
@impl true
|
|
def describe, do: {:ok, %{}}
|
|
|
|
@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
|
|
end
|