Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-08 15:10:06 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-08 15:10:06 +0300
commitd0aeb5df3d6b06165355b023a25b79c7bd74a27d (patch)
tree7b5d3ff0f0ac5c124aa8626aeb4a0682d99a17c2 /lib/gitlab/email
parent9ccf40d15a14e9ccf613701ba7e3d5d250961345 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/email')
-rw-r--r--lib/gitlab/email/html_parser.rb6
-rw-r--r--lib/gitlab/email/html_to_markdown_parser.rb29
2 files changed, 34 insertions, 1 deletions
diff --git a/lib/gitlab/email/html_parser.rb b/lib/gitlab/email/html_parser.rb
index 65117ac0141..10dbedbb464 100644
--- a/lib/gitlab/email/html_parser.rb
+++ b/lib/gitlab/email/html_parser.rb
@@ -34,7 +34,11 @@ module Gitlab
end
def filtered_text
- @filtered_text ||= Html2Text.convert(filtered_html)
+ @filtered_text ||= if Feature.enabled?(:service_desk_html_to_text_email_handler)
+ ::Gitlab::Email::HtmlToMarkdownParser.convert(filtered_html)
+ else
+ Html2Text.convert(filtered_html)
+ end
end
end
end
diff --git a/lib/gitlab/email/html_to_markdown_parser.rb b/lib/gitlab/email/html_to_markdown_parser.rb
new file mode 100644
index 00000000000..42dd012308b
--- /dev/null
+++ b/lib/gitlab/email/html_to_markdown_parser.rb
@@ -0,0 +1,29 @@
+# frozen_string_literal: true
+
+require 'nokogiri'
+
+module Gitlab
+ module Email
+ class HtmlToMarkdownParser < Html2Text
+ ADDITIONAL_TAGS = %w[em strong img details].freeze
+ IMG_ATTRS = %w[alt src].freeze
+
+ def self.convert(html)
+ html = fix_newlines(replace_entities(html))
+ doc = Nokogiri::HTML(html)
+
+ HtmlToMarkdownParser.new(doc).convert
+ end
+
+ def iterate_over(node)
+ return super unless ADDITIONAL_TAGS.include?(node.name)
+
+ if node.name == 'img'
+ node.keys.each { |key| node.remove_attribute(key) unless IMG_ATTRS.include?(key) } # rubocop:disable Style/HashEachMethods
+ end
+
+ Kramdown::Document.new(node.to_html, input: 'html').to_commonmark
+ end
+ end
+ end
+end