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