# frozen_string_literal: true
module Onebox
module Engine
class BandCampOnebox
include Engine
include StandardEmbed
matches_domain("bandcamp.com", allow_subdomains: true)
always_https
requires_iframe_origins "https://bandcamp.com"
def self.matches_path(path)
path.match?(%r{^/(album|track)/})
end
def placeholder_html
og = get_opengraph
"
"
end
def to_html
og = get_opengraph
escaped_src = og.video_secure_url || og.video
<<-HTML
HTML
end
end
end
end