Sha256: ce1f5c1eb418db01de39af5575ddb1d2465945bb527f8470c4611230be2beb09

Contents?: true

Size: 544 Bytes

Versions: 84

Compression:

Stored size: 544 Bytes

Contents

module Onebox
  module Engine
    class CoubOnebox
      include Engine
      include StandardEmbed

      matches_regexp(/^https?:\/\/coub\.com\/view\//)
      always_https

      def placeholder_html
        oembed = get_oembed
        escaped_src = ::Onebox::Helpers.normalize_url_for_output(oembed[:thumbnail_url])
        "<img src='#{escaped_src}' height='#{oembed[:thumbnail_height]}' width='#{oembed[:thumbnail_width]}' #{Helpers.title_attr(oembed)}>"
      end

      def to_html
        get_oembed[:html]
      end

    end
  end
end

Version data entries

84 entries across 84 versions & 1 rubygems

Version Path
onebox-1.7.7 lib/onebox/engine/coub_onebox.rb
onebox-1.7.6 lib/onebox/engine/coub_onebox.rb
onebox-1.7.5 lib/onebox/engine/coub_onebox.rb
onebox-1.7.4 lib/onebox/engine/coub_onebox.rb