discourse/lib/onebox/engine/audioboom_onebox.rb
Blake Erickson 17116c440b
SECURITY: Restrict allowed URL patterns
Restrict allowed URL patterns for oneboxes.
2025-02-04 13:32:34 -03:00

34 lines
628 B
Ruby

# frozen_string_literal: true
module Onebox
module Engine
class AudioboomOnebox
include Engine
include StandardEmbed
always_https
matches_domain("audioboom.com")
def self.matches_path(path)
path.match?(%r{^/posts/\d+$})
end
def placeholder_html
oembed = get_oembed
<<-HTML
<img
src="#{oembed.thumbnail_url}"
style="max-width: #{oembed.width}px; max-height: #{oembed.height}px;"
#{oembed.title_attr}
>
HTML
end
def to_html
get_oembed.html
end
end
end
end