]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/assets/player/peertube-player-manager.ts
Add logic to handle playlist in embed
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / peertube-player-manager.ts
CommitLineData
512decf3 1import 'videojs-hotkeys/videojs.hotkeys'
2adfc7ea
C
2import 'videojs-dock'
3import 'videojs-contextmenu-ui'
4import 'videojs-contrib-quality-levels'
f5fcd9f7 5import './upnext/end-card'
3bcb4fd7 6import './upnext/upnext-plugin'
62ab565d 7import './bezels/bezels-plugin'
2adfc7ea 8import './peertube-plugin'
1dc240a9 9import './videojs-components/next-video-button'
f5fcd9f7 10import './videojs-components/p2p-info-button'
2adfc7ea 11import './videojs-components/peertube-link-button'
f5fcd9f7 12import './videojs-components/peertube-load-progress-bar'
2adfc7ea 13import './videojs-components/resolution-menu-button'
f5fcd9f7
C
14import './videojs-components/resolution-menu-item'
15import './videojs-components/settings-dialog'
2adfc7ea 16import './videojs-components/settings-menu-button'
f5fcd9f7
C
17import './videojs-components/settings-menu-item'
18import './videojs-components/settings-panel'
19import './videojs-components/settings-panel-child'
2adfc7ea 20import './videojs-components/theater-button'
3e2bc4ea 21import videojs from 'video.js'
bd45d503
C
22import { VideoFile } from '@shared/models'
23import { isDefaultLocale } from '@shared/core-utils/i18n'
da332417 24import { RedundancyUrlManager } from './p2p-media-loader/redundancy-url-manager'
3e2bc4ea
C
25import { segmentUrlBuilderFactory } from './p2p-media-loader/segment-url-builder'
26import { segmentValidatorFactory } from './p2p-media-loader/segment-validator'
43c66a91 27import { getStoredP2PEnabled } from './peertube-player-local-storage'
3e2bc4ea 28import { P2PMediaLoaderPluginOptions, UserWatching, VideoJSCaption, VideoJSPluginOptions } from './peertube-videojs-typings'
3f9c4955 29import { TranslationsManager } from './translations-manager'
3e2bc4ea 30import { buildVideoEmbed, buildVideoLink, copyToClipboard, getRtcConfig, isIOS, isSafari } from './utils'
2adfc7ea
C
31
32// Change 'Playback Rate' to 'Speed' (smaller for our settings menu)
f5fcd9f7
C
33(videojs.getComponent('PlaybackRateMenuButton') as any).prototype.controlText_ = 'Speed'
34
35const CaptionsButton = videojs.getComponent('CaptionsButton') as any
2adfc7ea 36// Change Captions to Subtitles/CC
f5fcd9f7 37CaptionsButton.prototype.controlText_ = 'Subtitles/CC'
2adfc7ea 38// We just want to display 'Off' instead of 'captions off', keep a space so the variable == true (hacky I know)
f5fcd9f7 39CaptionsButton.prototype.label_ = ' '
2adfc7ea 40
3b6f205c 41export type PlayerMode = 'webtorrent' | 'p2p-media-loader'
2adfc7ea 42
3b6f205c 43export type WebtorrentOptions = {
2adfc7ea
C
44 videoFiles: VideoFile[]
45}
46
3b6f205c 47export type P2PMediaLoaderOptions = {
2adfc7ea 48 playlistUrl: string
09209296 49 segmentsSha256Url: string
4348a27d 50 trackerAnnounce: string[]
09209296
C
51 redundancyBaseUrls: string[]
52 videoFiles: VideoFile[]
2adfc7ea
C
53}
54
5efab546
C
55export interface CustomizationOptions {
56 startTime: number | string
57 stopTime: number | string
58
59 controls?: boolean
60 muted?: boolean
61 loop?: boolean
62 subtitle?: string
96f6278f 63 resume?: string
5efab546
C
64
65 peertubeLink: boolean
66}
67
68export interface CommonOptions extends CustomizationOptions {
2adfc7ea 69 playerElement: HTMLVideoElement
6ec0b75b 70 onPlayerElementChange: (element: HTMLVideoElement) => void
2adfc7ea
C
71
72 autoplay: boolean
1dc240a9 73 nextVideo?: Function
2adfc7ea
C
74 videoDuration: number
75 enableHotkeys: boolean
76 inactivityTimeout: number
77 poster: string
2adfc7ea 78
3d9a63d3 79 theaterButton: boolean
2adfc7ea 80 captions: boolean
2adfc7ea
C
81
82 videoViewUrl: string
83 embedUrl: string
84
85 language?: string
2adfc7ea
C
86
87 videoCaptions: VideoJSCaption[]
88
89 userWatching?: UserWatching
90
91 serverUrl: string
92}
93
94export type PeertubePlayerManagerOptions = {
95 common: CommonOptions,
6ec0b75b 96 webtorrent: WebtorrentOptions,
2adfc7ea
C
97 p2pMediaLoader?: P2PMediaLoaderOptions
98}
99
100export class PeertubePlayerManager {
6ec0b75b 101 private static playerElementClassName: string
7e37e111 102 private static onPlayerChange: (player: videojs.Player) => void
2adfc7ea 103
7e37e111 104 static async initialize (mode: PlayerMode, options: PeertubePlayerManagerOptions, onPlayerChange: (player: videojs.Player) => void) {
4348a27d
C
105 let p2pMediaLoader: any
106
bfbd9128 107 this.onPlayerChange = onPlayerChange
6ec0b75b
C
108 this.playerElementClassName = options.common.playerElement.className
109
09209296 110 if (mode === 'webtorrent') await import('./webtorrent/webtorrent-plugin')
4348a27d
C
111 if (mode === 'p2p-media-loader') {
112 [ p2pMediaLoader ] = await Promise.all([
113 import('p2p-media-loader-hlsjs'),
09209296 114 import('./p2p-media-loader/p2p-media-loader-plugin')
4348a27d
C
115 ])
116 }
2adfc7ea 117
4348a27d 118 const videojsOptions = this.getVideojsOptions(mode, options, p2pMediaLoader)
2adfc7ea 119
3f9c4955 120 await TranslationsManager.loadLocaleInVideoJS(options.common.serverUrl, options.common.language, videojs)
2adfc7ea
C
121
122 const self = this
123 return new Promise(res => {
7e37e111 124 videojs(options.common.playerElement, videojsOptions, function (this: videojs.Player) {
2adfc7ea
C
125 const player = this
126
536598cf
C
127 let alreadyFallback = false
128
f5fcd9f7 129 player.tech(true).one('error', () => {
536598cf
C
130 if (!alreadyFallback) self.maybeFallbackToWebTorrent(mode, player, options)
131 alreadyFallback = true
132 })
133
134 player.one('error', () => {
135 if (!alreadyFallback) self.maybeFallbackToWebTorrent(mode, player, options)
136 alreadyFallback = true
137 })
6ec0b75b 138
2adfc7ea
C
139 self.addContextMenu(mode, player, options.common.embedUrl)
140
10475dea
RK
141 player.bezels()
142
2adfc7ea
C
143 return res(player)
144 })
145 })
146 }
147
96cb4527
C
148 private static async maybeFallbackToWebTorrent (currentMode: PlayerMode, player: any, options: PeertubePlayerManagerOptions) {
149 if (currentMode === 'webtorrent') return
150
151 console.log('Fallback to webtorrent.')
152
6ec0b75b
C
153 const newVideoElement = document.createElement('video')
154 newVideoElement.className = this.playerElementClassName
155
156 // VideoJS wraps our video element inside a div
96cb4527
C
157 let currentParentPlayerElement = options.common.playerElement.parentNode
158 // Fix on IOS, don't ask me why
159 if (!currentParentPlayerElement) currentParentPlayerElement = document.getElementById(options.common.playerElement.id).parentNode
160
6ec0b75b
C
161 currentParentPlayerElement.parentNode.insertBefore(newVideoElement, currentParentPlayerElement)
162
163 options.common.playerElement = newVideoElement
164 options.common.onPlayerElementChange(newVideoElement)
165
166 player.dispose()
167
168 await import('./webtorrent/webtorrent-plugin')
169
170 const mode = 'webtorrent'
171 const videojsOptions = this.getVideojsOptions(mode, options)
172
173 const self = this
7e37e111 174 videojs(newVideoElement, videojsOptions, function (this: videojs.Player) {
6ec0b75b
C
175 const player = this
176
177 self.addContextMenu(mode, player, options.common.embedUrl)
bfbd9128
C
178
179 PeertubePlayerManager.onPlayerChange(player)
6ec0b75b
C
180 })
181 }
182
f5fcd9f7
C
183 private static getVideojsOptions (
184 mode: PlayerMode,
185 options: PeertubePlayerManagerOptions,
186 p2pMediaLoaderModule?: any
7e37e111 187 ): videojs.PlayerOptions {
2adfc7ea 188 const commonOptions = options.common
09209296 189
72efdda5 190 let autoplay = this.getAutoPlayValue(commonOptions.autoplay)
3b6f205c 191 let html5 = {}
2adfc7ea
C
192
193 const plugins: VideoJSPluginOptions = {
194 peertube: {
09209296
C
195 mode,
196 autoplay, // Use peertube plugin autoplay because we get the file by webtorrent
2adfc7ea
C
197 videoViewUrl: commonOptions.videoViewUrl,
198 videoDuration: commonOptions.videoDuration,
2adfc7ea
C
199 userWatching: commonOptions.userWatching,
200 subtitle: commonOptions.subtitle,
f0a39880
C
201 videoCaptions: commonOptions.videoCaptions,
202 stopTime: commonOptions.stopTime
2adfc7ea
C
203 }
204 }
205
39aad8cc
C
206 if (commonOptions.enableHotkeys === true) {
207 PeertubePlayerManager.addHotkeysOptions(plugins)
208 }
09209296 209
39aad8cc 210 if (mode === 'p2p-media-loader') {
83fcadac 211 const { hlsjs } = PeertubePlayerManager.addP2PMediaLoaderOptions(plugins, options, p2pMediaLoaderModule)
2adfc7ea 212
83fcadac 213 html5 = hlsjs.html5
2adfc7ea
C
214 }
215
6ec0b75b 216 if (mode === 'webtorrent') {
39aad8cc 217 PeertubePlayerManager.addWebTorrentOptions(plugins, options)
09209296
C
218
219 // WebTorrent plugin handles autoplay, because we do some hackish stuff in there
220 autoplay = false
2adfc7ea
C
221 }
222
223 const videojsOptions = {
3b6f205c
C
224 html5,
225
2adfc7ea 226 // We don't use text track settings for now
f5fcd9f7 227 textTrackSettings: false as any, // FIXME: typings
2adfc7ea
C
228 controls: commonOptions.controls !== undefined ? commonOptions.controls : true,
229 loop: commonOptions.loop !== undefined ? commonOptions.loop : false,
230
231 muted: commonOptions.muted !== undefined
232 ? commonOptions.muted
233 : undefined, // Undefined so the player knows it has to check the local storage
234
72efdda5 235 autoplay: this.getAutoPlayValue(autoplay),
39aad8cc 236
2adfc7ea 237 poster: commonOptions.poster,
2adfc7ea
C
238 inactivityTimeout: commonOptions.inactivityTimeout,
239 playbackRates: [ 0.5, 0.75, 1, 1.25, 1.5, 2 ],
39aad8cc 240
2adfc7ea 241 plugins,
39aad8cc 242
2adfc7ea
C
243 controlBar: {
244 children: this.getControlBarChildren(mode, {
245 captions: commonOptions.captions,
246 peertubeLink: commonOptions.peertubeLink,
1dc240a9
RK
247 theaterButton: commonOptions.theaterButton,
248 nextVideo: commonOptions.nextVideo
f5fcd9f7 249 }) as any // FIXME: typings
2adfc7ea
C
250 }
251 }
252
39aad8cc
C
253 if (commonOptions.language && !isDefaultLocale(commonOptions.language)) {
254 Object.assign(videojsOptions, { language: commonOptions.language })
255 }
2adfc7ea 256
39aad8cc
C
257 return videojsOptions
258 }
2adfc7ea 259
39aad8cc
C
260 private static addP2PMediaLoaderOptions (
261 plugins: VideoJSPluginOptions,
262 options: PeertubePlayerManagerOptions,
263 p2pMediaLoaderModule: any
264 ) {
265 const p2pMediaLoaderOptions = options.p2pMediaLoader
266 const commonOptions = options.common
267
268 const trackerAnnounce = p2pMediaLoaderOptions.trackerAnnounce
269 .filter(t => t.startsWith('ws'))
270
271 const redundancyUrlManager = new RedundancyUrlManager(options.p2pMediaLoader.redundancyBaseUrls)
272
273 const p2pMediaLoader: P2PMediaLoaderPluginOptions = {
274 redundancyUrlManager,
275 type: 'application/x-mpegURL',
276 startTime: commonOptions.startTime,
277 src: p2pMediaLoaderOptions.playlistUrl
278 }
279
280 let consumeOnly = false
281 // FIXME: typings
fe9d0531 282 if (navigator && (navigator as any).connection && (navigator as any).connection.type === 'cellular') {
39aad8cc
C
283 console.log('We are on a cellular connection: disabling seeding.')
284 consumeOnly = true
285 }
286
287 const p2pMediaLoaderConfig = {
288 loader: {
289 trackerAnnounce,
290 segmentValidator: segmentValidatorFactory(options.p2pMediaLoader.segmentsSha256Url),
291 rtcConfig: getRtcConfig(),
292 requiredSegmentsPriority: 5,
293 segmentUrlBuilder: segmentUrlBuilderFactory(redundancyUrlManager),
294 useP2P: getStoredP2PEnabled(),
295 consumeOnly
296 },
297 segments: {
298 swarmId: p2pMediaLoaderOptions.playlistUrl
299 }
300 }
83fcadac 301 const hlsjs = {
39aad8cc 302 levelLabelHandler: (level: { height: number, width: number }) => {
dca0fe12
C
303 const resolution = Math.min(level.height || 0, level.width || 0)
304
305 const file = p2pMediaLoaderOptions.videoFiles.find(f => f.resolution.id === resolution)
306 if (!file) {
307 console.error('Cannot find video file for level %d.', level.height)
308 return level.height
309 }
39aad8cc
C
310
311 let label = file.resolution.label
312 if (file.fps >= 50) label += file.fps
313
314 return label
315 },
316 html5: {
317 hlsjsConfig: {
318 capLevelToPlayerSize: true,
319 autoStartLoad: false,
320 liveSyncDurationCount: 7,
321 loader: new p2pMediaLoaderModule.Engine(p2pMediaLoaderConfig).createLoaderClass()
2adfc7ea 322 }
39aad8cc 323 }
2adfc7ea
C
324 }
325
83fcadac 326 const toAssign = { p2pMediaLoader, hlsjs }
39aad8cc
C
327 Object.assign(plugins, toAssign)
328
329 return toAssign
330 }
331
332 private static addWebTorrentOptions (plugins: VideoJSPluginOptions, options: PeertubePlayerManagerOptions) {
333 const commonOptions = options.common
334 const webtorrentOptions = options.webtorrent
335
336 const webtorrent = {
337 autoplay: commonOptions.autoplay,
338 videoDuration: commonOptions.videoDuration,
339 playerElement: commonOptions.playerElement,
340 videoFiles: webtorrentOptions.videoFiles,
341 startTime: commonOptions.startTime
2adfc7ea
C
342 }
343
39aad8cc 344 Object.assign(plugins, { webtorrent })
2adfc7ea
C
345 }
346
347 private static getControlBarChildren (mode: PlayerMode, options: {
348 peertubeLink: boolean
3d9a63d3 349 theaterButton: boolean,
1dc240a9
RK
350 captions: boolean,
351 nextVideo?: Function
2adfc7ea
C
352 }) {
353 const settingEntries = []
354 const loadProgressBar = mode === 'webtorrent' ? 'peerTubeLoadProgressBar' : 'loadProgressBar'
355
356 // Keep an order
357 settingEntries.push('playbackRateMenuButton')
358 if (options.captions === true) settingEntries.push('captionsButton')
359 settingEntries.push('resolutionMenuButton')
360
361 const children = {
1dc240a9
RK
362 'playToggle': {}
363 }
364
365 if (options.nextVideo) {
366 Object.assign(children, {
367 'nextVideoButton': {
368 handler: options.nextVideo
369 }
370 })
371 }
372
373 Object.assign(children, {
2adfc7ea
C
374 'currentTimeDisplay': {},
375 'timeDivider': {},
376 'durationDisplay': {},
377 'liveDisplay': {},
378
379 'flexibleWidthSpacer': {},
380 'progressControl': {
381 children: {
382 'seekBar': {
383 children: {
384 [loadProgressBar]: {},
385 'mouseTimeDisplay': {},
386 'playProgressBar': {}
387 }
388 }
389 }
390 },
391
392 'p2PInfoButton': {},
393
394 'muteToggle': {},
395 'volumeControl': {},
396
397 'settingsButton': {
398 setup: {
399 maxHeightOffset: 40
400 },
401 entries: settingEntries
402 }
1dc240a9 403 })
2adfc7ea
C
404
405 if (options.peertubeLink === true) {
406 Object.assign(children, {
407 'peerTubeLinkButton': {}
408 })
409 }
410
3d9a63d3 411 if (options.theaterButton === true) {
2adfc7ea
C
412 Object.assign(children, {
413 'theaterButton': {}
414 })
415 }
416
417 Object.assign(children, {
418 'fullscreenToggle': {}
419 })
420
421 return children
422 }
423
7e37e111 424 private static addContextMenu (mode: PlayerMode, player: videojs.Player, videoEmbedUrl: string) {
2adfc7ea
C
425 const content = [
426 {
427 label: player.localize('Copy the video URL'),
428 listener: function () {
429 copyToClipboard(buildVideoLink())
430 }
431 },
432 {
433 label: player.localize('Copy the video URL at the current time'),
7e37e111 434 listener: function (this: videojs.Player) {
f5fcd9f7 435 copyToClipboard(buildVideoLink({ startTime: this.currentTime() }))
2adfc7ea
C
436 }
437 },
438 {
439 label: player.localize('Copy embed code'),
440 listener: () => {
441 copyToClipboard(buildVideoEmbed(videoEmbedUrl))
442 }
443 }
444 ]
445
446 if (mode === 'webtorrent') {
447 content.push({
448 label: player.localize('Copy magnet URI'),
7e37e111 449 listener: function (this: videojs.Player) {
f5fcd9f7 450 copyToClipboard(this.webtorrent().getCurrentVideoFile().magnetUri)
2adfc7ea
C
451 }
452 })
453 }
454
455 player.contextmenuUI({ content })
456 }
457
39aad8cc
C
458 private static addHotkeysOptions (plugins: VideoJSPluginOptions) {
459 Object.assign(plugins, {
460 hotkeys: {
7ede74ad
C
461 skipInitialFocus: true,
462 enableInactiveFocus: false,
463 captureDocumentHotkeys: true,
464 documentHotkeysFocusElementFilter: (e: HTMLElement) => {
e85bfe96
C
465 const tagName = e.tagName.toLowerCase()
466 return e.id === 'content' || tagName === 'body' || tagName === 'video'
7ede74ad
C
467 },
468
39aad8cc
C
469 enableVolumeScroll: false,
470 enableModifiersForNumbers: false,
471
472 fullscreenKey: function (event: KeyboardEvent) {
473 // fullscreen with the f key or Ctrl+Enter
474 return event.key === 'f' || (event.ctrlKey && event.key === 'Enter')
475 },
476
477 seekStep: function (event: KeyboardEvent) {
478 // mimic VLC seek behavior, and default to 5 (original value is 5).
479 if (event.ctrlKey && event.altKey) {
480 return 5 * 60
481 } else if (event.ctrlKey) {
482 return 60
483 } else if (event.altKey) {
484 return 10
485 } else {
486 return 5
487 }
488 },
489
490 customKeys: {
491 increasePlaybackRateKey: {
492 key: function (event: KeyboardEvent) {
493 return event.key === '>'
494 },
495 handler: function (player: videojs.Player) {
f5fcd9f7
C
496 const newValue = Math.min(player.playbackRate() + 0.1, 5)
497 player.playbackRate(parseFloat(newValue.toFixed(2)))
39aad8cc
C
498 }
499 },
500 decreasePlaybackRateKey: {
501 key: function (event: KeyboardEvent) {
502 return event.key === '<'
503 },
504 handler: function (player: videojs.Player) {
f5fcd9f7
C
505 const newValue = Math.max(player.playbackRate() - 0.1, 0.10)
506 player.playbackRate(parseFloat(newValue.toFixed(2)))
39aad8cc
C
507 }
508 },
509 frameByFrame: {
510 key: function (event: KeyboardEvent) {
511 return event.key === '.'
512 },
513 handler: function (player: videojs.Player) {
514 player.pause()
515 // Calculate movement distance (assuming 30 fps)
516 const dist = 1 / 30
517 player.currentTime(player.currentTime() + dist)
518 }
519 }
520 }
521 }
522 })
523 }
64228474 524
72efdda5
C
525 private static getAutoPlayValue (autoplay: any) {
526 if (autoplay !== true) return autoplay
527
72efdda5 528 // Giving up with iOS
3e2bc4ea 529 if (isIOS()) return false
72efdda5 530
64228474
C
531 // We have issues with autoplay and Safari.
532 // any that tries to play using auto mute seems to work
3e2bc4ea 533 if (isSafari()) return 'any'
64228474
C
534
535 return 'play'
536 }
2adfc7ea
C
537}
538
539// ############################################################################
540
541export {
542 videojs
543}