2021-05-26 17:41:35 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Onebox
|
|
|
|
module Engine
|
|
|
|
class WistiaOnebox
|
|
|
|
include Engine
|
|
|
|
include StandardEmbed
|
|
|
|
|
|
|
|
matches_regexp(/https?:\/\/(.+)?(wistia.com|wi.st)\/(medias|embed)\/.*/)
|
|
|
|
requires_iframe_origins("https://fast.wistia.com", "https://fast.wistia.net")
|
|
|
|
always_https
|
|
|
|
|
|
|
|
def to_html
|
2022-02-08 10:02:32 +08:00
|
|
|
oembed = get_oembed
|
|
|
|
extracted_url = oembed.html.match(/iframe\ src\=\"(.*?)\"/)
|
|
|
|
|
|
|
|
if extracted_url
|
|
|
|
iframe_src = extracted_url[1]
|
|
|
|
|
2022-02-08 13:04:32 +08:00
|
|
|
<<~HTML
|
|
|
|
<iframe
|
|
|
|
src="#{iframe_src}"
|
|
|
|
width="#{oembed.width}"
|
|
|
|
height="#{oembed.height}"
|
|
|
|
title="#{oembed.title}"
|
|
|
|
frameborder="0"
|
|
|
|
allowfullscreen
|
|
|
|
></iframe>
|
2022-02-08 10:02:32 +08:00
|
|
|
HTML
|
|
|
|
else
|
|
|
|
oembed.html
|
|
|
|
end
|
2021-05-26 17:41:35 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def placeholder_html
|
|
|
|
oembed = get_oembed
|
|
|
|
return if Onebox::Helpers.blank?(oembed.thumbnail_url)
|
|
|
|
"<img src='#{oembed.thumbnail_url}' #{oembed.title_attr}>"
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def get_oembed_url
|
|
|
|
"https://fast.wistia.com/oembed?embedType=iframe&url=#{url}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|