Sha256: 5c77d6facd0e09232d1d99fef2e1e7beaf1b27e28221fa2df7a940b6d823c494

Contents?: true

Size: 863 Bytes

Versions: 1

Compression:

Stored size: 863 Bytes

Contents

module Onebox
  module Engine
    class SoundCloudOnebox
      include Engine
      include StandardEmbed

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

      def to_html
        oembed_data[:html].gsub('visual=true', 'visual=false')
      end

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

      private

        def oembed_data
          @oembed_data ||= begin
            oembed_url = "https://soundcloud.com/oembed.json?url=#{url}"
            oembed_url << "&maxheight=166" unless url["/sets/"]
            Onebox::Helpers.symbolize_keys(::MultiJson.load(Onebox::Helpers.fetch_response(oembed_url).body))
          rescue
            {}
          end
        end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
onebox-1.7.3 lib/onebox/engine/soundcloud_onebox.rb