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