openstreetmap-website/app/helpers/open_graph_helper.rb
Andy Allan 2559226be3 Avoid various uses of html_safe
We can avoid using `html_safe` in various circumstances, through alternative approaches like i18n keys ending in `_html` or using `safe_join` to avoid converting via unsafe string types.

The `_html` keys approach only work for ActionView helper version of `t`, not the base `I18n.t` method.
2020-10-21 15:43:14 +02:00

17 lines
632 B
Ruby

module OpenGraphHelper
def opengraph_tags(title = nil)
tags = {
"og:site_name" => t("layouts.project_name.title"),
"og:title" => [title, t("layouts.project_name.title")].compact.join(" | "),
"og:type" => "website",
"og:image" => image_url("osm_logo_256.png", :protocol => "http"),
"og:image:secure_url" => image_url("osm_logo_256.png", :protocol => "https"),
"og:url" => url_for(:only_path => false),
"og:description" => t("layouts.intro_text")
}
safe_join(tags.map do |property, content|
tag(:meta, :property => property, :content => content)
end, "\n")
end
end