# frozen_string_literal: true module Onebox module Engine class FacebookMediaOnebox include Engine include StandardEmbed matches_regexp(%r{^https?://(?:www\.)?facebook\.com/(\w+)/(videos|\?).*}) always_https requires_iframe_origins "https://www.facebook.com" def to_html metadata = get_twitter if metadata.present? && metadata[:card] == "player" && metadata[:player].present? <<-HTML HTML else html = Onebox::Engine::AllowlistedGenericOnebox.new(@url, @timeout).to_html html.presence end end end end end