PeerTube/client/src/app/videos/video-watch/video-watch.component.ts

143 lines
4.1 KiB
TypeScript
Raw Normal View History

2016-11-04 16:23:18 +01:00
import { Component, ElementRef, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core';
2016-07-08 17:15:14 +02:00
import { ActivatedRoute } from '@angular/router';
2016-11-04 16:23:18 +01:00
import { ModalDirective } from 'ng2-bootstrap/components/modal';
2016-11-04 17:37:44 +01:00
import { MetaService } from 'ng2-meta';
2016-11-04 16:23:18 +01:00
2016-09-06 22:40:57 +02:00
import { Video, VideoService } from '../shared';
2016-05-31 22:39:36 +02:00
import { WebTorrentService } from './webtorrent.service';
2016-03-14 13:50:19 +01:00
@Component({
selector: 'my-video-watch',
templateUrl: './video-watch.component.html',
styleUrls: [ './video-watch.component.scss' ]
2016-03-14 13:50:19 +01:00
})
2016-07-08 17:15:14 +02:00
export class VideoWatchComponent implements OnInit, OnDestroy {
private static LOADTIME_TOO_LONG: number = 30000;
2016-11-04 16:23:18 +01:00
@ViewChild('magnetUriModal') magnetUriModal: ModalDirective;
downloadSpeed: number;
error: boolean = false;
2016-04-29 14:18:14 +02:00
loading: boolean = false;
2016-05-27 17:49:18 +02:00
numPeers: number;
uploadSpeed: number;
video: Video = null;
2016-03-14 13:50:19 +01:00
private errorTimer: NodeJS.Timer;
2016-07-08 17:15:14 +02:00
private sub: any;
private torrentInfosInterval: NodeJS.Timer;
2016-03-14 13:50:19 +01:00
constructor(
2016-05-27 17:49:18 +02:00
private elementRef: ElementRef,
2016-08-12 17:35:00 +02:00
private ngZone: NgZone,
2016-07-08 17:15:14 +02:00
private route: ActivatedRoute,
2016-05-31 22:39:36 +02:00
private videoService: VideoService,
2016-11-04 17:37:44 +01:00
private metaService: MetaService,
2016-05-31 22:39:36 +02:00
private webTorrentService: WebTorrentService
) {}
2016-03-14 13:50:19 +01: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 17:37:44 +01:00
this.setOpenGraphTags();
this.loadVideo();
},
error => alert(error.text)
);
});
}
ngOnDestroy() {
console.log('Removing video from webtorrent.');
clearInterval(this.torrentInfosInterval);
clearTimeout(this.errorTimer);
this.webTorrentService.remove(this.video.magnetUri);
this.sub.unsubscribe();
}
loadVideo() {
2016-11-07 22:35:37 +01:00
console.log('<iframe width="560" height="315" src="' + window.location.origin + '/videos/embed/' + this.video.id + '" frameborder="0" allowfullscreen></iframe>');
// Reset the error
this.error = false;
// We are loading the video
2016-04-29 14:18:14 +02:00
this.loading = true;
2016-03-15 13:16:54 +01:00
console.log('Adding ' + this.video.magnetUri + '.');
2016-05-31 22:39:36 +02: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
this.errorTimer = setTimeout(() => this.loadTooLong(), VideoWatchComponent.LOADTIME_TOO_LONG);
2016-05-31 22:39:36 +02:00
this.webTorrentService.add(this.video.magnetUri, (torrent) => {
// Clear the error timer
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 14:18:14 +02:00
this.loading = false;
2016-03-15 13:16:54 +01:00
console.log('Added ' + this.video.magnetUri + '.');
2016-05-27 17:25:52 +02:00
torrent.files[0].appendTo(this.elementRef.nativeElement.querySelector('.embed-responsive'), (err) => {
2016-03-14 13:50:19 +01:00
if (err) {
alert('Cannot append the file.');
console.error(err);
}
2016-04-08 20:58:07 +02:00
});
2016-08-12 17:35:00 +02:00
this.runInProgress(torrent);
2016-04-08 20:58:07 +02:00
});
2016-03-14 13:50:19 +01:00
}
2016-03-14 22:16:43 +01:00
2016-11-04 16:23:18 +01:00
showMagnetUriModal() {
this.magnetUriModal.show();
}
hideMagnetUriModal() {
this.magnetUriModal.hide();
}
private loadTooLong() {
this.error = true;
console.error('The video load seems to be abnormally long.');
}
2016-08-12 17:35:00 +02:00
2016-11-04 17:37:44 +01: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 17:35:00 +02:00
private runInProgress(torrent: any) {
// Refresh each second
this.torrentInfosInterval = setInterval(() => {
this.ngZone.run(() => {
this.downloadSpeed = torrent.downloadSpeed;
this.numPeers = torrent.numPeers;
this.uploadSpeed = torrent.uploadSpeed;
});
}, 1000);
}
2016-03-14 13:50:19 +01:00
}