mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
4e0563a8fe
og_data is already escaped
39 lines
1.2 KiB
Ruby
39 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "onebox"
|
|
|
|
class Onebox::Engine::VimeoOnebox
|
|
include Onebox::Engine
|
|
alias_method :default_onebox_to_html, :to_html
|
|
|
|
def to_html
|
|
if SiteSetting.lazy_videos_enabled && SiteSetting.lazy_vimeo_enabled
|
|
full_video_id = oembed_data[:uri].sub("/videos/", "").sub(":", "/")
|
|
|
|
# This is used to discern public and private video
|
|
# Unlisted videos have an adidtional alphanumeric ID in their URI.
|
|
if !oembed_data[:uri].match?(%r{videos/\d+:.+})
|
|
iframe_id = full_video_id
|
|
else
|
|
iframe_src = Nokogiri::HTML5.fragment(oembed_data[:html]).at_css("iframe")&.[]("src")
|
|
iframe_id = iframe_src.sub("https://player.vimeo.com/video/", "")
|
|
end
|
|
|
|
<<~HTML
|
|
<div class="vimeo-onebox lazy-video-container"
|
|
data-video-id="#{iframe_id}"
|
|
data-video-title="#{og_data.title}"
|
|
data-provider-name="vimeo">
|
|
<a href="https://vimeo.com/#{full_video_id}" target="_blank">
|
|
<img class="vimeo-thumbnail"
|
|
src="#{og_data.image}"
|
|
title="#{og_data.title}">
|
|
</a>
|
|
</div>
|
|
HTML
|
|
else
|
|
default_onebox_to_html
|
|
end
|
|
end
|
|
end
|