-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.js
60 lines (49 loc) · 1.21 KB
/
index.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
'use strict';
var fs = require('fs');
var isTar = require('is-tar');
var objectAssign = require('object-assign');
var stripDirs = require('strip-dirs');
var tarStream = require('tar-stream');
var through = require('through2');
var Vinyl = require('vinyl');
module.exports = function (opts) {
opts = opts || {};
opts.strip = +opts.strip || 0;
return through.obj(function (file, enc, cb) {
var extract = tarStream.extract();
var self = this;
if (file.isNull()) {
cb(null, file);
return;
}
if (file.isStream()) {
cb(new Error('Streaming is not supported'));
return;
}
if (!file.extract || !isTar(file.contents)) {
cb(null, file);
return;
}
extract.on('entry', function (header, stream, done) {
var chunk = [];
var len = 0;
stream.on('data', function (data) {
chunk.push(data);
len += data.length;
});
stream.on('end', function () {
if (header.type !== 'directory') {
self.push(new Vinyl({
contents: Buffer.concat(chunk, len),
path: stripDirs(header.name, opts.strip),
stat: objectAssign(new fs.Stats(), header)
}));
}
done();
});
});
extract.on('error', cb);
extract.on('finish', cb);
extract.end(file.contents);
});
};