debian-mirror-gitlab/lib/gitlab/email/html_parser.rb
2017-08-17 22:00:37 +05:30

35 lines
704 B
Ruby

module Gitlab
module Email
class HTMLParser
def self.parse_reply(raw_body)
new(raw_body).filtered_text
end
attr_reader :raw_body
def initialize(raw_body)
@raw_body = raw_body
end
def document
@document ||= Nokogiri::HTML.parse(raw_body)
end
def filter_replies!
document.xpath('//blockquote').each(&:remove)
document.xpath('//table').each(&:remove)
end
def filtered_html
@filtered_html ||= begin
filter_replies!
document.inner_html
end
end
def filtered_text
@filtered_text ||= Html2Text.convert(filtered_html)
end
end
end
end