blob: 630a5c46983167811426081a145a56d3cc41ddba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import { Injectable } from '@angular/core';
import { Subject } from 'rxjs/Subject';
declare const WebTorrent;
@Injectable()
export class WebTorrentService {
errors = new Subject<Error>();
warnings = new Subject<Error>();
// TODO: use WebTorrent @type
// private client: WebTorrent.Client;
private client: any;
constructor() {
this.client = new WebTorrent({ dht: false });
this.client.on('error', (err) => this.errors.next(err));
this.client.on('warning', (err) => this.warnings.next(err));
}
add(magnetUri: string, callback: Function) {
return this.client.add(magnetUri, callback);
}
remove(magnetUri: string) {
return this.client.remove(magnetUri);
}
has(magnetUri: string) {
return this.client.get(magnetUri) !== null;
}
}
|