# frozen_string_literal: true
module Onebox
module Engine
class SketchFabOnebox
include Engine
include StandardEmbed
matches_regexp(
/^https?:\/\/sketchfab\.com\/(?:models\/|3d-models\/(?:[^\/\s]+-)?)([a-z0-9]{32})/,
)
always_https
requires_iframe_origins("https://sketchfab.com")
def to_html
og = get_opengraph
src = og.video_url.gsub("autostart=1", "")
<<-HTML
HTML
end
def placeholder_html
""
end
end
end
end