]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/assets/player/shared/peertube/peertube-plugin.ts
Upgrade hls.js
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / shared / peertube / peertube-plugin.ts
CommitLineData
9af2acce 1import debug from 'debug'
15a7eafb 2import videojs from 'video.js'
42b40636 3import { logger } from '@root-helpers/logger'
57d65032 4import { isMobile } from '@root-helpers/web-browser'
15a7eafb 5import { timeToInt } from '@shared/core-utils'
384ba8b7 6import { VideoView, VideoViewEvent } from '@shared/models/videos'
2adfc7ea
C
7import {
8 getStoredLastSubtitle,
9 getStoredMute,
10 getStoredVolume,
11 saveLastSubtitle,
12 saveMuteInStore,
58b9ce30 13 saveVideoWatchHistory,
2adfc7ea 14 saveVolumeInStore
57d65032 15} from '../../peertube-player-local-storage'
384ba8b7 16import { PeerTubePluginOptions, VideoJSCaption } from '../../types'
57d65032 17import { SettingsButton } from '../settings/settings-menu-button'
f1a0555a 18
42b40636 19const debugLogger = debug('peertube:player:peertube')
2adfc7ea 20
f5fcd9f7
C
21const Plugin = videojs.getPlugin('plugin')
22
2adfc7ea 23class PeerTubePlugin extends Plugin {
2adfc7ea 24 private readonly videoViewUrl: string
3545e72c 25 private readonly authorizationHeader: () => string
384ba8b7
C
26
27 private readonly videoUUID: string
28 private readonly startTime: number
29
6de07622 30 private readonly videoViewIntervalMs: number
2adfc7ea 31
2adfc7ea
C
32 private videoCaptions: VideoJSCaption[]
33 private defaultSubtitle: string
34
35 private videoViewInterval: any
10f26f42 36
d1f21ebb
C
37 private menuOpened = false
38 private mouseInControlBar = false
dc9ff312
C
39 private mouseInSettings = false
40 private readonly initialInactivityTimeout: number
d1f21ebb 41
7e37e111 42 constructor (player: videojs.Player, options?: PeerTubePluginOptions) {
f5fcd9f7 43 super(player)
2adfc7ea 44
2adfc7ea 45 this.videoViewUrl = options.videoViewUrl
384ba8b7
C
46 this.authorizationHeader = options.authorizationHeader
47 this.videoUUID = options.videoUUID
48 this.startTime = timeToInt(options.startTime)
6de07622 49 this.videoViewIntervalMs = options.videoViewIntervalMs
384ba8b7 50
2adfc7ea 51 this.videoCaptions = options.videoCaptions
dc9ff312 52 this.initialInactivityTimeout = this.player.options_.inactivityTimeout
d1f21ebb 53
59a643aa 54 if (options.autoplay !== false) this.player.addClass('vjs-has-autoplay')
6ec0b75b
C
55
56 this.player.on('autoplay-failure', () => {
57 this.player.removeClass('vjs-has-autoplay')
58 })
2adfc7ea
C
59
60 this.player.ready(() => {
61 const playerOptions = this.player.options_
62
63 const volume = getStoredVolume()
64 if (volume !== undefined) this.player.volume(volume)
65
66 const muted = playerOptions.muted !== undefined ? playerOptions.muted : getStoredMute()
67 if (muted !== undefined) this.player.muted(muted)
68
69 this.defaultSubtitle = options.subtitle || getStoredLastSubtitle()
70
71 this.player.on('volumechange', () => {
72 saveVolumeInStore(this.player.volume())
73 saveMuteInStore(this.player.muted())
74 })
75
f0a39880
C
76 if (options.stopTime) {
77 const stopTime = timeToInt(options.stopTime)
e2f01c47 78 const self = this
f0a39880 79
e2f01c47
C
80 this.player.on('timeupdate', function onTimeUpdate () {
81 if (self.player.currentTime() > stopTime) {
82 self.player.pause()
83 self.player.trigger('stopped')
84
85 self.player.off('timeupdate', onTimeUpdate)
86 }
f0a39880
C
87 })
88 }
89
e367da94 90 this.player.textTracks().addEventListener('change', () => {
f5fcd9f7 91 const showing = this.player.textTracks().tracks_.find(t => {
2adfc7ea
C
92 return t.kind === 'captions' && t.mode === 'showing'
93 })
94
95 if (!showing) {
96 saveLastSubtitle('off')
97 return
98 }
99
100 saveLastSubtitle(showing.language)
101 })
102
103 this.player.on('sourcechange', () => this.initCaptions())
104
105 this.player.duration(options.videoDuration)
106
107 this.initializePlayer()
384ba8b7 108 this.runUserViewing()
2adfc7ea
C
109 })
110 }
111
112 dispose () {
f0a39880 113 if (this.videoViewInterval) clearInterval(this.videoViewInterval)
2adfc7ea
C
114 }
115
dc9ff312
C
116 onMenuOpened () {
117 this.menuOpened = true
d1f21ebb
C
118 this.alterInactivity()
119 }
120
121 onMenuClosed () {
dc9ff312 122 this.menuOpened = false
d1f21ebb
C
123 this.alterInactivity()
124 }
125
c4207f97 126 displayFatalError () {
f2a16d93 127 this.player.loadingSpinner.hide()
128
129 const buildModal = (error: MediaError) => {
130 const localize = this.player.localize.bind(this.player)
131
132 const wrapper = document.createElement('div')
133 const header = document.createElement('h1')
134 header.innerText = localize('Failed to play video')
135 wrapper.appendChild(header)
136 const desc = document.createElement('div')
137 desc.innerText = localize('The video failed to play due to technical issues.')
138 wrapper.appendChild(desc)
139 const details = document.createElement('p')
140 details.classList.add('error-details')
141 details.innerText = error.message
142 wrapper.appendChild(details)
143
144 return wrapper
145 }
146
147 const modal = this.player.createModal(buildModal(this.player.error()), {
148 temporary: false,
149 uncloseable: true
150 })
151 modal.addClass('vjs-custom-error-display')
152
c4207f97
C
153 this.player.addClass('vjs-error-display-enabled')
154 }
155
156 hideFatalError () {
157 this.player.removeClass('vjs-error-display-enabled')
158 }
159
2adfc7ea
C
160 private initializePlayer () {
161 if (isMobile()) this.player.addClass('vjs-is-mobile')
162
163 this.initSmoothProgressBar()
164
165 this.initCaptions()
166
d1f21ebb 167 this.listenControlBarMouse()
07d6044e
C
168
169 this.listenFullScreenChange()
2adfc7ea
C
170 }
171
fd3c2e87
C
172 // ---------------------------------------------------------------------------
173
384ba8b7
C
174 private runUserViewing () {
175 let lastCurrentTime = this.startTime
176 let lastViewEvent: VideoViewEvent
2adfc7ea 177
384ba8b7
C
178 this.player.one('play', () => {
179 this.notifyUserIsWatching(this.startTime, lastViewEvent)
180 })
2adfc7ea 181
384ba8b7
C
182 this.player.on('seeked', () => {
183 // Don't take into account small seek events
184 if (Math.abs(this.player.currentTime() - lastCurrentTime) < 3) return
2adfc7ea 185
384ba8b7
C
186 lastViewEvent = 'seek'
187 })
2adfc7ea 188
384ba8b7 189 this.player.one('ended', () => {
6de07622 190 const currentTime = Math.floor(this.player.duration())
384ba8b7 191 lastCurrentTime = currentTime
2adfc7ea 192
384ba8b7 193 this.notifyUserIsWatching(currentTime, lastViewEvent)
2adfc7ea 194
384ba8b7
C
195 lastViewEvent = undefined
196 })
197
198 this.videoViewInterval = setInterval(() => {
6de07622 199 const currentTime = Math.floor(this.player.currentTime())
2adfc7ea 200
384ba8b7
C
201 // No need to update
202 if (currentTime === lastCurrentTime) return
2adfc7ea 203
384ba8b7 204 lastCurrentTime = currentTime
2adfc7ea 205
384ba8b7 206 this.notifyUserIsWatching(currentTime, lastViewEvent)
42b40636 207 .catch(err => logger.error('Cannot notify user is watching.', err))
384ba8b7
C
208
209 lastViewEvent = undefined
6de07622 210 }, this.videoViewIntervalMs)
2adfc7ea
C
211 }
212
384ba8b7 213 private notifyUserIsWatching (currentTime: number, viewEvent: VideoViewEvent) {
626b76dc
C
214 // Server won't save history, so save the video position in local storage
215 if (!this.authorizationHeader()) {
216 saveVideoWatchHistory(this.videoUUID, currentTime)
384ba8b7 217 }
2adfc7ea 218
1d90e39d 219 if (!this.videoViewUrl) return Promise.resolve(true)
626b76dc
C
220
221 const body: VideoView = { currentTime, viewEvent }
2adfc7ea 222
626b76dc 223 const headers = new Headers({ 'Content-type': 'application/json; charset=UTF-8' })
49e7e4d9 224 if (this.authorizationHeader()) headers.set('Authorization', this.authorizationHeader())
2adfc7ea 225
384ba8b7 226 return fetch(this.videoViewUrl, { method: 'POST', body: JSON.stringify(body), headers })
2adfc7ea
C
227 }
228
fd3c2e87
C
229 // ---------------------------------------------------------------------------
230
07d6044e
C
231 private listenFullScreenChange () {
232 this.player.on('fullscreenchange', () => {
233 if (this.player.isFullscreen()) this.player.focus()
234 })
235 }
236
d1f21ebb 237 private listenControlBarMouse () {
dc9ff312
C
238 const controlBar = this.player.controlBar
239 const settingsButton: SettingsButton = (controlBar as any).settingsButton
240
241 controlBar.on('mouseenter', () => {
d1f21ebb
C
242 this.mouseInControlBar = true
243 this.alterInactivity()
244 })
2adfc7ea 245
dc9ff312 246 controlBar.on('mouseleave', () => {
d1f21ebb
C
247 this.mouseInControlBar = false
248 this.alterInactivity()
249 })
dc9ff312
C
250
251 settingsButton.dialog.on('mouseenter', () => {
252 this.mouseInSettings = true
253 this.alterInactivity()
254 })
255
256 settingsButton.dialog.on('mouseleave', () => {
257 this.mouseInSettings = false
258 this.alterInactivity()
259 })
d1f21ebb 260 }
2adfc7ea 261
d1f21ebb 262 private alterInactivity () {
f1a0555a 263 if (this.menuOpened || this.mouseInSettings || this.mouseInControlBar) {
dc9ff312 264 this.setInactivityTimeout(0)
d1f21ebb
C
265 return
266 }
2adfc7ea 267
dc9ff312
C
268 this.setInactivityTimeout(this.initialInactivityTimeout)
269 this.player.reportUserActivity(true)
270 }
271
272 private setInactivityTimeout (timeout: number) {
273 (this.player as any).cache_.inactivityTimeout = timeout
274 this.player.options_.inactivityTimeout = timeout
f1a0555a 275
42b40636 276 debugLogger('Set player inactivity to ' + timeout)
35f0a5e6
C
277 }
278
2adfc7ea
C
279 private initCaptions () {
280 for (const caption of this.videoCaptions) {
281 this.player.addRemoteTextTrack({
282 kind: 'captions',
283 label: caption.label,
284 language: caption.language,
285 id: caption.language,
286 src: caption.src,
287 default: this.defaultSubtitle === caption.language
288 }, false)
289 }
290
291 this.player.trigger('captionsChanged')
292 }
293
294 // Thanks: https://github.com/videojs/video.js/issues/4460#issuecomment-312861657
295 private initSmoothProgressBar () {
f5fcd9f7 296 const SeekBar = videojs.getComponent('SeekBar') as any
2adfc7ea
C
297 SeekBar.prototype.getPercent = function getPercent () {
298 // Allows for smooth scrubbing, when player can't keep up.
299 // const time = (this.player_.scrubbing()) ?
300 // this.player_.getCache().currentTime :
301 // this.player_.currentTime()
302 const time = this.player_.currentTime()
303 const percent = time / this.player_.duration()
304 return percent >= 1 ? 1 : percent
305 }
306 SeekBar.prototype.handleMouseMove = function handleMouseMove (event: any) {
307 let newTime = this.calculateDistance(event) * this.player_.duration()
308 if (newTime === this.player_.duration()) {
309 newTime = newTime - 0.1
310 }
311 this.player_.currentTime(newTime)
312 this.update()
313 }
314 }
315}
316
317videojs.registerPlugin('peertube', PeerTubePlugin)
318export { PeerTubePlugin }