# frozen_string_literal: true module Onebox module Engine class VideoOnebox include Engine matches_regexp(/^(https?:)?\/\/.*\.(mov|mp4|webm|ogv)(\?.*)?$/i) def always_https? WhitelistedGenericOnebox.host_matches(uri, WhitelistedGenericOnebox.https_hosts) end def to_html escaped_url = ::Onebox::Helpers.normalize_url_for_output(@url) <<-HTML
HTML end def placeholder_html "
" end end end end