mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 11:15:05 +08:00
60e624e768
We have a custom implementation of #blank? in our Onebox helpers. This is likely a legacy from when Onebox was a standalone gem. This change replaces all usages with respective incarnations of #blank?, #present?, and #presence from ActiveSupport. It changes a bunch of "unless blank" to "if present" as well.
31 lines
647 B
Ruby
31 lines
647 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Onebox
|
|
module Engine
|
|
class SimplecastOnebox
|
|
include Engine
|
|
include StandardEmbed
|
|
|
|
matches_regexp(%r{https?://(.+)?simplecast.com/(episodes|s)/.*})
|
|
always_https
|
|
requires_iframe_origins("https://player.simplecast.com")
|
|
|
|
def to_html
|
|
get_oembed.html
|
|
end
|
|
|
|
def placeholder_html
|
|
oembed = get_oembed
|
|
return if oembed.thumbnail_url.blank?
|
|
"<img src='#{oembed.thumbnail_url}' #{oembed.title_attr}>"
|
|
end
|
|
|
|
private
|
|
|
|
def get_oembed_url
|
|
"https://api.simplecast.com/oembed?url=#{url}"
|
|
end
|
|
end
|
|
end
|
|
end
|