forked from bpampuch/pdfmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathURLResolver.js
69 lines (59 loc) · 1.53 KB
/
URLResolver.js
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import http from 'http';
import https from 'https';
const fetchUrl = url => {
return new Promise((resolve, reject) => {
const parsedUrl = new URL(url);
const h = (parsedUrl.protocol === 'https:') ? https : http;
h.get(url, res => {
if (res.statusCode >= 300 && res.statusCode < 400 && res.headers.location) { // redirect url
fetchUrl(res.headers.location).then(buffer => {
resolve(buffer);
}, result => {
reject(result);
});
return;
}
const ok = res.statusCode >= 200 && res.statusCode < 300;
if (!ok) {
reject(new TypeError(`Failed to fetch (status code: ${res.statusCode}, url: "${url}")`));
}
const chunks = [];
res.on('end', () => resolve(Buffer.concat(chunks)));
res.on('data', d => chunks.push(d));
}).on('error', reject);
});
};
class URLResolver {
constructor(fs) {
this.fs = fs;
this.resolving = {};
}
resolve(url) {
if (!this.resolving[url]) {
this.resolving[url] = new Promise((resolve, reject) => {
if (url.toLowerCase().indexOf('https://') === 0 || url.toLowerCase().indexOf('http://') === 0) {
fetchUrl(url).then(buffer => {
this.fs.writeFileSync(url, buffer);
resolve();
}, result => {
reject(result);
});
} else {
// cannot be resolved
resolve();
}
});
}
return this.resolving[url];
}
resolved() {
return new Promise((resolve, reject) => {
Promise.all(Object.values(this.resolving)).then(() => {
resolve();
}, result => {
reject(result);
});
});
}
}
export default URLResolver;