]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.component.ts
add loop setting for playlists, and use sessionStorage
[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
e2f01c47
C
270 private loadVideo (videoId: string) {
271 // Video did not change
272 if (this.video && this.video.uuid === videoId) return
273
274 if (this.player) this.player.pause()
275
93cae479
C
276 const videoObs = this.hooks.wrapObsFun(
277 this.videoService.getVideo.bind(this.videoService),
278 { videoId },
279 'video-watch',
280 'filter:api.video-watch.video.get.params',
281 'filter:api.video-watch.video.get.result'
282 )
283
e2f01c47 284 // Video did change
c8861d5d 285 forkJoin([
93cae479 286 videoObs,
e2f01c47 287 this.videoCaptionService.listCaptions(videoId)
c8861d5d 288 ])
e2f01c47
C
289 .pipe(
290 // If 401, the video is private or blacklisted so redirect to 404
291 catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 401, 403, 404 ]))
292 )
293 .subscribe(([ video, captionsResult ]) => {
294 const queryParams = this.route.snapshot.queryParams
e2f01c47 295
4c72c1cd
C
296 const urlOptions = {
297 startTime: queryParams.start,
298 stopTime: queryParams.stop,
5efab546
C
299
300 muted: queryParams.muted,
301 loop: queryParams.loop,
4c72c1cd 302 subtitle: queryParams.subtitle,
5efab546
C
303
304 playerMode: queryParams.mode,
305 peertubeLink: false
4c72c1cd
C
306 }
307
308 this.onVideoFetched(video, captionsResult.data, urlOptions)
e2f01c47
C
309 .catch(err => this.handleError(err))
310 })
311 }
312
313 private loadPlaylist (playlistId: string) {
314 // Playlist did not change
315 if (this.playlist && this.playlist.uuid === playlistId) return
316
317 this.playlistService.getVideoPlaylist(playlistId)
318 .pipe(
319 // If 401, the video is private or blacklisted so redirect to 404
320 catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 401, 403, 404 ]))
321 )
322 .subscribe(playlist => {
323 this.playlist = playlist
324
325 const videoId = this.route.snapshot.queryParams['videoId']
72675ebe 326 this.videoWatchPlaylist.loadPlaylistElements(playlist, !videoId)
e2f01c47
C
327 })
328 }
329
2de96f4d
C
330 private updateVideoDescription (description: string) {
331 this.video.description = description
332 this.setVideoDescriptionHTML()
4c72c1cd 333 .catch(err => console.error(err))
2de96f4d
C
334 }
335
41d71344
C
336 private async setVideoDescriptionHTML () {
337 this.videoHTMLDescription = await this.markdownService.textMarkdownToHTML(this.video.description)
2de96f4d
C
338 }
339
e9189001 340 private setVideoLikesBarTooltipText () {
2186386c
C
341 this.likesBarTooltipText = this.i18n('{{likesNumber}} likes / {{dislikesNumber}} dislikes', {
342 likesNumber: this.video.likes,
343 dislikesNumber: this.video.dislikes
344 })
e9189001
C
345 }
346
0c31c33d
C
347 private handleError (err: any) {
348 const errorMessage: string = typeof err === 'string' ? err : err.message
bf5685f0
C
349 if (!errorMessage) return
350
6d88de72 351 // Display a message in the video player instead of a notification
0f7fedc3 352 if (errorMessage.indexOf('from xs param') !== -1) {
6d88de72
C
353 this.flushPlayer()
354 this.remoteServerDown = true
3b492bff
C
355 this.changeDetector.detectChanges()
356
6d88de72 357 return
0c31c33d
C
358 }
359
f8b2c1b4 360 this.notifier.error(errorMessage)
0c31c33d
C
361 }
362
df98563e 363 private checkUserRating () {
d38b8281 364 // Unlogged users do not have ratings
df98563e 365 if (this.isUserLoggedIn() === false) return
d38b8281
C
366
367 this.videoService.getUserVideoRating(this.video.id)
2186386c
C
368 .subscribe(
369 ratingObject => {
370 if (ratingObject) {
371 this.userRating = ratingObject.rating
372 }
373 },
374
f8b2c1b4 375 err => this.notifier.error(err.message)
2186386c 376 )
d38b8281
C
377 }
378
597a9266
C
379 private async onVideoFetched (
380 video: VideoDetails,
381 videoCaptions: VideoCaption[],
5efab546 382 urlOptions: CustomizationOptions & { playerMode: PlayerMode }
597a9266 383 ) {
df98563e 384 this.video = video
2f4c784a 385 this.videoCaptions = videoCaptions
92fb909c 386
c448d412
C
387 // Re init attributes
388 this.descriptionLoading = false
389 this.completeDescriptionShown = false
6d88de72 390 this.remoteServerDown = false
f0a39880 391 this.currentTime = undefined
c448d412 392
72675ebe 393 this.videoWatchPlaylist.updatePlaylistIndex(video)
e2f01c47 394
e2f01c47 395 if (this.isVideoBlur(this.video)) {
22b59e80 396 const res = await this.confirmService.confirm(
989e526a
C
397 this.i18n('This video contains mature or explicit content. Are you sure you want to watch it?'),
398 this.i18n('Mature or explicit content')
d6e32a2e 399 )
60c2bc80 400 if (res === false) return this.location.back()
92fb909c
C
401 }
402
09edde40
C
403 // Flush old player if needed
404 this.flushPlayer()
b891f9bc 405
60c2bc80 406 // Build video element, because videojs removes it on dispose
e2f01c47 407 const playerElementWrapper = this.elementRef.nativeElement.querySelector('#videojs-wrapper')
b891f9bc
C
408 this.playerElement = document.createElement('video')
409 this.playerElement.className = 'video-js vjs-peertube-skin'
e7eb5b39 410 this.playerElement.setAttribute('playsinline', 'true')
b891f9bc
C
411 playerElementWrapper.appendChild(this.playerElement)
412
3d9a63d3
C
413 const params = {
414 video: this.video,
415 videoCaptions,
416 urlOptions,
417 user: this.user
e945b184 418 }
3d9a63d3
C
419 const { playerMode, playerOptions } = await this.hooks.wrapFun(
420 this.buildPlayerManagerOptions.bind(this),
421 params,
c2023a9f
C
422 'video-watch',
423 'filter:internal.video-watch.player.build-options.params',
3d9a63d3
C
424 'filter:internal.video-watch.player.build-options.result'
425 )
e945b184 426
e945b184 427 this.zone.runOutsideAngular(async () => {
3d9a63d3 428 this.player = await PeertubePlayerManager.initialize(playerMode, playerOptions, player => this.player = player)
d275e754 429 this.player.focus()
9a18a625 430
2adfc7ea 431 this.player.on('customError', ({ err }: { err: any }) => this.handleError(err))
f0a39880
C
432
433 this.player.on('timeupdate', () => {
434 this.currentTime = Math.floor(this.player.currentTime())
435 })
e2f01c47
C
436
437 this.player.one('ended', () => {
438 if (this.playlist) {
bee29df8
RK
439 if (
440 this.user && this.user.autoPlayNextVideoPlaylist ||
88a7f93f 441 peertubeSessionStorage.getItem(VideoWatchPlaylistComponent.SESSION_STORAGE_AUTO_PLAY_NEXT_VIDEO_PLAYLIST) === 'true'
bee29df8 442 ) this.zone.run(() => this.videoWatchPlaylist.navigateToNextPlaylistVideo())
d816f3a0
RK
443 } else if (
444 this.user && this.user.autoPlayNextVideo ||
88a7f93f 445 peertubeSessionStorage.getItem(RecommendedVideosComponent.SESSION_STORAGE_AUTO_PLAY_NEXT_VIDEO) === 'true'
d816f3a0 446 ) {
6aa54148 447 this.zone.run(() => this.autoplayNext())
e2f01c47
C
448 }
449 })
450
451 this.player.one('stopped', () => {
452 if (this.playlist) {
bee29df8
RK
453 if (
454 this.user && this.user.autoPlayNextVideoPlaylist ||
88a7f93f 455 peertubeSessionStorage.getItem(VideoWatchPlaylistComponent.SESSION_STORAGE_AUTO_PLAY_NEXT_VIDEO_PLAYLIST) === 'true'
bee29df8 456 ) this.zone.run(() => this.videoWatchPlaylist.navigateToNextPlaylistVideo())
e2f01c47
C
457 }
458 })
9a18a625
C
459
460 this.player.on('theaterChange', (_: any, enabled: boolean) => {
461 this.zone.run(() => this.theaterEnabled = enabled)
462 })
5f85f8aa
RK
463
464 this.hooks.runAction('action:video-watch.player.loaded', 'video-watch', { player: this.player })
b891f9bc 465 })
22b59e80
C
466
467 this.setVideoDescriptionHTML()
468 this.setVideoLikesBarTooltipText()
469
470 this.setOpenGraphTags()
471 this.checkUserRating()
93cae479 472
5f85f8aa 473 this.hooks.runAction('action:video-watch.video.loaded', 'video-watch', { videojs })
92fb909c
C
474 }
475
6aa54148
L
476 private autoplayNext () {
477 if (this.nextVideoUuid) {
478 this.router.navigate([ '/videos/watch', this.nextVideoUuid ])
479 }
480 }
481
5c6d985f 482 private setRating (nextRating: UserVideoRateType) {
4c72c1cd
C
483 const ratingMethods: { [id in UserVideoRateType]: (id: number) => Observable<any> } = {
484 like: this.videoService.setVideoLike,
485 dislike: this.videoService.setVideoDislike,
486 none: this.videoService.unsetVideoLike
57a49263
BB
487 }
488
4c72c1cd 489 ratingMethods[nextRating].call(this.videoService, this.video.id)
2186386c
C
490 .subscribe(
491 () => {
492 // Update the video like attribute
493 this.updateVideoRating(this.userRating, nextRating)
494 this.userRating = nextRating
495 },
496
f8b2c1b4 497 (err: { message: string }) => this.notifier.error(err.message)
2186386c 498 )
57a49263
BB
499 }
500
5c6d985f 501 private updateVideoRating (oldRating: UserVideoRateType, newRating: UserVideoRateType) {
df98563e
C
502 let likesToIncrement = 0
503 let dislikesToIncrement = 0
d38b8281
C
504
505 if (oldRating) {
df98563e
C
506 if (oldRating === 'like') likesToIncrement--
507 if (oldRating === 'dislike') dislikesToIncrement--
d38b8281
C
508 }
509
df98563e
C
510 if (newRating === 'like') likesToIncrement++
511 if (newRating === 'dislike') dislikesToIncrement++
d38b8281 512
df98563e
C
513 this.video.likes += likesToIncrement
514 this.video.dislikes += dislikesToIncrement
20b40b19 515
22b59e80 516 this.video.buildLikeAndDislikePercents()
20b40b19 517 this.setVideoLikesBarTooltipText()
d38b8281
C
518 }
519
df98563e
C
520 private setOpenGraphTags () {
521 this.metaService.setTitle(this.video.name)
758b996d 522
df98563e 523 this.metaService.setTag('og:type', 'video')
3ec343a4 524
df98563e
C
525 this.metaService.setTag('og:title', this.video.name)
526 this.metaService.setTag('name', this.video.name)
3ec343a4 527
df98563e
C
528 this.metaService.setTag('og:description', this.video.description)
529 this.metaService.setTag('description', this.video.description)
3ec343a4 530
d38309c3 531 this.metaService.setTag('og:image', this.video.previewPath)
3ec343a4 532
df98563e 533 this.metaService.setTag('og:duration', this.video.duration.toString())
3ec343a4 534
df98563e 535 this.metaService.setTag('og:site_name', 'PeerTube')
3ec343a4 536
df98563e
C
537 this.metaService.setTag('og:url', window.location.href)
538 this.metaService.setTag('url', window.location.href)
3ec343a4 539 }
1f3e9fec 540
d4c6a3b9 541 private isAutoplay () {
bf079b7b
C
542 // We'll jump to the thread id, so do not play the video
543 if (this.route.snapshot.params['threadId']) return false
544
545 // Otherwise true by default
d4c6a3b9
C
546 if (!this.user) return true
547
548 // Be sure the autoPlay is set to false
549 return this.user.autoPlayVideo !== false
550 }
09edde40
C
551
552 private flushPlayer () {
553 // Remove player if it exists
554 if (this.player) {
536598cf
C
555 try {
556 this.player.dispose()
557 this.player = undefined
558 } catch (err) {
559 console.error('Cannot dispose player.', err)
560 }
09edde40
C
561 }
562 }
1c8ddbfa 563
3d9a63d3
C
564 private buildPlayerManagerOptions (params: {
565 video: VideoDetails,
566 videoCaptions: VideoCaption[],
567 urlOptions: CustomizationOptions & { playerMode: PlayerMode },
568 user?: AuthUser
569 }) {
570 const { video, videoCaptions, urlOptions, user } = params
571
12f18b90 572 let startTime = timeToInt(urlOptions.startTime) || (video.userHistory && !this.playlist ? video.userHistory.currentTime : 0)
3d9a63d3
C
573 // If we are at the end of the video, reset the timer
574 if (video.duration - startTime <= 1) startTime = 0
575
576 const playerCaptions = videoCaptions.map(c => ({
577 label: c.language.label,
578 language: c.language.id,
579 src: environment.apiUrl + c.captionPath
580 }))
581
582 const options: PeertubePlayerManagerOptions = {
583 common: {
584 autoplay: this.isAutoplay(),
585
586 playerElement: this.playerElement,
587 onPlayerElementChange: (element: HTMLVideoElement) => this.playerElement = element,
588
589 videoDuration: video.duration,
590 enableHotkeys: true,
591 inactivityTimeout: 2500,
592 poster: video.previewUrl,
593
594 startTime,
595 stopTime: urlOptions.stopTime,
596 controls: urlOptions.controls,
597 muted: urlOptions.muted,
598 loop: urlOptions.loop,
599 subtitle: urlOptions.subtitle,
600
601 peertubeLink: urlOptions.peertubeLink,
602
603 theaterButton: true,
604 captions: videoCaptions.length !== 0,
605
606 videoViewUrl: video.privacy.id !== VideoPrivacy.PRIVATE
607 ? this.videoService.getVideoViewUrl(video.uuid)
608 : null,
609 embedUrl: video.embedUrl,
610
611 language: this.localeId,
612
613 userWatching: user && user.videosHistoryEnabled === true ? {
614 url: this.videoService.getUserWatchingVideoUrl(video.uuid),
615 authorizationHeader: this.authService.getRequestHeaderValue()
616 } : undefined,
617
618 serverUrl: environment.apiUrl,
619
620 videoCaptions: playerCaptions
621 },
622
623 webtorrent: {
624 videoFiles: video.files
625 }
626 }
627
628 let mode: PlayerMode
629
630 if (urlOptions.playerMode) {
631 if (urlOptions.playerMode === 'p2p-media-loader') mode = 'p2p-media-loader'
632 else mode = 'webtorrent'
633 } else {
634 if (video.hasHlsPlaylist()) mode = 'p2p-media-loader'
635 else mode = 'webtorrent'
636 }
637
638 if (mode === 'p2p-media-loader') {
639 const hlsPlaylist = video.getHlsPlaylist()
640
641 const p2pMediaLoader = {
642 playlistUrl: hlsPlaylist.playlistUrl,
643 segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
644 redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
645 trackerAnnounce: video.trackerUrls,
646 videoFiles: hlsPlaylist.files
647 } as P2PMediaLoaderOptions
648
649 Object.assign(options, { p2pMediaLoader })
650 }
651
652 return { playerMode: mode, playerOptions: options }
653 }
654
689a4f69
C
655 private pausePlayer () {
656 if (!this.player) return
657
658 this.player.pause()
659 }
941c5eac
C
660
661 private initHotkeys () {
662 this.hotkeys = [
941c5eac
C
663 // These hotkeys are managed by the player
664 new Hotkey('f', e => e, undefined, this.i18n('Enter/exit fullscreen (requires player focus)')),
665 new Hotkey('space', e => e, undefined, this.i18n('Play/Pause the video (requires player focus)')),
666 new Hotkey('m', e => e, undefined, this.i18n('Mute/unmute the video (requires player focus)')),
667
668 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)')),
669
670 new Hotkey('up', e => e, undefined, this.i18n('Increase the volume (requires player focus)')),
671 new Hotkey('down', e => e, undefined, this.i18n('Decrease the volume (requires player focus)')),
672
673 new Hotkey('right', e => e, undefined, this.i18n('Seek the video forward (requires player focus)')),
674 new Hotkey('left', e => e, undefined, this.i18n('Seek the video backward (requires player focus)')),
675
676 new Hotkey('>', e => e, undefined, this.i18n('Increase playback rate (requires player focus)')),
677 new Hotkey('<', e => e, undefined, this.i18n('Decrease playback rate (requires player focus)')),
678
679 new Hotkey('.', e => e, undefined, this.i18n('Navigate in the video frame by frame (requires player focus)'))
680 ]
3d216ea0
C
681
682 if (this.isUserLoggedIn()) {
683 this.hotkeys = this.hotkeys.concat([
684 new Hotkey('shift+l', () => {
685 this.setLike()
686 return false
687 }, undefined, this.i18n('Like the video')),
688
689 new Hotkey('shift+d', () => {
690 this.setDislike()
691 return false
692 }, undefined, this.i18n('Dislike the video')),
693
694 new Hotkey('shift+s', () => {
695 this.subscribeButton.subscribed ? this.subscribeButton.unsubscribe() : this.subscribeButton.subscribe()
696 return false
697 }, undefined, this.i18n('Subscribe to the account'))
698 ])
699 }
700
701 this.hotkeysService.add(this.hotkeys)
941c5eac 702 }
dc8bc31b 703}