]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-watch/video-watch.component.ts
Rename jobs list command
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / video-watch.component.ts
CommitLineData
67ed6552 1import { Hotkey, HotkeysService } from 'angular2-hotkeys'
6ea59f41 2import { forkJoin, Subscription } from 'rxjs'
67ed6552 3import { PlatformLocation } from '@angular/common'
c894a1ea 4import { Component, ElementRef, Inject, LOCALE_ID, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core'
df98563e 5import { ActivatedRoute, Router } from '@angular/router'
a5cf76af
C
6import {
7 AuthService,
8 AuthUser,
9 ConfirmService,
0f01a8ba 10 MetaService,
a5cf76af
C
11 Notifier,
12 PeerTubeSocket,
72f611ca 13 PluginService,
a5cf76af 14 RestExtractor,
2666fd7c 15 ScreenService,
a5cf76af
C
16 ServerService,
17 UserService
18} from '@app/core'
67ed6552 19import { HooksService } from '@app/core/plugins/hooks.service'
4504f09f 20import { isXPercentInViewport, scrollToTop } from '@app/helpers'
67ed6552
C
21import { Video, VideoCaptionService, VideoDetails, VideoService } from '@app/shared/shared-main'
22import { SubscribeButtonComponent } from '@app/shared/shared-user-subscription'
23import { VideoPlaylist, VideoPlaylistService } from '@app/shared/shared-video-playlist'
15a7eafb 24import { timeToInt } from '@shared/core-utils'
c0e8b12e
C
25import {
26 HTMLServerConfig,
27 HttpStatusCode,
28 PeerTubeProblemDocument,
29 ServerErrorCode,
30 VideoCaption,
31 VideoPrivacy,
32 VideoState
33} from '@shared/models'
6ebdd12f 34import { cleanupVideoWatch, getStoredTheater, getStoredVideoWatchHistory } from '../../../assets/player/peertube-player-local-storage'
6ec0b75b 35import {
5efab546 36 CustomizationOptions,
6ec0b75b
C
37 P2PMediaLoaderOptions,
38 PeertubePlayerManager,
39 PeertubePlayerManagerOptions,
67ed6552
C
40 PlayerMode,
41 videojs
6ec0b75b 42} from '../../../assets/player/peertube-player-manager'
67ed6552 43import { environment } from '../../../environments/environment'
911186da 44import { VideoWatchPlaylistComponent } from './shared'
dc8bc31b 45
a5cf76af
C
46type URLOptions = CustomizationOptions & { playerMode: PlayerMode }
47
dc8bc31b
C
48@Component({
49 selector: 'my-video-watch',
ec8d8440
C
50 templateUrl: './video-watch.component.html',
51 styleUrls: [ './video-watch.component.scss' ]
dc8bc31b 52})
0629423c 53export class VideoWatchComponent implements OnInit, OnDestroy {
f36da21e 54 @ViewChild('videoWatchPlaylist', { static: true }) videoWatchPlaylist: VideoWatchPlaylistComponent
2f5d2ec5 55 @ViewChild('subscribeButton') subscribeButton: SubscribeButtonComponent
df98563e 56
2adfc7ea 57 player: any
0826c92d 58 playerElement: HTMLVideoElement
c15d61f5 59 playerPlaceholderImgSrc: string
c894a1ea 60 theaterEnabled = false
2de96f4d 61
2f4c784a
C
62 video: VideoDetails = null
63 videoCaptions: VideoCaption[] = []
64
d142c7b9 65 playlistPosition: number
e2f01c47 66 playlist: VideoPlaylist = null
e2f01c47 67
6d88de72 68 remoteServerDown = false
c15d61f5 69
c894a1ea 70 private nextVideoUUID = ''
3bcb4fd7 71 private nextVideoTitle = ''
c894a1ea 72
f0a39880 73 private currentTime: number
c894a1ea 74
df98563e 75 private paramsSub: Subscription
e2f01c47 76 private queryParamsSub: Subscription
31b6ddf8 77 private configSub: Subscription
a5cf76af 78 private liveVideosSub: Subscription
df98563e 79
2989628b 80 private serverConfig: HTMLServerConfig
ba430d75 81
6ea59f41
C
82 private hotkeys: Hotkey[] = []
83
df98563e 84 constructor (
4fd8aa32 85 private elementRef: ElementRef,
0629423c 86 private route: ActivatedRoute,
92fb909c 87 private router: Router,
d3ef341a 88 private videoService: VideoService,
e2f01c47 89 private playlistService: VideoPlaylistService,
92fb909c 90 private confirmService: ConfirmService,
3ec343a4 91 private metaService: MetaService,
7ddd02c9 92 private authService: AuthService,
d3217560 93 private userService: UserService,
0883b324 94 private serverService: ServerService,
a51bad1a 95 private restExtractor: RestExtractor,
f8b2c1b4 96 private notifier: Notifier,
901637bb 97 private zone: NgZone,
16f7022b 98 private videoCaptionService: VideoCaptionService,
20d21199 99 private hotkeysService: HotkeysService,
93cae479 100 private hooks: HooksService,
72f611ca 101 private pluginService: PluginService,
a5cf76af 102 private peertubeSocket: PeerTubeSocket,
2666fd7c 103 private screenService: ScreenService,
60c2bc80 104 private location: PlatformLocation,
e945b184 105 @Inject(LOCALE_ID) private localeId: string
2666fd7c 106 ) { }
dc8bc31b 107
b2731bff
C
108 get user () {
109 return this.authService.getUser()
110 }
111
d3217560
RK
112 get anonymousUser () {
113 return this.userService.getAnonymousUser()
114 }
115
18a6f04c 116 async ngOnInit () {
6ebdd12f
C
117 this.serverConfig = this.serverService.getHTMLConfig()
118
1a568b6f
C
119 PeertubePlayerManager.initState()
120
c894a1ea
C
121 this.loadRouteParams()
122 this.loadRouteQuery()
20d21199 123
1c8ddbfa 124 this.initHotkeys()
011e1e6b
C
125
126 this.theaterEnabled = getStoredTheater()
18a6f04c 127
c9e3eeed 128 this.hooks.runAction('action:video-watch.init', 'video-watch')
58b9ce30 129
130 setTimeout(cleanupVideoWatch, 1500) // Run in timeout to ensure we're not blocking the UI
d1992b93
C
131 }
132
df98563e 133 ngOnDestroy () {
09edde40 134 this.flushPlayer()
067e3f84 135
13fc89f4 136 // Unsubscribe subscriptions
e2f01c47
C
137 if (this.paramsSub) this.paramsSub.unsubscribe()
138 if (this.queryParamsSub) this.queryParamsSub.unsubscribe()
5abc96fc 139 if (this.configSub) this.configSub.unsubscribe()
a5cf76af 140 if (this.liveVideosSub) this.liveVideosSub.unsubscribe()
20d21199
RK
141
142 // Unbind hotkeys
3d216ea0 143 this.hotkeysService.remove(this.hotkeys)
dc8bc31b 144 }
98b01bac 145
06a55579
C
146 getCurrentTime () {
147 return this.currentTime
6863f814
RK
148 }
149
06a55579
C
150 getCurrentPlaylistPosition () {
151 return this.videoWatchPlaylist.currentPlaylistPosition
99cc4f49
C
152 }
153
6aa54148 154 onRecommendations (videos: Video[]) {
c894a1ea 155 if (videos.length === 0) return
6aa54148 156
c894a1ea
C
157 // The recommended videos's first element should be the next video
158 const video = videos[0]
159 this.nextVideoUUID = video.uuid
160 this.nextVideoTitle = video.name
b29bf61d
RK
161 }
162
163 handleTimestampClicked (timestamp: number) {
18429d01
C
164 if (!this.player || this.video.isLive) return
165
166 this.player.currentTime(timestamp)
b29bf61d 167 scrollToTop()
706c5a47
RK
168 }
169
c894a1ea
C
170 onPlaylistVideoFound (videoId: string) {
171 this.loadVideo(videoId)
172 }
173
174 isUserLoggedIn () {
175 return this.authService.isLoggedIn()
176 }
177
178 isVideoBlur (video: Video) {
179 return video.isVideoNSFWForUser(this.user, this.serverConfig)
706c5a47
RK
180 }
181
b40a2193
K
182 isChannelDisplayNameGeneric () {
183 const genericChannelDisplayName = [
184 `Main ${this.video.channel.ownerAccount.name} channel`,
185 `Default ${this.video.channel.ownerAccount.name} channel`
186 ]
187
188 return genericChannelDisplayName.includes(this.video.channel.displayName)
189 }
190
0f7407d9
C
191 displayOtherVideosAsRow () {
192 // Use the same value as in the SASS file
193 return this.screenService.getWindowInnerWidth() <= 1100
194 }
195
c894a1ea
C
196 private loadRouteParams () {
197 this.paramsSub = this.route.params.subscribe(routeParams => {
9df52d66 198 const videoId = routeParams['videoId']
c894a1ea
C
199 if (videoId) return this.loadVideo(videoId)
200
9df52d66 201 const playlistId = routeParams['playlistId']
c894a1ea
C
202 if (playlistId) return this.loadPlaylist(playlistId)
203 })
204 }
205
206 private loadRouteQuery () {
207 this.queryParamsSub = this.route.queryParams.subscribe(queryParams => {
208 // Handle the ?playlistPosition
9df52d66 209 const positionParam = queryParams['playlistPosition'] ?? 1
c894a1ea
C
210
211 this.playlistPosition = positionParam === 'last'
212 ? -1 // Handle the "last" index
213 : parseInt(positionParam + '', 10)
214
215 if (isNaN(this.playlistPosition)) {
216 console.error(`playlistPosition query param '${positionParam}' was parsed as NaN, defaulting to 1.`)
217 this.playlistPosition = 1
218 }
219
220 this.videoWatchPlaylist.updatePlaylistIndex(this.playlistPosition)
221
9df52d66 222 const start = queryParams['start']
c894a1ea
C
223 if (this.player && start) this.player.currentTime(parseInt(start, 10))
224 })
225 }
226
e2f01c47 227 private loadVideo (videoId: string) {
c894a1ea 228 if (this.isSameElement(this.video, videoId)) return
e2f01c47
C
229
230 if (this.player) this.player.pause()
231
93cae479
C
232 const videoObs = this.hooks.wrapObsFun(
233 this.videoService.getVideo.bind(this.videoService),
234 { videoId },
235 'video-watch',
236 'filter:api.video-watch.video.get.params',
237 'filter:api.video-watch.video.get.result'
238 )
239
9df52d66 240 forkJoin([ videoObs, this.videoCaptionService.listCaptions(videoId) ])
1378c0d3
C
241 .subscribe({
242 next: ([ video, captionsResult ]) => {
c894a1ea 243 const queryParams = this.route.snapshot.queryParams
e6abf95e 244
c894a1ea
C
245 const urlOptions = {
246 resume: queryParams.resume,
e2f01c47 247
c894a1ea
C
248 startTime: queryParams.start,
249 stopTime: queryParams.stop,
3c6a44a1 250
c894a1ea
C
251 muted: queryParams.muted,
252 loop: queryParams.loop,
253 subtitle: queryParams.subtitle,
5efab546 254
c894a1ea
C
255 playerMode: queryParams.mode,
256 peertubeLink: false
257 }
5efab546 258
c894a1ea
C
259 this.onVideoFetched(video, captionsResult.data, urlOptions)
260 .catch(err => this.handleGlobalError(err))
261 },
4c72c1cd 262
1378c0d3
C
263 error: err => this.handleRequestError(err)
264 })
e2f01c47
C
265 }
266
267 private loadPlaylist (playlistId: string) {
c894a1ea 268 if (this.isSameElement(this.playlist, playlistId)) return
e2f01c47
C
269
270 this.playlistService.getVideoPlaylist(playlistId)
1378c0d3
C
271 .subscribe({
272 next: playlist => {
c894a1ea
C
273 this.playlist = playlist
274
275 this.videoWatchPlaylist.loadPlaylistElements(playlist, !this.playlistPosition, this.playlistPosition)
276 },
277
1378c0d3
C
278 error: err => this.handleRequestError(err)
279 })
c894a1ea 280 }
e2f01c47 281
c894a1ea
C
282 private isSameElement (element: VideoDetails | VideoPlaylist, newId: string) {
283 if (!element) return false
284
285 return (element.id + '') === newId || element.uuid === newId || element.shortUUID === newId
286 }
287
288 private async handleRequestError (err: any) {
289 const errorBody = err.body as PeerTubeProblemDocument
290
291 if (errorBody.code === ServerErrorCode.DOES_NOT_RESPECT_FOLLOW_CONSTRAINTS && errorBody.originUrl) {
292 const originUrl = errorBody.originUrl + (window.location.search ?? '')
293
294 const res = await this.confirmService.confirm(
9df52d66 295 // eslint-disable-next-line max-len
c894a1ea
C
296 $localize`This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="${originUrl}">${originUrl}</a>?`,
297 $localize`Redirection`
298 )
299
300 if (res === true) return window.location.href = originUrl
301 }
302
303 // If 400, 403 or 404, the video is private or blocked so redirect to 404
304 return this.restExtractor.redirectTo404IfNotFound(err, 'video', [
305 HttpStatusCode.BAD_REQUEST_400,
306 HttpStatusCode.FORBIDDEN_403,
307 HttpStatusCode.NOT_FOUND_404
308 ])
e2f01c47
C
309 }
310
c894a1ea 311 private handleGlobalError (err: any) {
0c31c33d 312 const errorMessage: string = typeof err === 'string' ? err : err.message
bf5685f0
C
313 if (!errorMessage) return
314
6d88de72 315 // Display a message in the video player instead of a notification
9df52d66 316 if (errorMessage.includes('from xs param')) {
6d88de72
C
317 this.flushPlayer()
318 this.remoteServerDown = true
3b492bff 319
6d88de72 320 return
0c31c33d
C
321 }
322
f8b2c1b4 323 this.notifier.error(errorMessage)
0c31c33d
C
324 }
325
597a9266
C
326 private async onVideoFetched (
327 video: VideoDetails,
328 videoCaptions: VideoCaption[],
a5cf76af 329 urlOptions: URLOptions
597a9266 330 ) {
a5cf76af
C
331 this.subscribeToLiveEventsIfNeeded(this.video, video)
332
df98563e 333 this.video = video
2f4c784a 334 this.videoCaptions = videoCaptions
92fb909c 335
c448d412 336 // Re init attributes
c15d61f5 337 this.playerPlaceholderImgSrc = undefined
6d88de72 338 this.remoteServerDown = false
f0a39880 339 this.currentTime = undefined
c448d412 340
e2f01c47 341 if (this.isVideoBlur(this.video)) {
22b59e80 342 const res = await this.confirmService.confirm(
66357162
C
343 $localize`This video contains mature or explicit content. Are you sure you want to watch it?`,
344 $localize`Mature or explicit content`
d6e32a2e 345 )
60c2bc80 346 if (res === false) return this.location.back()
92fb909c
C
347 }
348
0a6817f0
C
349 this.buildPlayer(urlOptions)
350 .catch(err => console.error('Cannot build the player', err))
351
0a6817f0 352 this.setOpenGraphTags()
0a6817f0 353
55b84d53
C
354 const hookOptions = {
355 videojs,
356 video: this.video,
357 playlist: this.playlist
358 }
359 this.hooks.runAction('action:video-watch.video.loaded', 'video-watch', hookOptions)
0a6817f0
C
360 }
361
362 private async buildPlayer (urlOptions: URLOptions) {
09edde40
C
363 // Flush old player if needed
364 this.flushPlayer()
b891f9bc 365
c15d61f5
C
366 const videoState = this.video.state.id
367 if (videoState === VideoState.LIVE_ENDED || videoState === VideoState.WAITING_FOR_LIVE) {
368 this.playerPlaceholderImgSrc = this.video.previewPath
369 return
370 }
371
60c2bc80 372 // Build video element, because videojs removes it on dispose
e2f01c47 373 const playerElementWrapper = this.elementRef.nativeElement.querySelector('#videojs-wrapper')
b891f9bc
C
374 this.playerElement = document.createElement('video')
375 this.playerElement.className = 'video-js vjs-peertube-skin'
e7eb5b39 376 this.playerElement.setAttribute('playsinline', 'true')
b891f9bc
C
377 playerElementWrapper.appendChild(this.playerElement)
378
3d9a63d3
C
379 const params = {
380 video: this.video,
0a6817f0 381 videoCaptions: this.videoCaptions,
3d9a63d3
C
382 urlOptions,
383 user: this.user
e945b184 384 }
3d9a63d3
C
385 const { playerMode, playerOptions } = await this.hooks.wrapFun(
386 this.buildPlayerManagerOptions.bind(this),
387 params,
c2023a9f
C
388 'video-watch',
389 'filter:internal.video-watch.player.build-options.params',
3d9a63d3
C
390 'filter:internal.video-watch.player.build-options.result'
391 )
e945b184 392
e945b184 393 this.zone.runOutsideAngular(async () => {
3d9a63d3 394 this.player = await PeertubePlayerManager.initialize(playerMode, playerOptions, player => this.player = player)
9a18a625 395
c894a1ea
C
396 this.player.on('customError', ({ err }: { err: any }) => {
397 this.zone.run(() => this.handleGlobalError(err))
398 })
f0a39880
C
399
400 this.player.on('timeupdate', () => {
c894a1ea 401 // Don't need to trigger angular change for this variable, that is sent to children components on click
f0a39880
C
402 this.currentTime = Math.floor(this.player.currentTime())
403 })
e2f01c47 404
3bcb4fd7 405 /**
c894a1ea
C
406 * condition: true to make the upnext functionality trigger, false to disable the upnext functionality
407 * go to the next video in 'condition()' if you don't want of the timer.
408 * next: function triggered at the end of the timer.
409 * suspended: function used at each click of the timer checking if we need to reset progress
410 * and wait until suspended becomes truthy again.
3bcb4fd7
RK
411 */
412 this.player.upnext({
c894a1ea
C
413 timeout: 5000, // 5s
414
66357162
C
415 headText: $localize`Up Next`,
416 cancelText: $localize`Cancel`,
417 suspendedText: $localize`Autoplay is suspended`,
c894a1ea 418
3bcb4fd7 419 getTitle: () => this.nextVideoTitle,
c894a1ea
C
420
421 next: () => this.zone.run(() => this.playNextVideoInAngularZone()),
3bcb4fd7 422 condition: () => {
c894a1ea
C
423 if (!this.playlist) return this.isAutoPlayNext()
424
425 // Don't wait timeout to play the next playlist video
426 if (this.isPlaylistAutoPlayNext()) {
427 this.playNextVideoInAngularZone()
428 return undefined
3bcb4fd7 429 }
c894a1ea
C
430
431 return false
223b24e6 432 },
c894a1ea 433
223b24e6
RK
434 suspended: () => {
435 return (
436 !isXPercentInViewport(this.player.el(), 80) ||
437 !document.getElementById('content').contains(document.activeElement)
438 )
e2f01c47
C
439 }
440 })
441
442 this.player.one('stopped', () => {
c894a1ea
C
443 if (this.playlist && this.isPlaylistAutoPlayNext()) {
444 this.playNextVideoInAngularZone()
e2f01c47
C
445 }
446 })
9a18a625 447
e772bdf1
C
448 this.player.one('ended', () => {
449 if (this.video.isLive) {
ceb8f322 450 this.zone.run(() => this.video.state.id = VideoState.LIVE_ENDED)
e772bdf1
C
451 }
452 })
453
9a18a625
C
454 this.player.on('theaterChange', (_: any, enabled: boolean) => {
455 this.zone.run(() => this.theaterEnabled = enabled)
456 })
5f85f8aa 457
781ba981 458 this.hooks.runAction('action:video-watch.player.loaded', 'video-watch', { player: this.player, videojs, video: this.video })
b891f9bc 459 })
92fb909c
C
460 }
461
c894a1ea 462 private playNextVideoInAngularZone () {
6dd873d6
RK
463 if (this.playlist) {
464 this.zone.run(() => this.videoWatchPlaylist.navigateToNextPlaylistVideo())
c894a1ea 465 return
6aa54148 466 }
3ec343a4 467
c894a1ea
C
468 if (this.nextVideoUUID) {
469 this.router.navigate([ '/w', this.nextVideoUUID ])
c894a1ea 470 }
3ec343a4 471 }
1f3e9fec 472
d4c6a3b9 473 private isAutoplay () {
bf079b7b
C
474 // We'll jump to the thread id, so do not play the video
475 if (this.route.snapshot.params['threadId']) return false
476
477 // Otherwise true by default
d4c6a3b9
C
478 if (!this.user) return true
479
480 // Be sure the autoPlay is set to false
481 return this.user.autoPlayVideo !== false
482 }
09edde40 483
c894a1ea
C
484 private isAutoPlayNext () {
485 return (
9df52d66 486 (this.user?.autoPlayNextVideo) ||
c894a1ea
C
487 this.anonymousUser.autoPlayNextVideo
488 )
489 }
490
491 private isPlaylistAutoPlayNext () {
492 return (
9df52d66 493 (this.user?.autoPlayNextVideoPlaylist) ||
c894a1ea
C
494 this.anonymousUser.autoPlayNextVideoPlaylist
495 )
496 }
497
09edde40
C
498 private flushPlayer () {
499 // Remove player if it exists
d4a8e7a6
C
500 if (!this.player) return
501
502 try {
503 this.player.dispose()
504 this.player = undefined
505 } catch (err) {
506 console.error('Cannot dispose player.', err)
09edde40
C
507 }
508 }
1c8ddbfa 509
3d9a63d3 510 private buildPlayerManagerOptions (params: {
9df52d66
C
511 video: VideoDetails
512 videoCaptions: VideoCaption[]
513 urlOptions: CustomizationOptions & { playerMode: PlayerMode }
3d9a63d3
C
514 user?: AuthUser
515 }) {
516 const { video, videoCaptions, urlOptions, user } = params
c894a1ea 517
706c5a47
RK
518 const getStartTime = () => {
519 const byUrl = urlOptions.startTime !== undefined
96f6278f 520 const byHistory = video.userHistory && (!this.playlist || urlOptions.resume !== undefined)
58b9ce30 521 const byLocalStorage = getStoredVideoWatchHistory(video.uuid)
706c5a47 522
3c6a44a1
C
523 if (byUrl) return timeToInt(urlOptions.startTime)
524 if (byHistory) return video.userHistory.currentTime
58b9ce30 525 if (byLocalStorage) return byLocalStorage.duration
3c6a44a1
C
526
527 return 0
706c5a47 528 }
3d9a63d3 529
706c5a47 530 let startTime = getStartTime()
3c6a44a1 531
3d9a63d3
C
532 // If we are at the end of the video, reset the timer
533 if (video.duration - startTime <= 1) startTime = 0
534
535 const playerCaptions = videoCaptions.map(c => ({
536 label: c.language.label,
537 language: c.language.id,
538 src: environment.apiUrl + c.captionPath
539 }))
540
541 const options: PeertubePlayerManagerOptions = {
542 common: {
543 autoplay: this.isAutoplay(),
c894a1ea 544 nextVideo: () => this.playNextVideoInAngularZone(),
3d9a63d3
C
545
546 playerElement: this.playerElement,
547 onPlayerElementChange: (element: HTMLVideoElement) => this.playerElement = element,
548
549 videoDuration: video.duration,
550 enableHotkeys: true,
551 inactivityTimeout: 2500,
552 poster: video.previewUrl,
553
554 startTime,
555 stopTime: urlOptions.stopTime,
556 controls: urlOptions.controls,
557 muted: urlOptions.muted,
558 loop: urlOptions.loop,
559 subtitle: urlOptions.subtitle,
560
561 peertubeLink: urlOptions.peertubeLink,
562
563 theaterButton: true,
564 captions: videoCaptions.length !== 0,
565
566 videoViewUrl: video.privacy.id !== VideoPrivacy.PRIVATE
567 ? this.videoService.getVideoViewUrl(video.uuid)
568 : null,
569 embedUrl: video.embedUrl,
4097c6d6 570 embedTitle: video.name,
3d9a63d3 571
25b7c847
C
572 isLive: video.isLive,
573
3d9a63d3
C
574 language: this.localeId,
575
9df52d66
C
576 userWatching: user && user.videosHistoryEnabled === true
577 ? {
578 url: this.videoService.getUserWatchingVideoUrl(video.uuid),
579 authorizationHeader: this.authService.getRequestHeaderValue()
580 }
581 : undefined,
3d9a63d3
C
582
583 serverUrl: environment.apiUrl,
584
58b9ce30 585 videoCaptions: playerCaptions,
586
9162fdd3 587 videoShortUUID: video.shortUUID,
3e0e8d4a 588 videoUUID: video.uuid
3d9a63d3
C
589 },
590
591 webtorrent: {
592 videoFiles: video.files
72f611ca 593 },
594
595 pluginsManager: this.pluginService.getPluginsManager()
3d9a63d3
C
596 }
597
dfdcbb94 598 // Only set this if we're in a playlist
5bb2ed6b
P
599 if (this.playlist) {
600 options.common.previousVideo = () => {
601 this.zone.run(() => this.videoWatchPlaylist.navigateToPreviousPlaylistVideo())
602 }
dfdcbb94
P
603 }
604
3d9a63d3
C
605 let mode: PlayerMode
606
607 if (urlOptions.playerMode) {
608 if (urlOptions.playerMode === 'p2p-media-loader') mode = 'p2p-media-loader'
609 else mode = 'webtorrent'
610 } else {
611 if (video.hasHlsPlaylist()) mode = 'p2p-media-loader'
612 else mode = 'webtorrent'
613 }
614
c894a1ea 615 // p2p-media-loader needs TextEncoder, fallback on WebTorrent if not available
089af69b
C
616 if (typeof TextEncoder === 'undefined') {
617 mode = 'webtorrent'
618 }
619
3d9a63d3
C
620 if (mode === 'p2p-media-loader') {
621 const hlsPlaylist = video.getHlsPlaylist()
622
623 const p2pMediaLoader = {
624 playlistUrl: hlsPlaylist.playlistUrl,
625 segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
626 redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
627 trackerAnnounce: video.trackerUrls,
628 videoFiles: hlsPlaylist.files
629 } as P2PMediaLoaderOptions
630
631 Object.assign(options, { p2pMediaLoader })
632 }
633
634 return { playerMode: mode, playerOptions: options }
635 }
636
a5cf76af
C
637 private async subscribeToLiveEventsIfNeeded (oldVideo: VideoDetails, newVideo: VideoDetails) {
638 if (!this.liveVideosSub) {
a800dbf3 639 this.liveVideosSub = this.buildLiveEventsSubscription()
a5cf76af
C
640 }
641
642 if (oldVideo && oldVideo.id !== newVideo.id) {
643 await this.peertubeSocket.unsubscribeLiveVideos(oldVideo.id)
644 }
645
646 if (!newVideo.isLive) return
647
648 await this.peertubeSocket.subscribeToLiveVideosSocket(newVideo.id)
649 }
650
a800dbf3
C
651 private buildLiveEventsSubscription () {
652 return this.peertubeSocket.getLiveVideosObservable()
653 .subscribe(({ type, payload }) => {
654 if (type === 'state-change') return this.handleLiveStateChange(payload.state)
655 if (type === 'views-change') return this.handleLiveViewsChange(payload.views)
656 })
657 }
658
659 private handleLiveStateChange (newState: VideoState) {
660 if (newState !== VideoState.PUBLISHED) return
661
662 const videoState = this.video.state.id
663 if (videoState !== VideoState.WAITING_FOR_LIVE && videoState !== VideoState.LIVE_ENDED) return
664
665 console.log('Loading video after live update.')
666
667 const videoUUID = this.video.uuid
668
c894a1ea 669 // Reset to force refresh the video
a800dbf3
C
670 this.video = undefined
671 this.loadVideo(videoUUID)
672 }
673
674 private handleLiveViewsChange (newViews: number) {
675 if (!this.video) {
676 console.error('Cannot update video live views because video is no defined.')
677 return
678 }
679
e43b5a3f
C
680 console.log('Updating live views.')
681
a800dbf3
C
682 this.video.views = newViews
683 }
684
941c5eac
C
685 private initHotkeys () {
686 this.hotkeys = [
941c5eac 687 // These hotkeys are managed by the player
66357162
C
688 new Hotkey('f', e => e, undefined, $localize`Enter/exit fullscreen (requires player focus)`),
689 new Hotkey('space', e => e, undefined, $localize`Play/Pause the video (requires player focus)`),
690 new Hotkey('m', e => e, undefined, $localize`Mute/unmute the video (requires player focus)`),
941c5eac 691
66357162 692 new Hotkey('0-9', e => e, undefined, $localize`Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)`),
941c5eac 693
66357162
C
694 new Hotkey('up', e => e, undefined, $localize`Increase the volume (requires player focus)`),
695 new Hotkey('down', e => e, undefined, $localize`Decrease the volume (requires player focus)`),
941c5eac 696
66357162
C
697 new Hotkey('right', e => e, undefined, $localize`Seek the video forward (requires player focus)`),
698 new Hotkey('left', e => e, undefined, $localize`Seek the video backward (requires player focus)`),
941c5eac 699
66357162
C
700 new Hotkey('>', e => e, undefined, $localize`Increase playback rate (requires player focus)`),
701 new Hotkey('<', e => e, undefined, $localize`Decrease playback rate (requires player focus)`),
941c5eac 702
66357162 703 new Hotkey('.', e => e, undefined, $localize`Navigate in the video frame by frame (requires player focus)`)
941c5eac 704 ]
3d216ea0
C
705
706 if (this.isUserLoggedIn()) {
707 this.hotkeys = this.hotkeys.concat([
3d216ea0 708 new Hotkey('shift+s', () => {
9df52d66
C
709 if (this.subscribeButton.isSubscribedToAll()) this.subscribeButton.unsubscribe()
710 else this.subscribeButton.subscribe()
77d873c5 711
3d216ea0 712 return false
66357162 713 }, undefined, $localize`Subscribe to the account`)
3d216ea0
C
714 ])
715 }
716
717 this.hotkeysService.add(this.hotkeys)
941c5eac 718 }
c894a1ea
C
719
720 private setOpenGraphTags () {
721 this.metaService.setTitle(this.video.name)
722
723 this.metaService.setTag('og:type', 'video')
724
725 this.metaService.setTag('og:title', this.video.name)
726 this.metaService.setTag('name', this.video.name)
727
728 this.metaService.setTag('og:description', this.video.description)
729 this.metaService.setTag('description', this.video.description)
730
731 this.metaService.setTag('og:image', this.video.previewPath)
732
733 this.metaService.setTag('og:duration', this.video.duration.toString())
734
735 this.metaService.setTag('og:site_name', 'PeerTube')
736
737 this.metaService.setTag('og:url', window.location.href)
738 this.metaService.setTag('url', window.location.href)
739 }
dc8bc31b 740}