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