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]+/)
def preview_html
og = get_opengraph
<<~HTML
HTML
end
def to_html
og = get_opengraph
<<~HTML
HTML
end
end
end
end