Sha256: 95525c7fddc3cb1ba237d7bae34d7612af83a1e1962916e43b1b10cefa221933

Contents?: true

Size: 703 Bytes

Versions: 25

Compression:

Stored size: 703 Bytes

Contents

# frozen_string_literal: true

module Onebox
  module Engine
    class WistiaOnebox
      include Engine
      include StandardEmbed

      matches_regexp(/https?:\/\/(.+)?(wistia.com|wi.st)\/(medias|embed)\/.*/)
      requires_iframe_origins("https://fast.wistia.com", "https://fast.wistia.net")
      always_https

      def to_html
        get_oembed.html
      end

      def placeholder_html
        oembed = get_oembed
        return if Onebox::Helpers.blank?(oembed.thumbnail_url)
        "<img src='#{oembed.thumbnail_url}' #{oembed.title_attr}>"
      end

      private

      def get_oembed_url
        "https://fast.wistia.com/oembed?embedType=iframe&url=#{url}"
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
onebox-2.1.7 lib/onebox/engine/wistia_onebox.rb
onebox-2.1.6 lib/onebox/engine/wistia_onebox.rb
onebox-2.1.5 lib/onebox/engine/wistia_onebox.rb
onebox-2.1.4 lib/onebox/engine/wistia_onebox.rb
onebox-2.1.3 lib/onebox/engine/wistia_onebox.rb