]> git.openstreetmap.org Git - rails.git/commitdiff
Remove html-safe/unsafe branches from rich text linkify
authorAnton Khorev <tony29@yandex.ru>
Mon, 24 Mar 2025 12:51:26 +0000 (15:51 +0300)
committerAnton Khorev <tony29@yandex.ru>
Tue, 25 Mar 2025 00:53:27 +0000 (03:53 +0300)
Rinku outputs html. It would make no sense to escape Rinku's output, the output should be safe when it's created. To make sure that it's safe, we need to escape the input. As it is currently used in osm-website, the input is already html-safe and escaping does nothing. However it's safer to escape anyway in case the future usage changes.

lib/rich_text.rb

index c20f973b12286164b56fcfc9f8eb47ac2fe0645d..d6df214d1b0340c532b31cb1c57ced394ae397f1 100644 (file)
@@ -76,11 +76,7 @@ module RichText
     end
 
     def linkify(text, mode = :urls)
-      if text.html_safe?
-        Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer")).html_safe
-      else
-        Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer"))
-      end
+      Rinku.auto_link(ERB::Util.html_escape(text), mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer")).html_safe
     end
   end