mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:49:14 +08:00
FIX: Add lazy-videos support for Vimeo unlisted videos (#20916)
This commit is contained in:
parent
aeeb6726d8
commit
b4096f4636
|
@ -6,7 +6,9 @@ export default class LazyVideo extends Component {
|
|||
case "youtube":
|
||||
return `https://www.youtube.com/embed/${this.args.videoId}?autoplay=1`;
|
||||
case "vimeo":
|
||||
return `https://player.vimeo.com/video/${this.args.videoId}?autoplay=1`;
|
||||
return `https://player.vimeo.com/video/${this.args.videoId}${
|
||||
this.args.videoId.includes("?") ? "&" : "?"
|
||||
}autoplay=1`;
|
||||
case "tiktok":
|
||||
return `https://www.tiktok.com/embed/v2/${this.args.videoId}`;
|
||||
}
|
||||
|
|
|
@ -8,16 +8,26 @@ class Onebox::Engine::VimeoOnebox
|
|||
|
||||
def to_html
|
||||
if SiteSetting.lazy_videos_enabled && SiteSetting.lazy_vimeo_enabled
|
||||
video_id = oembed_data[:video_id]
|
||||
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
|
||||
|
||||
thumbnail_url = "https://vumbnail.com/#{oembed_data[:video_id]}.jpg"
|
||||
escaped_title = ERB::Util.html_escape(og_data.title)
|
||||
|
||||
<<~HTML
|
||||
<div class="vimeo-onebox lazy-video-container"
|
||||
data-video-id="#{video_id}"
|
||||
data-video-id="#{iframe_id}"
|
||||
data-video-title="#{escaped_title}"
|
||||
data-provider-name="vimeo">
|
||||
<a href="https://vimeo.com/#{video_id}" target="_blank">
|
||||
<a href="https://vimeo.com/#{full_video_id}" target="_blank">
|
||||
<img class="vimeo-thumbnail"
|
||||
src="#{thumbnail_url}"
|
||||
title="#{escaped_title}">
|
||||
|
|
420
plugins/discourse-lazy-videos/spec/fixtures/vimeo-unlisted.response
vendored
Normal file
420
plugins/discourse-lazy-videos/spec/fixtures/vimeo-unlisted.response
vendored
Normal file
File diff suppressed because one or more lines are too long
2251
plugins/discourse-lazy-videos/spec/fixtures/vimeo.response
vendored
Normal file
2251
plugins/discourse-lazy-videos/spec/fixtures/vimeo.response
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,107 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe Onebox::Engine::VimeoOnebox do
|
||||
def get_response(filename)
|
||||
file = "#{Rails.root}/plugins/discourse-lazy-videos/spec/fixtures/#{filename}.response"
|
||||
File.read(file)
|
||||
end
|
||||
|
||||
before do
|
||||
stub_request(:get, "https://vimeo.com/786646692").to_return(
|
||||
status: 200,
|
||||
body: get_response("vimeo"),
|
||||
)
|
||||
|
||||
stub_request(:get, "https://vimeo.com/192207770/0faf1dd09d").to_return(
|
||||
status: 200,
|
||||
body: get_response("vimeo-unlisted"),
|
||||
)
|
||||
|
||||
stub_request(
|
||||
:get,
|
||||
"https://vimeo.com/api/oembed.json?url=https://vimeo.com/786646692",
|
||||
).to_return(
|
||||
status: 200,
|
||||
body:
|
||||
JSON.dump(
|
||||
type: "video",
|
||||
version: "1.0",
|
||||
provider_name: "Vimeo",
|
||||
provider_url: "https://vimeo.com/",
|
||||
title: "Dear Rich",
|
||||
author_name: "Stept Studios",
|
||||
author_url: "https://vimeo.com/steptstudios",
|
||||
is_plus: "0",
|
||||
account_type: "business",
|
||||
html:
|
||||
"<iframe src=\"https://player.vimeo.com/video/786646692?h=f2ca1d6121&app_id=122963\" width=\"426\" height=\"240\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen title=\"Dear Rich\"></iframe>",
|
||||
width: 426,
|
||||
height: 240,
|
||||
duration: 883,
|
||||
description:
|
||||
"Accomplished endurance athlete, author and podcaster, Rich Roll has been a voice we have become familiar with over the years. In DEAR RICH, we hear the story behind the voice. Rich shares a letter to himself, giving an intimate view into the struggles he's faced with addiction, how running has helped bring him back to the surface and something that he is still learning: that we must overcome our fear of change to find what we are truly capable of.\n\n\n\n\nCredits: \nClient: SalomonTV\nProduction Company: Stept Studios\nPost Production: Lockt Editorial\n\n\nDirector: Brandon Lavoie\nDP: Jared Levy \nEP: Jon Brogan \nAccount Executive: Paul Muhlbach\nProducer: Laura Mittelberg\nSupervising Producer: Eric Cook \n1st AC: Jake Coury\nGaffer: Evan Cox\nKey Grip: David Klassen \nHMU: Luca Buzas\nAudio Mixer: Bobby Vongham\n35mm Photographer: Brian Chorski\t\nPA: Anthony Cantu, John Maddock\n\nPost Production\nHead of Post: Connor Scofield\nPost EP: Eileen Miraglia\nPost Producer: Erin Bates\nEditor: Brandon Lavoie\nOnline Editor: Ben Ivers\nColorist: Sam Zook at Mom & Pop\nComposer: Jon Sigsworth\nSound Design and Mix: Justin Enoch at Post Mambo\n\n\nSalomonTV\nSenior Marketing Manager – Run & Outdoor: Erin Cooper\nMarketing Specialist: Louis Bertrand",
|
||||
thumbnail_url:
|
||||
"https://i.vimeocdn.com/video/1582157011-37115b15c717a168bf86e2f2855b6bbc23b1cbcee54ff99c8d7b808b459365d6-d_295x166",
|
||||
thumbnail_width: 295,
|
||||
thumbnail_height: 166,
|
||||
thumbnail_url_with_play_button:
|
||||
"https://i.vimeocdn.com/filter/overlay?src0=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F1582157011-37115b15c717a168bf86e2f2855b6bbc23b1cbcee54ff99c8d7b808b459365d6-d_295x166&src1=http%3A%2F%2Ff.vimeocdn.com%2Fp%2Fimages%2Fcrawler_play.png",
|
||||
upload_date: "2023-01-05 12:01:55",
|
||||
video_id: 786_646_692,
|
||||
uri: "/videos/786646692",
|
||||
),
|
||||
)
|
||||
|
||||
stub_request(
|
||||
:get,
|
||||
"https://vimeo.com/api/oembed.json?url=https://vimeo.com/192207770/0faf1dd09d",
|
||||
).to_return(
|
||||
status: 200,
|
||||
body:
|
||||
JSON.dump(
|
||||
type: "video",
|
||||
version: "1.0",
|
||||
provider_name: "Vimeo",
|
||||
provider_url: "https://vimeo.com/",
|
||||
html:
|
||||
"<iframe src=\"https://player.vimeo.com/video/192207770?h=0faf1dd09d&app_id=122963\" width=\"640\" height=\"272\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>",
|
||||
width: 640,
|
||||
height: 272,
|
||||
video_id: 192_207_770,
|
||||
uri: "/videos/192207770:0faf1dd09d",
|
||||
),
|
||||
)
|
||||
end
|
||||
|
||||
context "when public video" do
|
||||
it "creates a lazy video container" do
|
||||
expect(Onebox.preview("https://vimeo.com/786646692").to_s).to match(/lazy-video-container/)
|
||||
end
|
||||
|
||||
it "uses the correct ids" do
|
||||
expect(Onebox.preview("https://vimeo.com/786646692").to_s).to include(
|
||||
'data-video-id="786646692"',
|
||||
)
|
||||
expect(Onebox.preview("https://vimeo.com/786646692").to_s).to include(
|
||||
'src="https://vumbnail.com/786646692.jpg"',
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
context "when unlisted video" do
|
||||
it "creates a lazy video container" do
|
||||
expect(Onebox.preview("https://vimeo.com/192207770/0faf1dd09d").to_s).to match(
|
||||
/lazy-video-container/,
|
||||
)
|
||||
end
|
||||
|
||||
it "uses the correct ids" do
|
||||
expect(Onebox.preview("https://vimeo.com/192207770/0faf1dd09d").to_s).to include(
|
||||
'data-video-id="192207770?h=0faf1dd09d&app_id=122963"',
|
||||
)
|
||||
expect(Onebox.preview("https://vimeo.com/192207770/0faf1dd09d").to_s).to include(
|
||||
'src="https://vumbnail.com/192207770.jpg"',
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user