]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/video-watch.component.ts
Fix watch page video change
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.component.ts
1 import { Component, ElementRef, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core'
2 import { ActivatedRoute, Router } from '@angular/router'
3 import { RedirectService } from '@app/core/routing/redirect.service'
4 import { peertubeLocalStorage } from '@app/shared/misc/peertube-local-storage'
5 import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component'
6 import { MetaService } from '@ngx-meta/core'
7 import { NotificationsService } from 'angular2-notifications'
8 import { Subscription } from 'rxjs/Subscription'
9 import * as videojs from 'video.js'
10 import 'videojs-hotkeys'
11 import * as WebTorrent from 'webtorrent'
12 import { UserVideoRateType, VideoRateType } from '../../../../../shared'
13 import '../../../assets/player/peertube-videojs-plugin'
14 import { AuthService, ConfirmService } from '../../core'
15 import { VideoBlacklistService } from '../../shared'
16 import { Account } from '../../shared/account/account.model'
17 import { VideoDetails } from '../../shared/video/video-details.model'
18 import { Video } from '../../shared/video/video.model'
19 import { VideoService } from '../../shared/video/video.service'
20 import { MarkdownService } from '../shared'
21 import { VideoDownloadComponent } from './modal/video-download.component'
22 import { VideoReportComponent } from './modal/video-report.component'
23 import { VideoShareComponent } from './modal/video-share.component'
24 import { getVideojsOptions } from '../../../assets/player/peertube-player'
25
26 @Component({
27 selector: 'my-video-watch',
28 templateUrl: './video-watch.component.html',
29 styleUrls: [ './video-watch.component.scss' ]
30 })
31 export class VideoWatchComponent implements OnInit, OnDestroy {
32 private static LOCAL_STORAGE_PRIVACY_CONCERN_KEY = 'video-watch-privacy-concern'
33
34 @ViewChild('videoDownloadModal') videoDownloadModal: VideoDownloadComponent
35 @ViewChild('videoShareModal') videoShareModal: VideoShareComponent
36 @ViewChild('videoReportModal') videoReportModal: VideoReportComponent
37 @ViewChild('videoSupportModal') videoSupportModal: VideoSupportComponent
38
39 otherVideosDisplayed: Video[] = []
40
41 error = false
42 player: videojs.Player
43 playerElement: HTMLVideoElement
44 userRating: UserVideoRateType = null
45 video: VideoDetails = null
46 videoPlayerLoaded = false
47 videoNotFound = false
48 descriptionLoading = false
49
50 completeDescriptionShown = false
51 completeVideoDescription: string
52 shortVideoDescription: string
53 videoHTMLDescription = ''
54 likesBarTooltipText = ''
55 hasAlreadyAcceptedPrivacyConcern = false
56
57 private otherVideos: Video[] = []
58 private paramsSub: Subscription
59 private videojsInstance: videojs.Player
60
61 constructor (
62 private elementRef: ElementRef,
63 private route: ActivatedRoute,
64 private router: Router,
65 private videoService: VideoService,
66 private videoBlacklistService: VideoBlacklistService,
67 private confirmService: ConfirmService,
68 private metaService: MetaService,
69 private authService: AuthService,
70 private notificationsService: NotificationsService,
71 private markdownService: MarkdownService,
72 private zone: NgZone,
73 private redirectService: RedirectService
74 ) {}
75
76 get user () {
77 return this.authService.getUser()
78 }
79
80 ngOnInit () {
81 if (
82 WebTorrent.WEBRTC_SUPPORT === false ||
83 peertubeLocalStorage.getItem(VideoWatchComponent.LOCAL_STORAGE_PRIVACY_CONCERN_KEY) === 'true'
84 ) {
85 this.hasAlreadyAcceptedPrivacyConcern = true
86 }
87
88 this.videoService.getVideos({ currentPage: 1, itemsPerPage: 5 }, '-createdAt')
89 .subscribe(
90 data => {
91 this.otherVideos = data.videos
92 this.updateOtherVideosDisplayed()
93 },
94
95 err => console.error(err)
96 )
97
98 this.paramsSub = this.route.params.subscribe(routeParams => {
99 if (this.videoPlayerLoaded) {
100 this.player.pause()
101 }
102
103 const uuid = routeParams['uuid']
104 // Video did not changed
105 if (this.video && this.video.uuid === uuid) return
106
107 this.videoService.getVideo(uuid).subscribe(
108 video => this.onVideoFetched(video),
109
110 error => {
111 this.videoNotFound = true
112 console.error(error)
113 }
114 )
115 })
116 }
117
118 ngOnDestroy () {
119 // Remove player if it exists
120 if (this.videoPlayerLoaded === true) {
121 videojs(this.playerElement).dispose()
122 }
123
124 // Unsubscribe subscriptions
125 this.paramsSub.unsubscribe()
126 }
127
128 setLike () {
129 if (this.isUserLoggedIn() === false) return
130 if (this.userRating === 'like') {
131 // Already liked this video
132 this.setRating('none')
133 } else {
134 this.setRating('like')
135 }
136 }
137
138 setDislike () {
139 if (this.isUserLoggedIn() === false) return
140 if (this.userRating === 'dislike') {
141 // Already disliked this video
142 this.setRating('none')
143 } else {
144 this.setRating('dislike')
145 }
146 }
147
148 async blacklistVideo (event: Event) {
149 event.preventDefault()
150
151 const res = await this.confirmService.confirm('Do you really want to blacklist this video?', 'Blacklist')
152 if (res === false) return
153
154 this.videoBlacklistService.blacklistVideo(this.video.id)
155 .subscribe(
156 status => {
157 this.notificationsService.success('Success', `Video ${this.video.name} had been blacklisted.`)
158 this.redirectService.redirectToHomepage()
159 },
160
161 error => this.notificationsService.error('Error', error.message)
162 )
163 }
164
165 showMoreDescription () {
166 if (this.completeVideoDescription === undefined) {
167 return this.loadCompleteDescription()
168 }
169
170 this.updateVideoDescription(this.completeVideoDescription)
171 this.completeDescriptionShown = true
172 }
173
174 showLessDescription () {
175 this.updateVideoDescription(this.shortVideoDescription)
176 this.completeDescriptionShown = false
177 }
178
179 loadCompleteDescription () {
180 this.descriptionLoading = true
181
182 this.videoService.loadCompleteDescription(this.video.descriptionPath)
183 .subscribe(
184 description => {
185 this.completeDescriptionShown = true
186 this.descriptionLoading = false
187
188 this.shortVideoDescription = this.video.description
189 this.completeVideoDescription = description
190
191 this.updateVideoDescription(this.completeVideoDescription)
192 },
193
194 error => {
195 this.descriptionLoading = false
196 this.notificationsService.error('Error', error.message)
197 }
198 )
199 }
200
201 showReportModal (event: Event) {
202 event.preventDefault()
203 this.videoReportModal.show()
204 }
205
206 showSupportModal () {
207 this.videoSupportModal.show()
208 }
209
210 showShareModal () {
211 this.videoShareModal.show()
212 }
213
214 showDownloadModal (event: Event) {
215 event.preventDefault()
216 this.videoDownloadModal.show()
217 }
218
219 isUserLoggedIn () {
220 return this.authService.isLoggedIn()
221 }
222
223 isVideoUpdatable () {
224 return this.video.isUpdatableBy(this.authService.getUser())
225 }
226
227 isVideoBlacklistable () {
228 return this.video.isBlackistableBy(this.user)
229 }
230
231 getAvatarPath () {
232 return Account.GET_ACCOUNT_AVATAR_URL(this.video.account)
233 }
234
235 getVideoPoster () {
236 if (!this.video) return ''
237
238 return this.video.previewUrl
239 }
240
241 getVideoTags () {
242 if (!this.video || Array.isArray(this.video.tags) === false) return []
243
244 return this.video.tags.join(', ')
245 }
246
247 isVideoRemovable () {
248 return this.video.isRemovableBy(this.authService.getUser())
249 }
250
251 async removeVideo (event: Event) {
252 event.preventDefault()
253
254 const res = await this.confirmService.confirm('Do you really want to delete this video?', 'Delete')
255 if (res === false) return
256
257 this.videoService.removeVideo(this.video.id)
258 .subscribe(
259 status => {
260 this.notificationsService.success('Success', `Video ${this.video.name} deleted.`)
261
262 // Go back to the video-list.
263 this.redirectService.redirectToHomepage()
264 },
265
266 error => this.notificationsService.error('Error', error.message)
267 )
268 }
269
270 acceptedPrivacyConcern () {
271 peertubeLocalStorage.setItem(VideoWatchComponent.LOCAL_STORAGE_PRIVACY_CONCERN_KEY, 'true')
272 this.hasAlreadyAcceptedPrivacyConcern = true
273 }
274
275 private updateVideoDescription (description: string) {
276 this.video.description = description
277 this.setVideoDescriptionHTML()
278 }
279
280 private setVideoDescriptionHTML () {
281 if (!this.video.description) {
282 this.videoHTMLDescription = ''
283 return
284 }
285
286 this.videoHTMLDescription = this.markdownService.textMarkdownToHTML(this.video.description)
287 }
288
289 private setVideoLikesBarTooltipText () {
290 this.likesBarTooltipText = `${this.video.likes} likes / ${this.video.dislikes} dislikes`
291 }
292
293 private handleError (err: any) {
294 const errorMessage: string = typeof err === 'string' ? err : err.message
295 if (!errorMessage) return
296
297 let message = ''
298
299 if (errorMessage.indexOf('http error') !== -1) {
300 message = 'Cannot fetch video from server, maybe down.'
301 } else {
302 message = errorMessage
303 }
304
305 this.notificationsService.error('Error', message)
306 }
307
308 private checkUserRating () {
309 // Unlogged users do not have ratings
310 if (this.isUserLoggedIn() === false) return
311
312 this.videoService.getUserVideoRating(this.video.id)
313 .subscribe(
314 ratingObject => {
315 if (ratingObject) {
316 this.userRating = ratingObject.rating
317 }
318 },
319
320 err => this.notificationsService.error('Error', err.message)
321 )
322 }
323
324 private async onVideoFetched (video: VideoDetails) {
325 this.video = video
326
327 this.updateOtherVideosDisplayed()
328
329 if (this.video.isVideoNSFWForUser(this.user)) {
330 const res = await this.confirmService.confirm(
331 'This video contains mature or explicit content. Are you sure you want to watch it?',
332 'Mature or explicit content'
333 )
334 if (res === false) return this.redirectService.redirectToHomepage()
335 }
336
337 // Player was already loaded, remove old videojs
338 if (this.videojsInstance) {
339 this.videojsInstance.dispose()
340 this.videojsInstance = undefined
341 }
342
343 // Build video element, because videojs remove it on dispose
344 const playerElementWrapper = this.elementRef.nativeElement.querySelector('#video-element-wrapper')
345 this.playerElement = document.createElement('video')
346 this.playerElement.className = 'video-js vjs-peertube-skin'
347 playerElementWrapper.appendChild(this.playerElement)
348
349 const videojsOptions = getVideojsOptions({
350 autoplay: this.isAutoplay(),
351 inactivityTimeout: 4000,
352 videoFiles: this.video.files,
353 playerElement: this.playerElement,
354 videoViewUrl: this.videoService.getVideoViewUrl(this.video.uuid),
355 videoDuration: this.video.duration,
356 enableHotkeys: true,
357 peertubeLink: false,
358 poster: this.video.previewUrl
359 })
360
361 this.videoPlayerLoaded = true
362
363 const self = this
364 this.zone.runOutsideAngular(() => {
365 self.videojsInstance = videojs(this.playerElement, videojsOptions, function () {
366 self.player = this
367 this.on('customError', (event, data) => self.handleError(data.err))
368 })
369 })
370
371 this.setVideoDescriptionHTML()
372 this.setVideoLikesBarTooltipText()
373
374 this.setOpenGraphTags()
375 this.checkUserRating()
376 }
377
378 private setRating (nextRating) {
379 let method
380 switch (nextRating) {
381 case 'like':
382 method = this.videoService.setVideoLike
383 break
384 case 'dislike':
385 method = this.videoService.setVideoDislike
386 break
387 case 'none':
388 method = this.videoService.unsetVideoLike
389 break
390 }
391
392 method.call(this.videoService, this.video.id)
393 .subscribe(
394 () => {
395 // Update the video like attribute
396 this.updateVideoRating(this.userRating, nextRating)
397 this.userRating = nextRating
398 },
399 err => this.notificationsService.error('Error', err.message)
400 )
401 }
402
403 private updateVideoRating (oldRating: UserVideoRateType, newRating: VideoRateType) {
404 let likesToIncrement = 0
405 let dislikesToIncrement = 0
406
407 if (oldRating) {
408 if (oldRating === 'like') likesToIncrement--
409 if (oldRating === 'dislike') dislikesToIncrement--
410 }
411
412 if (newRating === 'like') likesToIncrement++
413 if (newRating === 'dislike') dislikesToIncrement++
414
415 this.video.likes += likesToIncrement
416 this.video.dislikes += dislikesToIncrement
417
418 this.video.buildLikeAndDislikePercents()
419 this.setVideoLikesBarTooltipText()
420 }
421
422 private updateOtherVideosDisplayed () {
423 if (this.video && this.otherVideos && this.otherVideos.length > 0) {
424 this.otherVideosDisplayed = this.otherVideos.filter(v => v.uuid !== this.video.uuid)
425 }
426 }
427
428 private setOpenGraphTags () {
429 this.metaService.setTitle(this.video.name)
430
431 this.metaService.setTag('og:type', 'video')
432
433 this.metaService.setTag('og:title', this.video.name)
434 this.metaService.setTag('name', this.video.name)
435
436 this.metaService.setTag('og:description', this.video.description)
437 this.metaService.setTag('description', this.video.description)
438
439 this.metaService.setTag('og:image', this.video.previewPath)
440
441 this.metaService.setTag('og:duration', this.video.duration.toString())
442
443 this.metaService.setTag('og:site_name', 'PeerTube')
444
445 this.metaService.setTag('og:url', window.location.href)
446 this.metaService.setTag('url', window.location.href)
447 }
448
449 private isAutoplay () {
450 // True by default
451 if (!this.user) return true
452
453 // Be sure the autoPlay is set to false
454 return this.user.autoPlayVideo !== false
455 }
456 }