mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 10:57:04 +08:00
31 lines
805 B
Ruby
31 lines
805 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Onebox
|
|
module Engine
|
|
class AudioOnebox
|
|
include Engine
|
|
|
|
matches_regexp(%r{^(https?:)?//.*\.(mp3|ogg|opus|wav|m4a)(\?.*)?$}i)
|
|
|
|
def always_https?
|
|
AllowlistedGenericOnebox.host_matches(uri, AllowlistedGenericOnebox.https_hosts)
|
|
end
|
|
|
|
def to_html
|
|
escaped_url = ::Onebox::Helpers.normalize_url_for_output(@url)
|
|
|
|
<<-HTML
|
|
<audio controls #{@options[:disable_media_download_controls] ? 'controlslist="nodownload"' : ""}>
|
|
<source src="#{escaped_url}">
|
|
<a href="#{escaped_url}">#{@url}</a>
|
|
</audio>
|
|
HTML
|
|
end
|
|
|
|
def placeholder_html
|
|
SiteSetting.enable_diffhtml_preview ? to_html : ::Onebox::Helpers.audio_placeholder_html
|
|
end
|
|
end
|
|
end
|
|
end
|