graphhopper_url: "https://graphhopper.com/api/1/route"
fossgis_osrm_url: "https://routing.openstreetmap.de/"
fossgis_valhalla_url: "https://valhalla1.openstreetmap.de/route"
+# Main website hosts to match in linkify
+linkify_hosts: ["www.openstreetmap.org", "www.osm.org", "www.openstreetmap.com", "openstreetmap.org", "osm.org", "openstreetmap.com"]
+# Shorter host to replace main hosts
+linkify_hosts_replacement: "osm.org"
# External authentication credentials
#google_auth_id: ""
#google_auth_secret: ""
end
def linkify(text, mode = :urls)
- Rinku.auto_link(ERB::Util.html_escape(text), mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer")).html_safe
+ 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
+ end.html_safe
end
end
end
def test_text_to_html_linkify
- r = RichText.new("text", "foo http://example.com/ bar")
- assert_html r do
- assert_select "a", 1
- assert_select "a[href='http://example.com/']", 1
- assert_select "a[rel='nofollow noopener noreferrer']", 1
+ with_settings(:linkify_hosts => ["replace-me.example.com"], :linkify_hosts_replacement => "repl.example.com") do
+ r = RichText.new("text", "foo http://example.com/ bar")
+ assert_html r do
+ assert_dom "a", :count => 1, :text => "http://example.com/" do
+ assert_dom "> @href", "http://example.com/"
+ assert_dom "> @rel", "nofollow noopener noreferrer"
+ end
+ end
+ end
+ end
+
+ def test_text_to_html_linkify_replace
+ with_settings(:linkify_hosts => ["replace-me.example.com"], :linkify_hosts_replacement => "repl.example.com") do
+ r = RichText.new("text", "foo https://replace-me.example.com/some/path?query=te<st&limit=20>10#result12 bar")
+ assert_html r do
+ assert_dom "a", :count => 1, :text => "repl.example.com/some/path?query=te<st&limit=20>10#result12" do
+ assert_dom "> @href", "https://replace-me.example.com/some/path?query=te<st&limit=20>10#result12"
+ assert_dom "> @rel", "nofollow noopener noreferrer"
+ end
+ end
+ end
+ end
+
+ def test_text_to_html_linkify_replace_other_scheme
+ with_settings(:linkify_hosts => ["replace-me.example.com"], :linkify_hosts_replacement => "repl.example.com") do
+ r = RichText.new("text", "foo ftp://replace-me.example.com/some/path?query=te<st&limit=20>10#result12 bar")
+ assert_html r do
+ assert_dom "a", :count => 1, :text => "ftp://replace-me.example.com/some/path?query=te<st&limit=20>10#result12" do
+ assert_dom "> @href", "ftp://replace-me.example.com/some/path?query=te<st&limit=20>10#result12"
+ assert_dom "> @rel", "nofollow noopener noreferrer"
+ end
+ end
+ end
+ end
+
+ def test_text_to_html_linkify_replace_undefined
+ with_settings(:linkify_hosts => ["replace-me.example.com"], :linkify_hosts_replacement => nil) do
+ r = RichText.new("text", "foo https://replace-me.example.com/some/path?query=te<st&limit=20>10#result12 bar")
+ assert_html r do
+ assert_dom "a", :count => 1, :text => "https://replace-me.example.com/some/path?query=te<st&limit=20>10#result12" do
+ assert_dom "> @href", "https://replace-me.example.com/some/path?query=te<st&limit=20>10#result12"
+ assert_dom "> @rel", "nofollow noopener noreferrer"
+ end
+ end
end
end