]> git.openstreetmap.org Git - rails.git/commitdiff
Merge remote-tracking branch 'upstream/pull/5855'
authorTom Hughes <tom@compton.nu>
Thu, 27 Mar 2025 17:27:40 +0000 (17:27 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 27 Mar 2025 17:27:40 +0000 (17:27 +0000)
1  2 
lib/rich_text.rb

diff --combined lib/rich_text.rb
index 3f5d9f6bad92e918f2343adf1640a7b8c3236d80,453f3d23a4a5fda0f553754a3aeb4d5e8d18968f..36e70063f9ee4374840113c377bd67ba31185edf
@@@ -78,17 -78,23 +78,23 @@@ module RichTex
      def linkify(text, mode = :urls)
        link_attr = tag_builder.tag_options(:rel => "nofollow noopener noreferrer")
        Rinku.auto_link(ERB::Util.html_escape(text), mode, link_attr) do |url|
-         %r{^https?://([^/]*)(.*)$}.match(url) do |m|
-           "#{Settings.linkify_hosts_replacement}#{m[2]}" if Settings.linkify_hosts_replacement &&
-                                                             Settings.linkify_hosts&.include?(m[1])
-         end || url
+         url = shorten_host(url, Settings.linkify_hosts, Settings.linkify_hosts_replacement)
+         shorten_host(url, Settings.linkify_wiki_hosts, Settings.linkify_wiki_hosts_replacement)
        end.html_safe
      end
+     private
+     def shorten_host(url, hosts, hosts_replacement)
+       %r{^https?://([^/]*)(.*)$}.match(url) do |m|
+         "#{hosts_replacement}#{m[2]}" if hosts_replacement && hosts&.include?(m[1])
+       end || url
+     end
    end
  
    class HTML < Base
      def to_html
 -      linkify(sanitize(simple_format(self)))
 +      linkify(simple_format(self))
      end
  
      def to_text