2021-05-26 15:11:35 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Onebox
|
|
|
|
module Engine
|
|
|
|
class SoundCloudOnebox
|
|
|
|
include Engine
|
|
|
|
include StandardEmbed
|
|
|
|
|
2023-01-09 12:10:19 +00:00
|
|
|
matches_regexp(%r{^https?://soundcloud\.com})
|
2021-05-26 15:11:35 +05:30
|
|
|
requires_iframe_origins "https://w.soundcloud.com"
|
|
|
|
always_https
|
|
|
|
|
|
|
|
def to_html
|
|
|
|
oembed = get_oembed
|
2023-01-09 12:10:19 +00:00
|
|
|
oembed.html.gsub("visual=true", "visual=false")
|
2021-05-26 15:11:35 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def placeholder_html
|
|
|
|
oembed = get_oembed
|
|
|
|
return if Onebox::Helpers.blank?(oembed.thumbnail_url)
|
|
|
|
"<img src='#{oembed.thumbnail_url}' #{oembed.title_attr}>"
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def get_oembed_url
|
|
|
|
oembed_url = "https://soundcloud.com/oembed.json?url=#{url}"
|
|
|
|
oembed_url += "&maxheight=166" unless url["/sets/"]
|
|
|
|
oembed_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|