1 # frozen_string_literal: true
5 "Business Description:", "Additional Keywords:"
8 MAX_DESCRIPTION_LENGTH = 500
10 def self.new(format, text)
12 when "html" then HTML.new(text || "")
13 when "markdown" then Markdown.new(text || "")
14 when "text" then Text.new(text || "")
19 include ActionView::Helpers::TextHelper
20 include ActionView::Helpers::OutputSafetyHelper
22 def sanitize(text, _options = {})
23 Sanitize.clean(text, Sanitize::Config::OSM).html_safe
28 include ActionView::Helpers::TagHelper
34 doc = Nokogiri::HTML(to_html)
39 doc.xpath("//a").each do |link|
41 link_size += link.content.length
44 link_proportion = link_size.to_f / doc.content.length
47 spammy_phrases = SPAMMY_PHRASES.count do |phrase|
48 doc.content.include?(phrase)
51 ([link_proportion - 0.2, 0.0].max * 200) +
70 def simple_format(text)
71 SimpleFormat.new.simple_format(text, :dir => "auto")
75 Sanitize.clean(text, Sanitize::Config::OSM).html_safe
78 def linkify(text, mode = :urls)
79 Rinku.auto_link(ERB::Util.html_escape(text), mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer")).html_safe
85 linkify(sanitize(simple_format(self)))
95 linkify(sanitize(document.to_html), :all)
103 @image_element = first_image_element(document.root) unless defined? @image_element
104 @image_element.attr["src"] if @image_element
108 @image_element = first_image_element(document.root) unless defined? @image_element
109 @image_element.attr["alt"] if @image_element
113 return @description if defined? @description
115 @description = first_truncated_text_content(document.root)
121 @document ||= Kramdown::Document.new(self)
124 def first_image_element(element)
125 return element if image?(element) && element.attr["src"].present?
127 element.children.find do |child|
128 nested_image = first_image_element(child)
129 break nested_image if nested_image
133 def first_truncated_text_content(element)
134 if paragraph?(element)
135 truncated_text_content(element)
137 element.children.find do |child|
138 text = first_truncated_text_content(child)
139 break text unless text.nil?
144 def truncated_text_content(element)
147 append_text = lambda do |child|
148 if child.type == :text
151 child.children.each do |c|
153 break if text.length > MAX_DESCRIPTION_LENGTH
157 append_text.call(element)
159 return nil if text.blank?
161 text.truncate(MAX_DESCRIPTION_LENGTH)
165 element.type == :img || (element.type == :html_element && element.value == "img")
168 def paragraph?(element)
169 element.type == :p || (element.type == :html_element && element.value == "p")
175 linkify(simple_format(ERB::Util.html_escape(self)))