# frozen_string_literal: true
module Onebox
module Engine
class KalturaOnebox
include Engine
include StandardEmbed
always_https
matches_regexp(/^https?:\/\/[a-z0-9]+\.kaltura\.com\/id\/[a-zA-Z0-9]+/)
requires_iframe_origins "https://*.kaltura.com"
def preview_html
og = get_opengraph
<<~HTML
HTML
end
def to_html
og = get_opengraph
<<~HTML
HTML
end
end
end
end