Join and normalize og:image url using Addressable

Avoids failing on urls that are not strictly rfc2396 URIs.
This commit is contained in:
Anton Khorev 2024-06-15 15:03:22 +03:00
parent 84aa7f455a
commit c03649355a
4 changed files with 27 additions and 1 deletions

View file

@ -72,6 +72,7 @@ gem "validates_email_format_of", ">= 1.5.1"
gem "quad_tile", "~> 1.0.1"
# Sanitise URIs
gem "addressable", "~> 2.8"
gem "rack-uri_sanitizer"
# Omniauth for authentication

View file

@ -602,6 +602,7 @@ DEPENDENCIES
actionpack-page_caching (>= 1.2.0)
active_record_union
activerecord-import
addressable (~> 2.8)
annotate
argon2
autoprefixer-rails

View file

@ -1,10 +1,12 @@
module OpenGraphHelper
require "addressable/uri"
def opengraph_tags(title = nil, og_image = nil)
tags = {
"og:site_name" => t("layouts.project_name.title"),
"og:title" => title || t("layouts.project_name.title"),
"og:type" => "website",
"og:image" => og_image ? URI.join(root_url, og_image) : image_url("osm_logo_256.png"),
"og:image" => og_image ? Addressable::URI.join(root_url, og_image).normalize : image_url("osm_logo_256.png"),
"og:url" => url_for(:only_path => false),
"og:description" => t("layouts.intro_text")
}

View file

@ -766,6 +766,28 @@ class DiaryEntriesControllerTest < ActionDispatch::IntegrationTest
end
end
def test_show_og_image_with_spaces
user = create(:user)
diary_entry = create(:diary_entry, :user => user, :body => "![some picture](https://example.com/the picture.jpg)")
get diary_entry_path(user, diary_entry)
assert_response :success
assert_dom "head meta[property='og:image']" do
assert_dom "> @content", "https://example.com/the%20picture.jpg"
end
end
def test_show_og_image_with_relative_uri_and_spaces
user = create(:user)
diary_entry = create(:diary_entry, :user => user, :body => "![some local picture](/the picture.jpg)")
get diary_entry_path(user, diary_entry)
assert_response :success
assert_dom "head meta[property='og:image']" do
assert_dom "> @content", "#{root_url}the%20picture.jpg"
end
end
def test_hide
user = create(:user)
diary_entry = create(:diary_entry, :user => user)