]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-watch/video-watch.component.ts
11b63297e62187e3bfa80eeda9c4286e90d1035a
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / video-watch.component.ts
1 import { Hotkey, HotkeysService } from 'angular2-hotkeys'
2 import { forkJoin, Observable, Subscription } from 'rxjs'
3 import { catchError } from 'rxjs/operators'
4 import { PlatformLocation } from '@angular/common'
5 import { ChangeDetectorRef, Component, ElementRef, Inject, LOCALE_ID, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core'
6 import { ActivatedRoute, Router } from '@angular/router'
7 import {
8 AuthService,
9 AuthUser,
10 ConfirmService,
11 MarkdownService,
12 Notifier,
13 PeerTubeSocket,
14 RestExtractor,
15 ScreenService,
16 ServerService,
17 UserService
18 } from '@app/core'
19 import { HooksService } from '@app/core/plugins/hooks.service'
20 import { RedirectService } from '@app/core/routing/redirect.service'
21 import { isXPercentInViewport, scrollToTop } from '@app/helpers'
22 import { Video, VideoCaptionService, VideoDetails, VideoService } from '@app/shared/shared-main'
23 import { VideoShareComponent } from '@app/shared/shared-share-modal'
24 import { SubscribeButtonComponent } from '@app/shared/shared-user-subscription'
25 import { VideoActionsDisplayType, VideoDownloadComponent } from '@app/shared/shared-video-miniature'
26 import { VideoPlaylist, VideoPlaylistService } from '@app/shared/shared-video-playlist'
27 import { MetaService } from '@ngx-meta/core'
28 import { peertubeLocalStorage } from '@root-helpers/peertube-web-storage'
29 import { HttpStatusCode } from '@shared/core-utils/miscs/http-error-codes'
30 import { ServerConfig, ServerErrorCode, UserVideoRateType, VideoCaption, VideoPrivacy, VideoState } from '@shared/models'
31 import { getStoredP2PEnabled, getStoredTheater } from '../../../assets/player/peertube-player-local-storage'
32 import {
33 CustomizationOptions,
34 P2PMediaLoaderOptions,
35 PeertubePlayerManager,
36 PeertubePlayerManagerOptions,
37 PlayerMode,
38 videojs
39 } from '../../../assets/player/peertube-player-manager'
40 import { isWebRTCDisabled, timeToInt } from '../../../assets/player/utils'
41 import { environment } from '../../../environments/environment'
42 import { VideoSupportComponent } from './modal/video-support.component'
43 import { VideoWatchPlaylistComponent } from './video-watch-playlist.component'
44
45 type URLOptions = CustomizationOptions & { playerMode: PlayerMode }
46
47 @Component({
48 selector: 'my-video-watch',
49 templateUrl: './video-watch.component.html',
50 styleUrls: [ './video-watch.component.scss' ]
51 })
52 export class VideoWatchComponent implements OnInit, OnDestroy {
53 private static LOCAL_STORAGE_PRIVACY_CONCERN_KEY = 'video-watch-privacy-concern'
54
55 @ViewChild('videoWatchPlaylist', { static: true }) videoWatchPlaylist: VideoWatchPlaylistComponent
56 @ViewChild('videoShareModal') videoShareModal: VideoShareComponent
57 @ViewChild('videoSupportModal') videoSupportModal: VideoSupportComponent
58 @ViewChild('subscribeButton') subscribeButton: SubscribeButtonComponent
59 @ViewChild('videoDownloadModal') videoDownloadModal: VideoDownloadComponent
60
61 player: any
62 playerElement: HTMLVideoElement
63 theaterEnabled = false
64 userRating: UserVideoRateType = null
65 descriptionLoading = false
66
67 video: VideoDetails = null
68 videoCaptions: VideoCaption[] = []
69
70 playlistPosition: number
71 playlist: VideoPlaylist = null
72
73 completeDescriptionShown = false
74 completeVideoDescription: string
75 shortVideoDescription: string
76 videoHTMLDescription = ''
77 likesBarTooltipText = ''
78 hasAlreadyAcceptedPrivacyConcern = false
79 remoteServerDown = false
80 hotkeys: Hotkey[] = []
81
82 tooltipLike = ''
83 tooltipDislike = ''
84 tooltipSupport = ''
85 tooltipSaveToPlaylist = ''
86
87 videoActionsOptions: VideoActionsDisplayType = {
88 playlist: false,
89 download: true,
90 update: true,
91 blacklist: true,
92 delete: true,
93 report: true,
94 duplicate: true,
95 mute: true,
96 liveInfo: true
97 }
98
99 private nextVideoUuid = ''
100 private nextVideoTitle = ''
101 private currentTime: number
102 private paramsSub: Subscription
103 private queryParamsSub: Subscription
104 private configSub: Subscription
105 private liveVideosSub: Subscription
106
107 private serverConfig: ServerConfig
108
109 constructor (
110 private elementRef: ElementRef,
111 private changeDetector: ChangeDetectorRef,
112 private route: ActivatedRoute,
113 private router: Router,
114 private videoService: VideoService,
115 private playlistService: VideoPlaylistService,
116 private confirmService: ConfirmService,
117 private metaService: MetaService,
118 private authService: AuthService,
119 private userService: UserService,
120 private serverService: ServerService,
121 private restExtractor: RestExtractor,
122 private notifier: Notifier,
123 private markdownService: MarkdownService,
124 private zone: NgZone,
125 private redirectService: RedirectService,
126 private videoCaptionService: VideoCaptionService,
127 private hotkeysService: HotkeysService,
128 private hooks: HooksService,
129 private peertubeSocket: PeerTubeSocket,
130 private screenService: ScreenService,
131 private location: PlatformLocation,
132 @Inject(LOCALE_ID) private localeId: string
133 ) { }
134
135 get user () {
136 return this.authService.getUser()
137 }
138
139 get anonymousUser () {
140 return this.userService.getAnonymousUser()
141 }
142
143 async ngOnInit () {
144 // Hide the tooltips for unlogged users in mobile view, this adds confusion with the popover
145 if (this.user || !this.screenService.isInMobileView()) {
146 this.tooltipLike = $localize`Like this video`
147 this.tooltipDislike = $localize`Dislike this video`
148 this.tooltipSupport = $localize`Support options for this video`
149 this.tooltipSaveToPlaylist = $localize`Save to playlist`
150 }
151
152 PeertubePlayerManager.initState()
153
154 this.serverConfig = this.serverService.getTmpConfig()
155
156 this.configSub = this.serverService.getConfig()
157 .subscribe(config => {
158 this.serverConfig = config
159
160 if (
161 isWebRTCDisabled() ||
162 this.serverConfig.tracker.enabled === false ||
163 getStoredP2PEnabled() === false ||
164 peertubeLocalStorage.getItem(VideoWatchComponent.LOCAL_STORAGE_PRIVACY_CONCERN_KEY) === 'true'
165 ) {
166 this.hasAlreadyAcceptedPrivacyConcern = true
167 }
168 })
169
170 this.paramsSub = this.route.params.subscribe(routeParams => {
171 const videoId = routeParams[ 'videoId' ]
172 if (videoId) this.loadVideo(videoId)
173
174 const playlistId = routeParams[ 'playlistId' ]
175 if (playlistId) this.loadPlaylist(playlistId)
176 })
177
178 this.queryParamsSub = this.route.queryParams.subscribe(queryParams => {
179 this.playlistPosition = queryParams[ 'playlistPosition' ]
180 this.videoWatchPlaylist.updatePlaylistIndex(this.playlistPosition)
181
182 const start = queryParams[ 'start' ]
183 if (this.player && start) this.player.currentTime(parseInt(start, 10))
184 })
185
186 this.initHotkeys()
187
188 this.theaterEnabled = getStoredTheater()
189
190 this.hooks.runAction('action:video-watch.init', 'video-watch')
191 }
192
193 ngOnDestroy () {
194 this.flushPlayer()
195
196 // Unsubscribe subscriptions
197 if (this.paramsSub) this.paramsSub.unsubscribe()
198 if (this.queryParamsSub) this.queryParamsSub.unsubscribe()
199 if (this.configSub) this.configSub.unsubscribe()
200 if (this.liveVideosSub) this.liveVideosSub.unsubscribe()
201
202 // Unbind hotkeys
203 this.hotkeysService.remove(this.hotkeys)
204 }
205
206 setLike () {
207 if (this.isUserLoggedIn() === false) return
208
209 // Already liked this video
210 if (this.userRating === 'like') this.setRating('none')
211 else this.setRating('like')
212 }
213
214 setDislike () {
215 if (this.isUserLoggedIn() === false) return
216
217 // Already disliked this video
218 if (this.userRating === 'dislike') this.setRating('none')
219 else this.setRating('dislike')
220 }
221
222 getRatePopoverText () {
223 if (this.isUserLoggedIn()) return undefined
224
225 return $localize`You need to be <a href="/login">logged in</a> to rate this video.`
226 }
227
228 showMoreDescription () {
229 if (this.completeVideoDescription === undefined) {
230 return this.loadCompleteDescription()
231 }
232
233 this.updateVideoDescription(this.completeVideoDescription)
234 this.completeDescriptionShown = true
235 }
236
237 showLessDescription () {
238 this.updateVideoDescription(this.shortVideoDescription)
239 this.completeDescriptionShown = false
240 }
241
242 showDownloadModal () {
243 this.videoDownloadModal.show(this.video, this.videoCaptions)
244 }
245
246 isVideoDownloadable () {
247 return this.video && this.video instanceof VideoDetails && this.video.downloadEnabled && !this.video.isLive
248 }
249
250 loadCompleteDescription () {
251 this.descriptionLoading = true
252
253 this.videoService.loadCompleteDescription(this.video.descriptionPath)
254 .subscribe(
255 description => {
256 this.completeDescriptionShown = true
257 this.descriptionLoading = false
258
259 this.shortVideoDescription = this.video.description
260 this.completeVideoDescription = description
261
262 this.updateVideoDescription(this.completeVideoDescription)
263 },
264
265 error => {
266 this.descriptionLoading = false
267 this.notifier.error(error.message)
268 }
269 )
270 }
271
272 showSupportModal () {
273 // Check video was playing before opening support modal
274 const isVideoPlaying = this.isPlaying()
275
276 this.pausePlayer()
277
278 const modalRef = this.videoSupportModal.show()
279
280 modalRef.result.then(() => {
281 if (isVideoPlaying) {
282 this.resumePlayer()
283 }
284 })
285 }
286
287 showShareModal () {
288 this.pausePlayer()
289
290 this.videoShareModal.show(this.currentTime, this.videoWatchPlaylist.currentPlaylistPosition)
291 }
292
293 isUserLoggedIn () {
294 return this.authService.isLoggedIn()
295 }
296
297 getVideoTags () {
298 if (!this.video || Array.isArray(this.video.tags) === false) return []
299
300 return this.video.tags
301 }
302
303 onRecommendations (videos: Video[]) {
304 if (videos.length > 0) {
305 // The recommended videos's first element should be the next video
306 const video = videos[0]
307 this.nextVideoUuid = video.uuid
308 this.nextVideoTitle = video.name
309 }
310 }
311
312 onModalOpened () {
313 this.pausePlayer()
314 }
315
316 onVideoRemoved () {
317 this.redirectService.redirectToHomepage()
318 }
319
320 declinedPrivacyConcern () {
321 peertubeLocalStorage.setItem(VideoWatchComponent.LOCAL_STORAGE_PRIVACY_CONCERN_KEY, 'false')
322 this.hasAlreadyAcceptedPrivacyConcern = false
323 }
324
325 acceptedPrivacyConcern () {
326 peertubeLocalStorage.setItem(VideoWatchComponent.LOCAL_STORAGE_PRIVACY_CONCERN_KEY, 'true')
327 this.hasAlreadyAcceptedPrivacyConcern = true
328 }
329
330 isVideoToTranscode () {
331 return this.video && this.video.state.id === VideoState.TO_TRANSCODE
332 }
333
334 isVideoToImport () {
335 return this.video && this.video.state.id === VideoState.TO_IMPORT
336 }
337
338 hasVideoScheduledPublication () {
339 return this.video && this.video.scheduledUpdate !== undefined
340 }
341
342 isLive () {
343 return !!(this.video?.isLive)
344 }
345
346 isWaitingForLive () {
347 return this.video?.state.id === VideoState.WAITING_FOR_LIVE
348 }
349
350 isLiveEnded () {
351 return this.video?.state.id === VideoState.LIVE_ENDED
352 }
353
354 isVideoBlur (video: Video) {
355 return video.isVideoNSFWForUser(this.user, this.serverConfig)
356 }
357
358 isAutoPlayEnabled () {
359 return (
360 (this.user && this.user.autoPlayNextVideo) ||
361 this.anonymousUser.autoPlayNextVideo
362 )
363 }
364
365 handleTimestampClicked (timestamp: number) {
366 if (!this.player || this.video.isLive) return
367
368 this.player.currentTime(timestamp)
369 scrollToTop()
370 }
371
372 isPlaylistAutoPlayEnabled () {
373 return (
374 (this.user && this.user.autoPlayNextVideoPlaylist) ||
375 this.anonymousUser.autoPlayNextVideoPlaylist
376 )
377 }
378
379 isChannelDisplayNameGeneric () {
380 const genericChannelDisplayName = [
381 `Main ${this.video.channel.ownerAccount.name} channel`,
382 `Default ${this.video.channel.ownerAccount.name} channel`
383 ]
384
385 return genericChannelDisplayName.includes(this.video.channel.displayName)
386 }
387
388 onPlaylistVideoFound (videoId: string) {
389 this.loadVideo(videoId)
390 }
391
392 private loadVideo (videoId: string) {
393 // Video did not change
394 if (this.video && this.video.uuid === videoId) return
395
396 if (this.player) this.player.pause()
397
398 const videoObs = this.hooks.wrapObsFun(
399 this.videoService.getVideo.bind(this.videoService),
400 { videoId },
401 'video-watch',
402 'filter:api.video-watch.video.get.params',
403 'filter:api.video-watch.video.get.result'
404 )
405
406 // Video did change
407 forkJoin([
408 videoObs,
409 this.videoCaptionService.listCaptions(videoId)
410 ])
411 .pipe(
412 // If 400, 403 or 404, the video is private or blocked so redirect to 404
413 catchError(err => {
414 if (err.body.errorCode === ServerErrorCode.DOES_NOT_RESPECT_FOLLOW_CONSTRAINTS && err.body.originUrl) {
415 const search = window.location.search
416 let originUrl = err.body.originUrl
417 if (search) originUrl += search
418
419 this.confirmService.confirm(
420 $localize`This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="${originUrl}">${originUrl}</a>?`,
421 $localize`Redirection`
422 ).then(res => {
423 if (res === false) {
424 return this.restExtractor.redirectTo404IfNotFound(err, 'video', [
425 HttpStatusCode.BAD_REQUEST_400,
426 HttpStatusCode.FORBIDDEN_403,
427 HttpStatusCode.NOT_FOUND_404
428 ])
429 }
430
431 return window.location.href = originUrl
432 })
433 }
434
435 return this.restExtractor.redirectTo404IfNotFound(err, 'video', [
436 HttpStatusCode.BAD_REQUEST_400,
437 HttpStatusCode.FORBIDDEN_403,
438 HttpStatusCode.NOT_FOUND_404
439 ])
440 })
441 )
442 .subscribe(([ video, captionsResult ]) => {
443 const queryParams = this.route.snapshot.queryParams
444
445 const urlOptions = {
446 resume: queryParams.resume,
447
448 startTime: queryParams.start,
449 stopTime: queryParams.stop,
450
451 muted: queryParams.muted,
452 loop: queryParams.loop,
453 subtitle: queryParams.subtitle,
454
455 playerMode: queryParams.mode,
456 peertubeLink: false
457 }
458
459 this.onVideoFetched(video, captionsResult.data, urlOptions)
460 .catch(err => this.handleError(err))
461 })
462 }
463
464 private loadPlaylist (playlistId: string) {
465 // Playlist did not change
466 if (this.playlist && this.playlist.uuid === playlistId) return
467
468 this.playlistService.getVideoPlaylist(playlistId)
469 .pipe(
470 // If 400 or 403, the video is private or blocked so redirect to 404
471 catchError(err => this.restExtractor.redirectTo404IfNotFound(err, 'video', [
472 HttpStatusCode.BAD_REQUEST_400,
473 HttpStatusCode.FORBIDDEN_403,
474 HttpStatusCode.NOT_FOUND_404
475 ]))
476 )
477 .subscribe(playlist => {
478 this.playlist = playlist
479
480 this.videoWatchPlaylist.loadPlaylistElements(playlist, !this.playlistPosition, this.playlistPosition)
481 })
482 }
483
484 private updateVideoDescription (description: string) {
485 this.video.description = description
486 this.setVideoDescriptionHTML()
487 .catch(err => console.error(err))
488 }
489
490 private async setVideoDescriptionHTML () {
491 const html = await this.markdownService.textMarkdownToHTML(this.video.description)
492 this.videoHTMLDescription = await this.markdownService.processVideoTimestamps(html)
493 }
494
495 private setVideoLikesBarTooltipText () {
496 this.likesBarTooltipText = `${this.video.likes} likes / ${this.video.dislikes} dislikes`
497 }
498
499 private handleError (err: any) {
500 const errorMessage: string = typeof err === 'string' ? err : err.message
501 if (!errorMessage) return
502
503 // Display a message in the video player instead of a notification
504 if (errorMessage.indexOf('from xs param') !== -1) {
505 this.flushPlayer()
506 this.remoteServerDown = true
507 this.changeDetector.detectChanges()
508
509 return
510 }
511
512 this.notifier.error(errorMessage)
513 }
514
515 private checkUserRating () {
516 // Unlogged users do not have ratings
517 if (this.isUserLoggedIn() === false) return
518
519 this.videoService.getUserVideoRating(this.video.id)
520 .subscribe(
521 ratingObject => {
522 if (ratingObject) {
523 this.userRating = ratingObject.rating
524 }
525 },
526
527 err => this.notifier.error(err.message)
528 )
529 }
530
531 private async onVideoFetched (
532 video: VideoDetails,
533 videoCaptions: VideoCaption[],
534 urlOptions: URLOptions
535 ) {
536 this.subscribeToLiveEventsIfNeeded(this.video, video)
537
538 this.video = video
539 this.videoCaptions = videoCaptions
540
541 // Re init attributes
542 this.descriptionLoading = false
543 this.completeDescriptionShown = false
544 this.completeVideoDescription = undefined
545 this.remoteServerDown = false
546 this.currentTime = undefined
547
548 if (this.isVideoBlur(this.video)) {
549 const res = await this.confirmService.confirm(
550 $localize`This video contains mature or explicit content. Are you sure you want to watch it?`,
551 $localize`Mature or explicit content`
552 )
553 if (res === false) return this.location.back()
554 }
555
556 this.buildPlayer(urlOptions)
557 .catch(err => console.error('Cannot build the player', err))
558
559 this.setVideoDescriptionHTML()
560 this.setVideoLikesBarTooltipText()
561
562 this.setOpenGraphTags()
563 this.checkUserRating()
564
565 this.hooks.runAction('action:video-watch.video.loaded', 'video-watch', { videojs })
566 }
567
568 private async buildPlayer (urlOptions: URLOptions) {
569 const videoState = this.video.state.id
570 if (videoState === VideoState.LIVE_ENDED || videoState === VideoState.WAITING_FOR_LIVE) return
571
572 // Flush old player if needed
573 this.flushPlayer()
574
575 // Build video element, because videojs removes it on dispose
576 const playerElementWrapper = this.elementRef.nativeElement.querySelector('#videojs-wrapper')
577 this.playerElement = document.createElement('video')
578 this.playerElement.className = 'video-js vjs-peertube-skin'
579 this.playerElement.setAttribute('playsinline', 'true')
580 playerElementWrapper.appendChild(this.playerElement)
581
582 const params = {
583 video: this.video,
584 videoCaptions: this.videoCaptions,
585 urlOptions,
586 user: this.user
587 }
588 const { playerMode, playerOptions } = await this.hooks.wrapFun(
589 this.buildPlayerManagerOptions.bind(this),
590 params,
591 'video-watch',
592 'filter:internal.video-watch.player.build-options.params',
593 'filter:internal.video-watch.player.build-options.result'
594 )
595
596 this.zone.runOutsideAngular(async () => {
597 this.player = await PeertubePlayerManager.initialize(playerMode, playerOptions, player => this.player = player)
598
599 this.player.on('customError', ({ err }: { err: any }) => this.handleError(err))
600
601 this.player.on('timeupdate', () => {
602 this.currentTime = Math.floor(this.player.currentTime())
603 })
604
605 /**
606 * replaces this.player.one('ended')
607 * 'condition()': true to make the upnext functionality trigger,
608 * false to disable the upnext functionality
609 * go to the next video in 'condition()' if you don't want of the timer.
610 * 'next': function triggered at the end of the timer.
611 * 'suspended': function used at each clic of the timer checking if we need
612 * to reset progress and wait until 'suspended' becomes truthy again.
613 */
614 this.player.upnext({
615 timeout: 10000, // 10s
616 headText: $localize`Up Next`,
617 cancelText: $localize`Cancel`,
618 suspendedText: $localize`Autoplay is suspended`,
619 getTitle: () => this.nextVideoTitle,
620 next: () => this.zone.run(() => this.autoplayNext()),
621 condition: () => {
622 if (this.playlist) {
623 if (this.isPlaylistAutoPlayEnabled()) {
624 // upnext will not trigger, and instead the next video will play immediately
625 this.zone.run(() => this.videoWatchPlaylist.navigateToNextPlaylistVideo())
626 }
627 } else if (this.isAutoPlayEnabled()) {
628 return true // upnext will trigger
629 }
630 return false // upnext will not trigger, and instead leave the video stopping
631 },
632 suspended: () => {
633 return (
634 !isXPercentInViewport(this.player.el(), 80) ||
635 !document.getElementById('content').contains(document.activeElement)
636 )
637 }
638 })
639
640 this.player.one('stopped', () => {
641 if (this.playlist) {
642 if (this.isPlaylistAutoPlayEnabled()) this.zone.run(() => this.videoWatchPlaylist.navigateToNextPlaylistVideo())
643 }
644 })
645
646 this.player.one('ended', () => {
647 if (this.video.isLive) {
648 this.video.state.id = VideoState.LIVE_ENDED
649 }
650 })
651
652 this.player.on('theaterChange', (_: any, enabled: boolean) => {
653 this.zone.run(() => this.theaterEnabled = enabled)
654 })
655
656 this.hooks.runAction('action:video-watch.player.loaded', 'video-watch', { player: this.player, videojs, video: this.video })
657 })
658 }
659
660 private autoplayNext () {
661 if (this.playlist) {
662 this.zone.run(() => this.videoWatchPlaylist.navigateToNextPlaylistVideo())
663 } else if (this.nextVideoUuid) {
664 this.router.navigate([ '/videos/watch', this.nextVideoUuid ])
665 }
666 }
667
668 private setRating (nextRating: UserVideoRateType) {
669 const ratingMethods: { [id in UserVideoRateType]: (id: number) => Observable<any> } = {
670 like: this.videoService.setVideoLike,
671 dislike: this.videoService.setVideoDislike,
672 none: this.videoService.unsetVideoLike
673 }
674
675 ratingMethods[nextRating].call(this.videoService, this.video.id)
676 .subscribe(
677 () => {
678 // Update the video like attribute
679 this.updateVideoRating(this.userRating, nextRating)
680 this.userRating = nextRating
681 },
682
683 (err: { message: string }) => this.notifier.error(err.message)
684 )
685 }
686
687 private updateVideoRating (oldRating: UserVideoRateType, newRating: UserVideoRateType) {
688 let likesToIncrement = 0
689 let dislikesToIncrement = 0
690
691 if (oldRating) {
692 if (oldRating === 'like') likesToIncrement--
693 if (oldRating === 'dislike') dislikesToIncrement--
694 }
695
696 if (newRating === 'like') likesToIncrement++
697 if (newRating === 'dislike') dislikesToIncrement++
698
699 this.video.likes += likesToIncrement
700 this.video.dislikes += dislikesToIncrement
701
702 this.video.buildLikeAndDislikePercents()
703 this.setVideoLikesBarTooltipText()
704 }
705
706 private setOpenGraphTags () {
707 this.metaService.setTitle(this.video.name)
708
709 this.metaService.setTag('og:type', 'video')
710
711 this.metaService.setTag('og:title', this.video.name)
712 this.metaService.setTag('name', this.video.name)
713
714 this.metaService.setTag('og:description', this.video.description)
715 this.metaService.setTag('description', this.video.description)
716
717 this.metaService.setTag('og:image', this.video.previewPath)
718
719 this.metaService.setTag('og:duration', this.video.duration.toString())
720
721 this.metaService.setTag('og:site_name', 'PeerTube')
722
723 this.metaService.setTag('og:url', window.location.href)
724 this.metaService.setTag('url', window.location.href)
725 }
726
727 private isAutoplay () {
728 // We'll jump to the thread id, so do not play the video
729 if (this.route.snapshot.params['threadId']) return false
730
731 // Otherwise true by default
732 if (!this.user) return true
733
734 // Be sure the autoPlay is set to false
735 return this.user.autoPlayVideo !== false
736 }
737
738 private flushPlayer () {
739 // Remove player if it exists
740 if (this.player) {
741 try {
742 this.player.dispose()
743 this.player = undefined
744 } catch (err) {
745 console.error('Cannot dispose player.', err)
746 }
747 }
748 }
749
750 private buildPlayerManagerOptions (params: {
751 video: VideoDetails,
752 videoCaptions: VideoCaption[],
753 urlOptions: CustomizationOptions & { playerMode: PlayerMode },
754 user?: AuthUser
755 }) {
756 const { video, videoCaptions, urlOptions, user } = params
757 const getStartTime = () => {
758 const byUrl = urlOptions.startTime !== undefined
759 const byHistory = video.userHistory && (!this.playlist || urlOptions.resume !== undefined)
760
761 if (byUrl) return timeToInt(urlOptions.startTime)
762 if (byHistory) return video.userHistory.currentTime
763
764 return 0
765 }
766
767 let startTime = getStartTime()
768
769 // If we are at the end of the video, reset the timer
770 if (video.duration - startTime <= 1) startTime = 0
771
772 const playerCaptions = videoCaptions.map(c => ({
773 label: c.language.label,
774 language: c.language.id,
775 src: environment.apiUrl + c.captionPath
776 }))
777
778 const options: PeertubePlayerManagerOptions = {
779 common: {
780 autoplay: this.isAutoplay(),
781 nextVideo: () => this.zone.run(() => this.autoplayNext()),
782
783 playerElement: this.playerElement,
784 onPlayerElementChange: (element: HTMLVideoElement) => this.playerElement = element,
785
786 videoDuration: video.duration,
787 enableHotkeys: true,
788 inactivityTimeout: 2500,
789 poster: video.previewUrl,
790
791 startTime,
792 stopTime: urlOptions.stopTime,
793 controls: urlOptions.controls,
794 muted: urlOptions.muted,
795 loop: urlOptions.loop,
796 subtitle: urlOptions.subtitle,
797
798 peertubeLink: urlOptions.peertubeLink,
799
800 theaterButton: true,
801 captions: videoCaptions.length !== 0,
802
803 videoViewUrl: video.privacy.id !== VideoPrivacy.PRIVATE
804 ? this.videoService.getVideoViewUrl(video.uuid)
805 : null,
806 embedUrl: video.embedUrl,
807
808 isLive: video.isLive,
809
810 language: this.localeId,
811
812 userWatching: user && user.videosHistoryEnabled === true ? {
813 url: this.videoService.getUserWatchingVideoUrl(video.uuid),
814 authorizationHeader: this.authService.getRequestHeaderValue()
815 } : undefined,
816
817 serverUrl: environment.apiUrl,
818
819 videoCaptions: playerCaptions
820 },
821
822 webtorrent: {
823 videoFiles: video.files
824 }
825 }
826
827 let mode: PlayerMode
828
829 if (urlOptions.playerMode) {
830 if (urlOptions.playerMode === 'p2p-media-loader') mode = 'p2p-media-loader'
831 else mode = 'webtorrent'
832 } else {
833 if (video.hasHlsPlaylist()) mode = 'p2p-media-loader'
834 else mode = 'webtorrent'
835 }
836
837 // p2p-media-loader needs TextEncoder, try to fallback on WebTorrent
838 if (typeof TextEncoder === 'undefined') {
839 mode = 'webtorrent'
840 }
841
842 if (mode === 'p2p-media-loader') {
843 const hlsPlaylist = video.getHlsPlaylist()
844
845 const p2pMediaLoader = {
846 playlistUrl: hlsPlaylist.playlistUrl,
847 segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
848 redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
849 trackerAnnounce: video.trackerUrls,
850 videoFiles: hlsPlaylist.files
851 } as P2PMediaLoaderOptions
852
853 Object.assign(options, { p2pMediaLoader })
854 }
855
856 return { playerMode: mode, playerOptions: options }
857 }
858
859 private pausePlayer () {
860 if (!this.player) return
861
862 this.player.pause()
863 }
864
865 private resumePlayer () {
866 if (!this.player) return
867
868 this.player.play()
869 }
870
871 private isPlaying () {
872 if (!this.player) return
873
874 return !this.player.paused()
875 }
876
877 private async subscribeToLiveEventsIfNeeded (oldVideo: VideoDetails, newVideo: VideoDetails) {
878 if (!this.liveVideosSub) {
879 this.liveVideosSub = this.buildLiveEventsSubscription()
880 }
881
882 if (oldVideo && oldVideo.id !== newVideo.id) {
883 await this.peertubeSocket.unsubscribeLiveVideos(oldVideo.id)
884 }
885
886 if (!newVideo.isLive) return
887
888 await this.peertubeSocket.subscribeToLiveVideosSocket(newVideo.id)
889 }
890
891 private buildLiveEventsSubscription () {
892 return this.peertubeSocket.getLiveVideosObservable()
893 .subscribe(({ type, payload }) => {
894 if (type === 'state-change') return this.handleLiveStateChange(payload.state)
895 if (type === 'views-change') return this.handleLiveViewsChange(payload.views)
896 })
897 }
898
899 private handleLiveStateChange (newState: VideoState) {
900 if (newState !== VideoState.PUBLISHED) return
901
902 const videoState = this.video.state.id
903 if (videoState !== VideoState.WAITING_FOR_LIVE && videoState !== VideoState.LIVE_ENDED) return
904
905 console.log('Loading video after live update.')
906
907 const videoUUID = this.video.uuid
908
909 // Reset to refetch the video
910 this.video = undefined
911 this.loadVideo(videoUUID)
912 }
913
914 private handleLiveViewsChange (newViews: number) {
915 if (!this.video) {
916 console.error('Cannot update video live views because video is no defined.')
917 return
918 }
919
920 console.log('Updating live views.')
921
922 this.video.views = newViews
923 }
924
925 private initHotkeys () {
926 this.hotkeys = [
927 // These hotkeys are managed by the player
928 new Hotkey('f', e => e, undefined, $localize`Enter/exit fullscreen (requires player focus)`),
929 new Hotkey('space', e => e, undefined, $localize`Play/Pause the video (requires player focus)`),
930 new Hotkey('m', e => e, undefined, $localize`Mute/unmute the video (requires player focus)`),
931
932 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)`),
933
934 new Hotkey('up', e => e, undefined, $localize`Increase the volume (requires player focus)`),
935 new Hotkey('down', e => e, undefined, $localize`Decrease the volume (requires player focus)`),
936
937 new Hotkey('right', e => e, undefined, $localize`Seek the video forward (requires player focus)`),
938 new Hotkey('left', e => e, undefined, $localize`Seek the video backward (requires player focus)`),
939
940 new Hotkey('>', e => e, undefined, $localize`Increase playback rate (requires player focus)`),
941 new Hotkey('<', e => e, undefined, $localize`Decrease playback rate (requires player focus)`),
942
943 new Hotkey('.', e => e, undefined, $localize`Navigate in the video frame by frame (requires player focus)`)
944 ]
945
946 if (this.isUserLoggedIn()) {
947 this.hotkeys = this.hotkeys.concat([
948 new Hotkey('shift+l', () => {
949 this.setLike()
950 return false
951 }, undefined, $localize`Like the video`),
952
953 new Hotkey('shift+d', () => {
954 this.setDislike()
955 return false
956 }, undefined, $localize`Dislike the video`),
957
958 new Hotkey('shift+s', () => {
959 this.subscribeButton.subscribed ? this.subscribeButton.unsubscribe() : this.subscribeButton.subscribe()
960 return false
961 }, undefined, $localize`Subscribe to the account`)
962 ])
963 }
964
965 this.hotkeysService.add(this.hotkeys)
966 }
967 }