2020-01-22 02:14:42 +01:00
|
|
|
# Portions of this file are derived from Pleroma:
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
# Upstream: https://git.pleroma.social/pleroma/pleroma/blob/develop/lib/pleroma/html.ex
|
|
|
|
|
|
|
|
defmodule Mobilizon.Service.Formatter.HTML do
|
|
|
|
@moduledoc """
|
|
|
|
Service to filter tags out of HTML content.
|
|
|
|
"""
|
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
alias FastSanitize.Sanitizer
|
2020-01-22 02:14:42 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
alias Mobilizon.Service.Formatter.{DefaultScrubbler, OEmbed}
|
2020-01-22 02:14:42 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
def filter_tags(html), do: Sanitizer.scrub(html, DefaultScrubbler)
|
|
|
|
|
|
|
|
def filter_tags_for_oembed(html), do: Sanitizer.scrub(html, OEmbed)
|
2020-01-22 02:14:42 +01:00
|
|
|
end
|