]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-watch/video-watch.component.ts
Add support for saving video files to object storage (#4290)
[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 => {
198 const videoId = routeParams[ 'videoId' ]
199 if (videoId) return this.loadVideo(videoId)
200
201 const playlistId = routeParams[ 'playlistId' ]
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
209 const positionParam = queryParams[ 'playlistPosition' ] ?? 1
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
222 const start = queryParams[ 'start' ]
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
c894a1ea
C
240 forkJoin([ videoObs, this.videoCaptionService.listCaptions(videoId)])
241 .subscribe(
242 ([ video, captionsResult ]) => {
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
c894a1ea
C
263 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)
c894a1ea
C
271 .subscribe(
272 playlist => {
273 this.playlist = playlist
274
275 this.videoWatchPlaylist.loadPlaylistElements(playlist, !this.playlistPosition, this.playlistPosition)
276 },
277
278 err => this.handleRequestError(err)
e2f01c47 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(
295 $localize`This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="${originUrl}">${originUrl}</a>?`,
296 $localize`Redirection`
297 )
298
299 if (res === true) return window.location.href = originUrl
300 }
301
302 // If 400, 403 or 404, the video is private or blocked so redirect to 404
303 return this.restExtractor.redirectTo404IfNotFound(err, 'video', [
304 HttpStatusCode.BAD_REQUEST_400,
305 HttpStatusCode.FORBIDDEN_403,
306 HttpStatusCode.NOT_FOUND_404
307 ])
e2f01c47
C
308 }
309
c894a1ea 310 private handleGlobalError (err: any) {
0c31c33d 311 const errorMessage: string = typeof err === 'string' ? err : err.message
bf5685f0
C
312 if (!errorMessage) return
313
6d88de72 314 // Display a message in the video player instead of a notification
0f7fedc3 315 if (errorMessage.indexOf('from xs param') !== -1) {
6d88de72
C
316 this.flushPlayer()
317 this.remoteServerDown = true
3b492bff 318
6d88de72 319 return
0c31c33d
C
320 }
321
f8b2c1b4 322 this.notifier.error(errorMessage)
0c31c33d
C
323 }
324
597a9266
C
325 private async onVideoFetched (
326 video: VideoDetails,
327 videoCaptions: VideoCaption[],
a5cf76af 328 urlOptions: URLOptions
597a9266 329 ) {
a5cf76af
C
330 this.subscribeToLiveEventsIfNeeded(this.video, video)
331
df98563e 332 this.video = video
2f4c784a 333 this.videoCaptions = videoCaptions
92fb909c 334
c448d412 335 // Re init attributes
c15d61f5 336 this.playerPlaceholderImgSrc = undefined
6d88de72 337 this.remoteServerDown = false
f0a39880 338 this.currentTime = undefined
c448d412 339
e2f01c47 340 if (this.isVideoBlur(this.video)) {
22b59e80 341 const res = await this.confirmService.confirm(
66357162
C
342 $localize`This video contains mature or explicit content. Are you sure you want to watch it?`,
343 $localize`Mature or explicit content`
d6e32a2e 344 )
60c2bc80 345 if (res === false) return this.location.back()
92fb909c
C
346 }
347
0a6817f0
C
348 this.buildPlayer(urlOptions)
349 .catch(err => console.error('Cannot build the player', err))
350
0a6817f0 351 this.setOpenGraphTags()
0a6817f0 352
55b84d53
C
353 const hookOptions = {
354 videojs,
355 video: this.video,
356 playlist: this.playlist
357 }
358 this.hooks.runAction('action:video-watch.video.loaded', 'video-watch', hookOptions)
0a6817f0
C
359 }
360
361 private async buildPlayer (urlOptions: URLOptions) {
09edde40
C
362 // Flush old player if needed
363 this.flushPlayer()
b891f9bc 364
c15d61f5
C
365 const videoState = this.video.state.id
366 if (videoState === VideoState.LIVE_ENDED || videoState === VideoState.WAITING_FOR_LIVE) {
367 this.playerPlaceholderImgSrc = this.video.previewPath
368 return
369 }
370
60c2bc80 371 // Build video element, because videojs removes it on dispose
e2f01c47 372 const playerElementWrapper = this.elementRef.nativeElement.querySelector('#videojs-wrapper')
b891f9bc
C
373 this.playerElement = document.createElement('video')
374 this.playerElement.className = 'video-js vjs-peertube-skin'
e7eb5b39 375 this.playerElement.setAttribute('playsinline', 'true')
b891f9bc
C
376 playerElementWrapper.appendChild(this.playerElement)
377
3d9a63d3
C
378 const params = {
379 video: this.video,
0a6817f0 380 videoCaptions: this.videoCaptions,
3d9a63d3
C
381 urlOptions,
382 user: this.user
e945b184 383 }
3d9a63d3
C
384 const { playerMode, playerOptions } = await this.hooks.wrapFun(
385 this.buildPlayerManagerOptions.bind(this),
386 params,
c2023a9f
C
387 'video-watch',
388 'filter:internal.video-watch.player.build-options.params',
3d9a63d3
C
389 'filter:internal.video-watch.player.build-options.result'
390 )
e945b184 391
e945b184 392 this.zone.runOutsideAngular(async () => {
3d9a63d3 393 this.player = await PeertubePlayerManager.initialize(playerMode, playerOptions, player => this.player = player)
9a18a625 394
c894a1ea
C
395 this.player.on('customError', ({ err }: { err: any }) => {
396 this.zone.run(() => this.handleGlobalError(err))
397 })
f0a39880
C
398
399 this.player.on('timeupdate', () => {
c894a1ea 400 // Don't need to trigger angular change for this variable, that is sent to children components on click
f0a39880
C
401 this.currentTime = Math.floor(this.player.currentTime())
402 })
e2f01c47 403
3bcb4fd7 404 /**
c894a1ea
C
405 * condition: true to make the upnext functionality trigger, false to disable the upnext functionality
406 * go to the next video in 'condition()' if you don't want of the timer.
407 * next: function triggered at the end of the timer.
408 * suspended: function used at each click of the timer checking if we need to reset progress
409 * and wait until suspended becomes truthy again.
3bcb4fd7
RK
410 */
411 this.player.upnext({
c894a1ea
C
412 timeout: 5000, // 5s
413
66357162
C
414 headText: $localize`Up Next`,
415 cancelText: $localize`Cancel`,
416 suspendedText: $localize`Autoplay is suspended`,
c894a1ea 417
3bcb4fd7 418 getTitle: () => this.nextVideoTitle,
c894a1ea
C
419
420 next: () => this.zone.run(() => this.playNextVideoInAngularZone()),
3bcb4fd7 421 condition: () => {
c894a1ea
C
422 if (!this.playlist) return this.isAutoPlayNext()
423
424 // Don't wait timeout to play the next playlist video
425 if (this.isPlaylistAutoPlayNext()) {
426 this.playNextVideoInAngularZone()
427 return undefined
3bcb4fd7 428 }
c894a1ea
C
429
430 return false
223b24e6 431 },
c894a1ea 432
223b24e6
RK
433 suspended: () => {
434 return (
435 !isXPercentInViewport(this.player.el(), 80) ||
436 !document.getElementById('content').contains(document.activeElement)
437 )
e2f01c47
C
438 }
439 })
440
441 this.player.one('stopped', () => {
c894a1ea
C
442 if (this.playlist && this.isPlaylistAutoPlayNext()) {
443 this.playNextVideoInAngularZone()
e2f01c47
C
444 }
445 })
9a18a625 446
e772bdf1
C
447 this.player.one('ended', () => {
448 if (this.video.isLive) {
ceb8f322 449 this.zone.run(() => this.video.state.id = VideoState.LIVE_ENDED)
e772bdf1
C
450 }
451 })
452
9a18a625
C
453 this.player.on('theaterChange', (_: any, enabled: boolean) => {
454 this.zone.run(() => this.theaterEnabled = enabled)
455 })
5f85f8aa 456
781ba981 457 this.hooks.runAction('action:video-watch.player.loaded', 'video-watch', { player: this.player, videojs, video: this.video })
b891f9bc 458 })
92fb909c
C
459 }
460
c894a1ea 461 private playNextVideoInAngularZone () {
6dd873d6
RK
462 if (this.playlist) {
463 this.zone.run(() => this.videoWatchPlaylist.navigateToNextPlaylistVideo())
c894a1ea 464 return
6aa54148 465 }
3ec343a4 466
c894a1ea
C
467 if (this.nextVideoUUID) {
468 this.router.navigate([ '/w', this.nextVideoUUID ])
469 return
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 (
486 (this.user && this.user.autoPlayNextVideo) ||
487 this.anonymousUser.autoPlayNextVideo
488 )
489 }
490
491 private isPlaylistAutoPlayNext () {
492 return (
493 (this.user && this.user.autoPlayNextVideoPlaylist) ||
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
C
510 private buildPlayerManagerOptions (params: {
511 video: VideoDetails,
512 videoCaptions: VideoCaption[],
513 urlOptions: CustomizationOptions & { playerMode: PlayerMode },
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
576 userWatching: user && user.videosHistoryEnabled === true ? {
577 url: this.videoService.getUserWatchingVideoUrl(video.uuid),
578 authorizationHeader: this.authService.getRequestHeaderValue()
579 } : undefined,
580
581 serverUrl: environment.apiUrl,
582
58b9ce30 583 videoCaptions: playerCaptions,
584
9162fdd3 585 videoShortUUID: video.shortUUID,
3e0e8d4a 586 videoUUID: video.uuid
3d9a63d3
C
587 },
588
589 webtorrent: {
590 videoFiles: video.files
72f611ca 591 },
592
593 pluginsManager: this.pluginService.getPluginsManager()
3d9a63d3
C
594 }
595
dfdcbb94 596 // Only set this if we're in a playlist
5bb2ed6b
P
597 if (this.playlist) {
598 options.common.previousVideo = () => {
599 this.zone.run(() => this.videoWatchPlaylist.navigateToPreviousPlaylistVideo())
600 }
dfdcbb94
P
601 }
602
3d9a63d3
C
603 let mode: PlayerMode
604
605 if (urlOptions.playerMode) {
606 if (urlOptions.playerMode === 'p2p-media-loader') mode = 'p2p-media-loader'
607 else mode = 'webtorrent'
608 } else {
609 if (video.hasHlsPlaylist()) mode = 'p2p-media-loader'
610 else mode = 'webtorrent'
611 }
612
c894a1ea 613 // p2p-media-loader needs TextEncoder, fallback on WebTorrent if not available
089af69b
C
614 if (typeof TextEncoder === 'undefined') {
615 mode = 'webtorrent'
616 }
617
3d9a63d3
C
618 if (mode === 'p2p-media-loader') {
619 const hlsPlaylist = video.getHlsPlaylist()
620
621 const p2pMediaLoader = {
622 playlistUrl: hlsPlaylist.playlistUrl,
623 segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
624 redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
625 trackerAnnounce: video.trackerUrls,
626 videoFiles: hlsPlaylist.files
627 } as P2PMediaLoaderOptions
628
629 Object.assign(options, { p2pMediaLoader })
630 }
631
632 return { playerMode: mode, playerOptions: options }
633 }
634
a5cf76af
C
635 private async subscribeToLiveEventsIfNeeded (oldVideo: VideoDetails, newVideo: VideoDetails) {
636 if (!this.liveVideosSub) {
a800dbf3 637 this.liveVideosSub = this.buildLiveEventsSubscription()
a5cf76af
C
638 }
639
640 if (oldVideo && oldVideo.id !== newVideo.id) {
641 await this.peertubeSocket.unsubscribeLiveVideos(oldVideo.id)
642 }
643
644 if (!newVideo.isLive) return
645
646 await this.peertubeSocket.subscribeToLiveVideosSocket(newVideo.id)
647 }
648
a800dbf3
C
649 private buildLiveEventsSubscription () {
650 return this.peertubeSocket.getLiveVideosObservable()
651 .subscribe(({ type, payload }) => {
652 if (type === 'state-change') return this.handleLiveStateChange(payload.state)
653 if (type === 'views-change') return this.handleLiveViewsChange(payload.views)
654 })
655 }
656
657 private handleLiveStateChange (newState: VideoState) {
658 if (newState !== VideoState.PUBLISHED) return
659
660 const videoState = this.video.state.id
661 if (videoState !== VideoState.WAITING_FOR_LIVE && videoState !== VideoState.LIVE_ENDED) return
662
663 console.log('Loading video after live update.')
664
665 const videoUUID = this.video.uuid
666
c894a1ea 667 // Reset to force refresh the video
a800dbf3
C
668 this.video = undefined
669 this.loadVideo(videoUUID)
670 }
671
672 private handleLiveViewsChange (newViews: number) {
673 if (!this.video) {
674 console.error('Cannot update video live views because video is no defined.')
675 return
676 }
677
e43b5a3f
C
678 console.log('Updating live views.')
679
a800dbf3
C
680 this.video.views = newViews
681 }
682
941c5eac
C
683 private initHotkeys () {
684 this.hotkeys = [
941c5eac 685 // These hotkeys are managed by the player
66357162
C
686 new Hotkey('f', e => e, undefined, $localize`Enter/exit fullscreen (requires player focus)`),
687 new Hotkey('space', e => e, undefined, $localize`Play/Pause the video (requires player focus)`),
688 new Hotkey('m', e => e, undefined, $localize`Mute/unmute the video (requires player focus)`),
941c5eac 689
66357162 690 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 691
66357162
C
692 new Hotkey('up', e => e, undefined, $localize`Increase the volume (requires player focus)`),
693 new Hotkey('down', e => e, undefined, $localize`Decrease the volume (requires player focus)`),
941c5eac 694
66357162
C
695 new Hotkey('right', e => e, undefined, $localize`Seek the video forward (requires player focus)`),
696 new Hotkey('left', e => e, undefined, $localize`Seek the video backward (requires player focus)`),
941c5eac 697
66357162
C
698 new Hotkey('>', e => e, undefined, $localize`Increase playback rate (requires player focus)`),
699 new Hotkey('<', e => e, undefined, $localize`Decrease playback rate (requires player focus)`),
941c5eac 700
66357162 701 new Hotkey('.', e => e, undefined, $localize`Navigate in the video frame by frame (requires player focus)`)
941c5eac 702 ]
3d216ea0
C
703
704 if (this.isUserLoggedIn()) {
705 this.hotkeys = this.hotkeys.concat([
3d216ea0 706 new Hotkey('shift+s', () => {
77d873c5
C
707 this.subscribeButton.isSubscribedToAll()
708 ? this.subscribeButton.unsubscribe()
709 : this.subscribeButton.subscribe()
710
3d216ea0 711 return false
66357162 712 }, undefined, $localize`Subscribe to the account`)
3d216ea0
C
713 ])
714 }
715
716 this.hotkeysService.add(this.hotkeys)
941c5eac 717 }
c894a1ea
C
718
719 private setOpenGraphTags () {
720 this.metaService.setTitle(this.video.name)
721
722 this.metaService.setTag('og:type', 'video')
723
724 this.metaService.setTag('og:title', this.video.name)
725 this.metaService.setTag('name', this.video.name)
726
727 this.metaService.setTag('og:description', this.video.description)
728 this.metaService.setTag('description', this.video.description)
729
730 this.metaService.setTag('og:image', this.video.previewPath)
731
732 this.metaService.setTag('og:duration', this.video.duration.toString())
733
734 this.metaService.setTag('og:site_name', 'PeerTube')
735
736 this.metaService.setTag('og:url', window.location.href)
737 this.metaService.setTag('url', window.location.href)
738 }
dc8bc31b 739}