mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 10:57:04 +08:00
36 lines
812 B
Ruby
36 lines
812 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Onebox
|
|
module Engine
|
|
class BandCampOnebox
|
|
include Engine
|
|
include StandardEmbed
|
|
|
|
matches_regexp(%r{^https?://.*\.bandcamp\.com/(album|track)/})
|
|
always_https
|
|
requires_iframe_origins "https://bandcamp.com"
|
|
|
|
def placeholder_html
|
|
og = get_opengraph
|
|
"<img src='#{og.image}' height='#{og.video_height}' #{og.title_attr}>"
|
|
end
|
|
|
|
def to_html
|
|
og = get_opengraph
|
|
escaped_src = og.video_secure_url || og.video
|
|
|
|
<<-HTML
|
|
<iframe
|
|
src="#{escaped_src}"
|
|
width="#{og.video_width}"
|
|
height="#{og.video_height}"
|
|
scrolling="no"
|
|
frameborder="0"
|
|
allowfullscreen
|
|
></iframe>
|
|
HTML
|
|
end
|
|
end
|
|
end
|
|
end
|