From: Anton Khorev Date: Thu, 6 Jun 2024 13:47:06 +0000 (+0300) Subject: Add image method to get first image from rich text X-Git-Tag: live~448^2~2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/c7353c9ac1553b5fd4b26253ead0f129ca714717?ds=inline;hp=-c Add image method to get first image from rich text --- c7353c9ac1553b5fd4b26253ead0f129ca714717 diff --git a/lib/rich_text.rb b/lib/rich_text.rb index 56d358bd8..f19d3d3a9 100644 --- a/lib/rich_text.rb +++ b/lib/rich_text.rb @@ -49,6 +49,10 @@ module RichText (spammy_phrases * 40) end + def image + nil + end + protected def simple_format(text) @@ -80,12 +84,33 @@ module RichText class Markdown < Base def to_html - linkify(sanitize(Kramdown::Document.new(self).to_html), :all) + linkify(sanitize(document.to_html), :all) end def to_text to_s end + + def image + return @image if defined? @image + + @image = first_image_element(document.root)&.attr&.[]("src") + end + + private + + def document + @document ||= Kramdown::Document.new(self) + end + + def first_image_element(element) + return element if element.type == :img + + element.children.find do |child| + nested_image = first_image_element(child) + break nested_image if nested_image + end + end end class Text < Base diff --git a/test/lib/rich_text_test.rb b/test/lib/rich_text_test.rb index 033a221d4..8dc9e49b1 100644 --- a/test/lib/rich_text_test.rb +++ b/test/lib/rich_text_test.rb @@ -250,6 +250,31 @@ class RichTextTest < ActiveSupport::TestCase assert_equal 141, r.spam_score.round end + def test_text_no_image + r = RichText.new("text", "foo https://example.com/ bar") + assert_nil r.image + end + + def test_html_no_image + r = RichText.new("html", "foo bar baz") + assert_nil r.image + end + + def test_markdown_no_image + r = RichText.new("markdown", "foo [bar](https://example.com/) baz") + assert_nil r.image + end + + def test_markdown_image + r = RichText.new("markdown", "foo ![bar](https://example.com/image.jpg) baz") + assert_equal "https://example.com/image.jpg", r.image + end + + def test_markdown_first_image + r = RichText.new("markdown", "foo ![bar1](https://example.com/image1.jpg) baz\nfoo ![bar2](https://example.com/image2.jpg) baz") + assert_equal "https://example.com/image1.jpg", r.image + end + private def assert_html(richtext, &block)