discourse/lib/onebox/engine/google_docs_onebox.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

45 lines
1.1 KiB
Ruby

# frozen_string_literal: true
module Onebox
module Engine
class GoogleDocsOnebox
include Engine
include StandardEmbed
include LayoutSupport
SUPPORTED_ENDPOINTS = %w[spreadsheets document forms presentation]
SHORT_TYPES = { spreadsheets: :sheets, document: :docs, presentation: :slides, forms: :forms }
matches_regexp(
%r{^(https?:)?//(docs\.google\.com)/(?<endpoint>(#{SUPPORTED_ENDPOINTS.join("|")}))/d/((?<key>[\w-]*)).+$},
)
always_https
private
def data
og_data = get_opengraph
short_type = SHORT_TYPES[match[:endpoint].to_sym]
description =
if og_data.description.blank?
"This #{short_type.to_s.chop.capitalize} is private"
else
Onebox::Helpers.truncate(og_data.description, 250)
end
{
link: link,
title: og_data.title || "Google #{short_type.to_s.capitalize}",
description: description,
type: short_type,
}
end
def match
@match ||= @url.match(@@matcher)
end
end
end
end