# frozen_string_literal: true module Onebox module Engine class VideoOnebox include Engine matches_regexp(/^(https?:)?\/\/.*\.(mov|mp4|webm|ogv)(\?.*)?$/i) def always_https? AllowlistedGenericOnebox.host_matches(uri, AllowlistedGenericOnebox.https_hosts) end def to_html # Fix Dropbox image links if @url[/^https:\/\/www.dropbox.com\/s\//] @url.sub!("https://www.dropbox.com", "https://dl.dropboxusercontent.com") end escaped_url = ::Onebox::Helpers.normalize_url_for_output(@url) <<-HTML
HTML end def placeholder_html SiteSetting.enable_diffhtml_preview ? to_html : ::Onebox::Helpers.video_placeholder_html end end end end