]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/assets/player/peertube-videojs-plugin.ts
Fix player dispose exception
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / peertube-videojs-plugin.ts
1 // Big thanks to: https://github.com/kmoskwiak/videojs-resolution-switcher
2
3 import * as videojs from 'video.js'
4 import * as WebTorrent from 'webtorrent'
5 import { VideoFile } from '../../../../shared/models/videos/video.model'
6 import { renderVideo } from './video-renderer'
7
8 declare module 'video.js' {
9 interface Player {
10 peertube (): PeerTubePlugin
11 }
12 }
13
14 interface VideoJSComponentInterface {
15 _player: videojs.Player
16
17 new (player: videojs.Player, options?: any)
18
19 registerComponent (name: string, obj: any)
20 }
21
22 type PeertubePluginOptions = {
23 videoFiles: VideoFile[]
24 playerElement: HTMLVideoElement
25 videoViewUrl: string
26 videoDuration: number
27 }
28
29 // https://github.com/danrevah/ngx-pipes/blob/master/src/pipes/math/bytes.ts
30 // Don't import all Angular stuff, just copy the code with shame
31 const dictionaryBytes: Array<{max: number, type: string}> = [
32 { max: 1024, type: 'B' },
33 { max: 1048576, type: 'KB' },
34 { max: 1073741824, type: 'MB' },
35 { max: 1.0995116e12, type: 'GB' }
36 ]
37 function bytes (value) {
38 const format = dictionaryBytes.find(d => value < d.max) || dictionaryBytes[dictionaryBytes.length - 1]
39 const calc = Math.floor(value / (format.max / 1024)).toString()
40
41 return [ calc, format.type ]
42 }
43
44 // videojs typings don't have some method we need
45 const videojsUntyped = videojs as any
46 const webtorrent = new WebTorrent({ dht: false })
47
48 const MenuItem: VideoJSComponentInterface = videojsUntyped.getComponent('MenuItem')
49 class ResolutionMenuItem extends MenuItem {
50
51 constructor (player: videojs.Player, options) {
52 options.selectable = true
53 super(player, options)
54
55 const currentResolution = this.player_.peertube().getCurrentResolution()
56 this.selected(this.options_.id === currentResolution)
57 }
58
59 handleClick (event) {
60 super.handleClick(event)
61
62 this.player_.peertube().updateResolution(this.options_.id)
63 }
64 }
65 MenuItem.registerComponent('ResolutionMenuItem', ResolutionMenuItem)
66
67 const MenuButton: VideoJSComponentInterface = videojsUntyped.getComponent('MenuButton')
68 class ResolutionMenuButton extends MenuButton {
69 label: HTMLElement
70
71 constructor (player: videojs.Player, options) {
72 options.label = 'Quality'
73 super(player, options)
74
75 this.label = document.createElement('span')
76
77 this.el().setAttribute('aria-label', 'Quality')
78 this.controlText('Quality')
79
80 videojsUntyped.dom.addClass(this.label, 'vjs-resolution-button-label')
81 this.el().appendChild(this.label)
82
83 player.peertube().on('videoFileUpdate', () => this.update())
84 }
85
86 createItems () {
87 const menuItems = []
88 for (const videoFile of this.player_.peertube().videoFiles) {
89 menuItems.push(new ResolutionMenuItem(
90 this.player_,
91 {
92 id: videoFile.resolution,
93 label: videoFile.resolutionLabel,
94 src: videoFile.magnetUri,
95 selected: videoFile.resolution === this.currentSelection
96 })
97 )
98 }
99
100 return menuItems
101 }
102
103 update () {
104 if (!this.label) return
105
106 this.label.innerHTML = this.player_.peertube().getCurrentResolutionLabel()
107 this.hide()
108 return super.update()
109 }
110
111 buildCSSClass () {
112 return super.buildCSSClass() + ' vjs-resolution-button'
113 }
114 }
115 MenuButton.registerComponent('ResolutionMenuButton', ResolutionMenuButton)
116
117 const Button: VideoJSComponentInterface = videojsUntyped.getComponent('Button')
118 class PeerTubeLinkButton extends Button {
119
120 createEl () {
121 const link = document.createElement('a')
122 link.href = window.location.href.replace('embed', 'watch')
123 link.innerHTML = 'PeerTube'
124 link.title = 'Go to the video page'
125 link.className = 'vjs-peertube-link'
126 link.target = '_blank'
127
128 return link
129 }
130
131 handleClick () {
132 this.player_.pause()
133 }
134 }
135 Button.registerComponent('PeerTubeLinkButton', PeerTubeLinkButton)
136
137 class WebTorrentButton extends Button {
138 createEl () {
139 const div = document.createElement('div')
140 const subDivWebtorrent = document.createElement('div')
141 div.appendChild(subDivWebtorrent)
142
143 const downloadIcon = document.createElement('span')
144 downloadIcon.classList.add('icon', 'icon-download')
145 subDivWebtorrent.appendChild(downloadIcon)
146
147 const downloadSpeedText = document.createElement('span')
148 downloadSpeedText.classList.add('download-speed-text')
149 const downloadSpeedNumber = document.createElement('span')
150 downloadSpeedNumber.classList.add('download-speed-number')
151 const downloadSpeedUnit = document.createElement('span')
152 downloadSpeedText.appendChild(downloadSpeedNumber)
153 downloadSpeedText.appendChild(downloadSpeedUnit)
154 subDivWebtorrent.appendChild(downloadSpeedText)
155
156 const uploadIcon = document.createElement('span')
157 uploadIcon.classList.add('icon', 'icon-upload')
158 subDivWebtorrent.appendChild(uploadIcon)
159
160 const uploadSpeedText = document.createElement('span')
161 uploadSpeedText.classList.add('upload-speed-text')
162 const uploadSpeedNumber = document.createElement('span')
163 uploadSpeedNumber.classList.add('upload-speed-number')
164 const uploadSpeedUnit = document.createElement('span')
165 uploadSpeedText.appendChild(uploadSpeedNumber)
166 uploadSpeedText.appendChild(uploadSpeedUnit)
167 subDivWebtorrent.appendChild(uploadSpeedText)
168
169 const peersText = document.createElement('span')
170 peersText.classList.add('peers-text')
171 const peersNumber = document.createElement('span')
172 peersNumber.classList.add('peers-number')
173 subDivWebtorrent.appendChild(peersNumber)
174 subDivWebtorrent.appendChild(peersText)
175
176 div.className = 'vjs-peertube'
177 // Hide the stats before we get the info
178 subDivWebtorrent.className = 'vjs-peertube-hidden'
179
180 const subDivHttp = document.createElement('div')
181 subDivHttp.className = 'vjs-peertube-hidden'
182 const subDivHttpText = document.createElement('span')
183 subDivHttpText.classList.add('peers-number')
184 subDivHttpText.textContent = 'HTTP'
185 const subDivFallbackText = document.createElement('span')
186 subDivFallbackText.classList.add('peers-text')
187 subDivFallbackText.textContent = ' fallback'
188
189 subDivHttp.appendChild(subDivHttpText)
190 subDivHttp.appendChild(subDivFallbackText)
191 div.appendChild(subDivHttp)
192
193 this.player_.peertube().on('torrentInfo', (event, data) => {
194 // We are in HTTP fallback
195 if (!data) {
196 subDivHttp.className = 'vjs-peertube-displayed'
197 subDivWebtorrent.className = 'vjs-peertube-hidden'
198
199 return
200 }
201
202 const downloadSpeed = bytes(data.downloadSpeed)
203 const uploadSpeed = bytes(data.uploadSpeed)
204 const numPeers = data.numPeers
205
206 downloadSpeedNumber.textContent = downloadSpeed[ 0 ]
207 downloadSpeedUnit.textContent = ' ' + downloadSpeed[ 1 ]
208
209 uploadSpeedNumber.textContent = uploadSpeed[ 0 ]
210 uploadSpeedUnit.textContent = ' ' + uploadSpeed[ 1 ]
211
212 peersNumber.textContent = numPeers
213 peersText.textContent = ' peers'
214
215 subDivHttp.className = 'vjs-peertube-hidden'
216 subDivWebtorrent.className = 'vjs-peertube-displayed'
217 })
218
219 return div
220 }
221 }
222 Button.registerComponent('WebTorrentButton', WebTorrentButton)
223
224 const Plugin: VideoJSComponentInterface = videojsUntyped.getPlugin('plugin')
225 class PeerTubePlugin extends Plugin {
226 private player: any
227 private currentVideoFile: VideoFile
228 private playerElement: HTMLVideoElement
229 private videoFiles: VideoFile[]
230 private torrent: WebTorrent.Torrent
231 private autoplay = false
232 private videoViewUrl: string
233 private videoDuration: number
234 private videoViewInterval
235 private torrentInfoInterval
236 private savePlayerSrcFunction: Function
237
238 constructor (player: videojs.Player, options: PeertubePluginOptions) {
239 super(player, options)
240
241 // Fix canplay event on google chrome by disabling default videojs autoplay
242 this.autoplay = this.player.options_.autoplay
243 this.player.options_.autoplay = false
244
245 this.videoFiles = options.videoFiles
246 this.videoViewUrl = options.videoViewUrl
247 this.videoDuration = options.videoDuration
248
249 this.savePlayerSrcFunction = this.player.src
250 // Hack to "simulate" src link in video.js >= 6
251 // Without this, we can't play the video after pausing it
252 // https://github.com/videojs/video.js/blob/master/src/js/player.js#L1633
253 this.player.src = () => true
254
255 this.playerElement = options.playerElement
256
257 this.player.ready(() => {
258 this.initializePlayer(options)
259 this.runTorrentInfoScheduler()
260 this.runViewAdd()
261 })
262 }
263
264 dispose () {
265 clearInterval(this.videoViewInterval)
266 clearInterval(this.torrentInfoInterval)
267
268 // Don't need to destroy renderer, video player will be destroyed
269 this.flushVideoFile(this.currentVideoFile, false)
270 }
271
272 getCurrentResolution () {
273 return this.currentVideoFile ? this.currentVideoFile.resolution : -1
274 }
275
276 getCurrentResolutionLabel () {
277 return this.currentVideoFile ? this.currentVideoFile.resolutionLabel : ''
278 }
279
280 updateVideoFile (videoFile?: VideoFile, done?: () => void) {
281 if (done === undefined) {
282 done = () => { /* empty */ }
283 }
284
285 // Pick the first one
286 if (videoFile === undefined) {
287 videoFile = this.videoFiles[0]
288 }
289
290 // Don't add the same video file once again
291 if (this.currentVideoFile !== undefined && this.currentVideoFile.magnetUri === videoFile.magnetUri) {
292 return
293 }
294
295 // Do not display error to user because we will have multiple fallbacks
296 this.disableErrorDisplay()
297
298 this.player.src = () => true
299 this.player.playbackRate(1)
300
301 const previousVideoFile = this.currentVideoFile
302 this.currentVideoFile = videoFile
303
304 console.log('Adding ' + videoFile.magnetUri + '.')
305 this.torrent = webtorrent.add(videoFile.magnetUri, torrent => {
306 console.log('Added ' + videoFile.magnetUri + '.')
307
308 this.flushVideoFile(previousVideoFile)
309
310 const options = { autoplay: true, controls: true }
311 renderVideo(torrent.files[0], this.playerElement, options,(err, renderer) => {
312 if (err) return this.fallbackToHttp()
313
314 this.renderer = renderer
315 if (!this.player.paused()) {
316 const playPromise = this.player.play()
317 if (playPromise !== undefined) return playPromise.then(done)
318
319 return done()
320 }
321
322 return done()
323 })
324 })
325
326 this.torrent.on('error', err => this.handleError(err))
327 this.torrent.on('warning', (err: any) => {
328 // We don't support HTTP tracker but we don't care -> we use the web socket tracker
329 if (err.message.indexOf('Unsupported tracker protocol') !== -1) return
330 // Users don't care about issues with WebRTC, but developers do so log it in the console
331 if (err.message.indexOf('Ice connection failed') !== -1) {
332 console.error(err)
333 return
334 }
335
336 return this.handleError(err)
337 })
338
339 this.trigger('videoFileUpdate')
340 }
341
342 updateResolution (resolution) {
343 // Remember player state
344 const currentTime = this.player.currentTime()
345 const isPaused = this.player.paused()
346
347 // Remove poster to have black background
348 this.playerElement.poster = ''
349
350 // Hide bigPlayButton
351 if (!isPaused) {
352 this.player.bigPlayButton.hide()
353 }
354
355 const newVideoFile = this.videoFiles.find(f => f.resolution === resolution)
356 this.updateVideoFile(newVideoFile, () => {
357 this.player.currentTime(currentTime)
358 this.player.handleTechSeeked_()
359 })
360 }
361
362 flushVideoFile (videoFile: VideoFile, destroyRenderer = true) {
363 if (videoFile !== undefined && webtorrent.get(videoFile.magnetUri)) {
364 if (destroyRenderer === true && this.renderer && this.renderer.destroy) this.renderer.destroy()
365
366 webtorrent.remove(videoFile.magnetUri)
367 console.log('Removed ' + videoFile.magnetUri)
368 }
369 }
370
371 setVideoFiles (files: VideoFile[], videoViewUrl: string, videoDuration: number) {
372 this.videoViewUrl = videoViewUrl
373 this.videoDuration = videoDuration
374 this.videoFiles = files
375
376 // Re run view add for the new video
377 this.runViewAdd()
378 this.updateVideoFile(undefined, () => this.player.play())
379 }
380
381 private initializePlayer (options: PeertubePluginOptions) {
382 if (this.autoplay === true) {
383 this.updateVideoFile(undefined, () => this.player.play())
384 } else {
385 this.player.one('play', () => {
386 this.player.pause()
387 this.updateVideoFile(undefined, () => this.player.play())
388 })
389 }
390 }
391
392 private runTorrentInfoScheduler () {
393 this.torrentInfoInterval = setInterval(() => {
394 // Not initialized yet
395 if (this.torrent === undefined) return
396
397 // Http fallback
398 if (this.torrent === null) return this.trigger('torrentInfo', false)
399
400 return this.trigger('torrentInfo', {
401 downloadSpeed: this.torrent.downloadSpeed,
402 numPeers: this.torrent.numPeers,
403 uploadSpeed: this.torrent.uploadSpeed
404 })
405 }, 1000)
406 }
407
408 private runViewAdd () {
409 this.clearVideoViewInterval()
410
411 // After 30 seconds (or 3/4 of the video), add a view to the video
412 let minSecondsToView = 30
413
414 if (this.videoDuration < minSecondsToView) minSecondsToView = (this.videoDuration * 3) / 4
415
416 let secondsViewed = 0
417 this.videoViewInterval = setInterval(() => {
418 if (this.player && !this.player.paused()) {
419 secondsViewed += 1
420
421 if (secondsViewed > minSecondsToView) {
422 this.clearVideoViewInterval()
423
424 this.addViewToVideo().catch(err => console.error(err))
425 }
426 }
427 }, 1000)
428 }
429
430 private clearVideoViewInterval () {
431 if (this.videoViewInterval !== undefined) {
432 clearInterval(this.videoViewInterval)
433 this.videoViewInterval = undefined
434 }
435 }
436
437 private addViewToVideo () {
438 return fetch(this.videoViewUrl, { method: 'POST' })
439 }
440
441 private fallbackToHttp () {
442 this.flushVideoFile(this.currentVideoFile, true)
443 this.torrent = null
444
445 // Enable error display now this is our last fallback
446 this.player.one('error', () => this.enableErrorDisplay())
447
448 const httpUrl = this.currentVideoFile.fileUrl
449 this.player.src = this.savePlayerSrcFunction
450 this.player.src(httpUrl)
451 this.player.play()
452 }
453
454 private handleError (err: Error | string) {
455 return this.player.trigger('customError', { err })
456 }
457
458 private enableErrorDisplay () {
459 this.player.addClass('vjs-error-display-enabled')
460 }
461
462 private disableErrorDisplay () {
463 this.player.removeClass('vjs-error-display-enabled')
464 }
465 }
466 videojsUntyped.registerPlugin('peertube', PeerTubePlugin)