forked from microjs/microjs.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfetcher.js
40 lines (33 loc) · 972 Bytes
/
fetcher.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
const zip = require('zip')
, fetchHttp = require('./fetch-http')
function unzip (zipEntry, buffer) {
var reader = zip.Reader(buffer)
, data = null
// iterate through zipfile entries looking for the right name
reader.forEach(function(entry) {
if (zipEntry === entry._header.file_name) {
data = entry._stream.toString();
}
})
return data
}
function fetch (sourceUrl, zipEntry, callback) {
fetchHttp(
sourceUrl
, { headers: { 'User-Agent': 'microjs.com-build-script' } }
, function (err, content) {
if (err)
return callback(err)
if (zipEntry) {
try {
content = unzip(zipEntry, content)
} catch (e) {
return callback('unzip error' + e)
}
if (!content)
return callback('could not find entry ' + zipEntry + ' inside zip file')
}
callback(null, content.toString())
})
}
module.exports = fetch