discourse/lib/onebox/open_graph.rb
Ted Johansson 60e624e768
DEV: Replace custom Onebox blank implementation with ActiveSupport (#23827)
We have a custom implementation of #blank? in our Onebox helpers. This is likely a legacy from when Onebox was a standalone gem. This change replaces all usages with respective incarnations of #blank?, #present?, and #presence from ActiveSupport. It changes a bunch of "unless blank" to "if present" as well.
2023-10-07 19:54:26 +02:00

57 lines
1.3 KiB
Ruby

# frozen_string_literal: true
module Onebox
class OpenGraph < Normalizer
def initialize(doc)
@data = extract(doc)
end
def title
get(:title, 80)
end
def title_attr
!title.nil? ? "title='#{title}'" : ""
end
def secure_image_url
secure_url = URI(get(:image))
secure_url.scheme = "https"
secure_url.to_s
end
private
COLLECTIONS = %i[article_section article_section_color article_tag]
def extract(doc)
return {} if doc.blank?
data = {}
doc
.css("meta")
.each do |m|
if (m["property"] && m["property"][/\A(?:og|article|product):(.+)\z/i]) ||
(m["name"] && m["name"][/\A(?:og|article|product):(.+)\z/i])
value = (m["content"] || m["value"]).to_s
next if value.blank?
key = $1.tr("-:", "_").to_sym
data[key] ||= value
if key.in?(COLLECTIONS)
collection_name = "#{key}s".to_sym
data[collection_name] ||= []
data[collection_name] << value
end
end
end
# Attempt to retrieve the title from the meta tag
title_element = doc.at_css("title")
data[:title] ||= title_element.text if title_element && title_element.text.present?
data
end
end
end