1
0
Fork 0
peertube/client/src/app/videos/video-watch/video-watch.component.ts

183 lines
5.2 KiB
TypeScript
Raw Normal View History

2016-11-04 15:23:18 +00:00
import { Component, ElementRef, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core';
2016-07-08 15:15:14 +00:00
import { ActivatedRoute } from '@angular/router';
2016-11-08 19:49:43 +00:00
import * as videojs from 'video.js';
import { MetaService } from 'ng2-meta';
import { NotificationsService } from 'angular2-notifications';
2016-11-04 15:23:18 +00:00
2017-01-20 18:22:15 +00:00
import { AuthService } from '../../core';
import { VideoMagnetComponent } from './video-magnet.component';
import { VideoShareComponent } from './video-share.component';
2017-01-20 18:22:15 +00:00
import { VideoReportComponent } from './video-report.component';
2016-09-06 20:40:57 +00:00
import { Video, VideoService } from '../shared';
2016-05-31 20:39:36 +00:00
import { WebTorrentService } from './webtorrent.service';
2016-03-14 12:50:19 +00:00
@Component({
selector: 'my-video-watch',
templateUrl: './video-watch.component.html',
styleUrls: [ './video-watch.component.scss' ]
2016-03-14 12:50:19 +00:00
})
2016-07-08 15:15:14 +00:00
export class VideoWatchComponent implements OnInit, OnDestroy {
2017-01-27 10:30:36 +00:00
private static LOADTIME_TOO_LONG: number = 20000;
@ViewChild('videoMagnetModal') videoMagnetModal: VideoMagnetComponent;
@ViewChild('videoShareModal') videoShareModal: VideoShareComponent;
2017-01-20 18:22:15 +00:00
@ViewChild('videoReportModal') videoReportModal: VideoReportComponent;
2016-11-04 15:23:18 +00:00
downloadSpeed: number;
error: boolean = false;
2016-04-29 12:18:14 +00:00
loading: boolean = false;
2016-05-27 15:49:18 +00:00
numPeers: number;
2016-11-08 19:49:43 +00:00
player: VideoJSPlayer;
2016-11-08 20:17:17 +00:00
playerElement: Element;
2016-05-27 15:49:18 +00:00
uploadSpeed: number;
video: Video = null;
videoNotFound = false;
2016-03-14 12:50:19 +00:00
2017-01-27 10:30:36 +00:00
private errorTimer: number;
2016-07-08 15:15:14 +00:00
private sub: any;
2017-01-27 10:30:36 +00:00
private torrentInfosInterval: number;
2016-03-14 12:50:19 +00:00
constructor(
2016-05-27 15:49:18 +00:00
private elementRef: ElementRef,
2016-08-12 15:35:00 +00:00
private ngZone: NgZone,
2016-07-08 15:15:14 +00:00
private route: ActivatedRoute,
2016-05-31 20:39:36 +00:00
private videoService: VideoService,
2016-11-04 16:37:44 +00:00
private metaService: MetaService,
2017-01-20 18:22:15 +00:00
private webTorrentService: WebTorrentService,
private authService: AuthService,
private notificationsService: NotificationsService
2016-05-31 20:39:36 +00:00
) {}
2016-03-14 12:50:19 +00:00
ngOnInit() {
this.sub = this.route.params.subscribe(routeParams => {
let id = routeParams['id'];
this.videoService.getVideo(id).subscribe(
video => {
this.video = video;
2016-11-04 16:37:44 +00:00
this.setOpenGraphTags();
this.loadVideo();
},
error => {
this.videoNotFound = true;
}
);
});
2016-11-08 19:49:43 +00:00
2016-11-08 20:17:17 +00:00
this.playerElement = this.elementRef.nativeElement.querySelector('#video-container');
2016-11-08 19:49:43 +00:00
const videojsOptions = {
controls: true,
autoplay: false
};
const self = this;
2016-11-08 20:17:17 +00:00
videojs(this.playerElement, videojsOptions, function () {
2016-11-08 19:49:43 +00:00
self.player = this;
});
}
ngOnDestroy() {
2016-11-08 20:17:17 +00:00
// Remove WebTorrent stuff
console.log('Removing video from webtorrent.');
2017-01-27 10:30:36 +00:00
window.clearInterval(this.torrentInfosInterval);
window.clearTimeout(this.errorTimer);
if (this.video !== null) {
this.webTorrentService.remove(this.video.magnetUri);
}
2016-11-08 20:17:17 +00:00
// Remove player
videojs(this.playerElement).dispose();
// Unsubscribe route subscription
this.sub.unsubscribe();
}
loadVideo() {
// Reset the error
this.error = false;
// We are loading the video
2016-04-29 12:18:14 +00:00
this.loading = true;
2016-03-15 12:16:54 +00:00
console.log('Adding ' + this.video.magnetUri + '.');
2016-05-31 20:39:36 +00:00
// The callback might never return if there are network issues
// So we create a timer to inform the user the load is abnormally long
2017-01-27 10:30:36 +00:00
this.errorTimer = window.setTimeout(() => this.loadTooLong(), VideoWatchComponent.LOADTIME_TOO_LONG);
2016-05-31 20:39:36 +00:00
this.webTorrentService.add(this.video.magnetUri, (torrent) => {
// Clear the error timer
2017-01-27 10:30:36 +00:00
window.clearTimeout(this.errorTimer);
// Maybe the error was fired by the timer, so reset it
this.error = false;
// We are not loading the video anymore
2016-04-29 12:18:14 +00:00
this.loading = false;
2016-03-15 12:16:54 +00:00
console.log('Added ' + this.video.magnetUri + '.');
2016-11-08 20:17:17 +00:00
torrent.files[0].renderTo(this.playerElement, { autoplay: true }, (err) => {
2016-03-14 12:50:19 +00:00
if (err) {
this.notificationsService.error('Error', 'Cannot append the file in the video element.');
2016-03-14 12:50:19 +00:00
console.error(err);
}
2016-04-08 18:58:07 +00:00
});
2016-08-12 15:35:00 +00:00
this.runInProgress(torrent);
2016-04-08 18:58:07 +00:00
});
2016-03-14 12:50:19 +00:00
}
2016-03-14 21:16:43 +00:00
2017-01-20 18:22:15 +00:00
showReportModal(event: Event) {
event.preventDefault();
this.videoReportModal.show();
}
2016-11-08 20:11:57 +00:00
showShareModal() {
this.videoShareModal.show();
2016-11-08 20:11:57 +00:00
}
showMagnetUriModal() {
this.videoMagnetModal.show();
2016-11-08 20:11:57 +00:00
}
2017-01-20 18:22:15 +00:00
isUserLoggedIn() {
return this.authService.isLoggedIn();
}
private loadTooLong() {
this.error = true;
console.error('The video load seems to be abnormally long.');
}
2016-08-12 15:35:00 +00:00
2016-11-04 16:37:44 +00:00
private setOpenGraphTags() {
this.metaService.setTag('og:type', 'video');
this.metaService.setTag('og:title', this.video.name);
this.metaService.setTag('name', this.video.name);
this.metaService.setTag('og:description', this.video.description);
this.metaService.setTag('description', this.video.description);
this.metaService.setTag('og:image', this.video.thumbnailPath);
this.metaService.setTag('og:duration', this.video.duration);
this.metaService.setTag('og:site_name', 'PeerTube');
this.metaService.setTag('og:url', window.location.href);
this.metaService.setTag('url', window.location.href);
}
2016-08-12 15:35:00 +00:00
private runInProgress(torrent: any) {
// Refresh each second
2017-01-27 10:30:36 +00:00
this.torrentInfosInterval = window.setInterval(() => {
2016-08-12 15:35:00 +00:00
this.ngZone.run(() => {
this.downloadSpeed = torrent.downloadSpeed;
this.numPeers = torrent.numPeers;
this.uploadSpeed = torrent.uploadSpeed;
});
}, 1000);
}
2016-03-14 12:50:19 +00:00
}