2022-03-26 01:53:34 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PlainTextFormatter
|
2023-06-06 12:50:51 +00:00
|
|
|
NEWLINE_TAGS_RE = %r{(<br />|<br>|</p>)+}
|
2022-03-26 01:53:34 +00:00
|
|
|
|
|
|
|
attr_reader :text, :local
|
|
|
|
|
|
|
|
alias local? local
|
|
|
|
|
|
|
|
def initialize(text, local)
|
|
|
|
@text = text
|
|
|
|
@local = local
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
if local?
|
|
|
|
text
|
|
|
|
else
|
2023-08-30 15:36:16 +00:00
|
|
|
node = Nokogiri::HTML.fragment(insert_newlines)
|
|
|
|
# Elements that are entirely removed with our Sanitize config
|
|
|
|
node.xpath('.//iframe|.//math|.//noembed|.//noframes|.//noscript|.//plaintext|.//script|.//style|.//svg|.//xmp').remove
|
|
|
|
node.text.chomp
|
2022-03-26 01:53:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def insert_newlines
|
|
|
|
text.gsub(NEWLINE_TAGS_RE) { |match| "#{match}\n" }
|
|
|
|
end
|
|
|
|
end
|