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