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