|
|
@ -139,9 +139,16 @@ function getGzipped(url) {
|
|
|
|
url: url,
|
|
|
|
url: url,
|
|
|
|
responseType:'stream'
|
|
|
|
responseType:'stream'
|
|
|
|
}).then(res => {
|
|
|
|
}).then(res => {
|
|
|
|
var gunzip = zlib.createGunzip()
|
|
|
|
let stream
|
|
|
|
res.data.pipe(gunzip)
|
|
|
|
if(res.headers['content-type'] === 'application/xml') {
|
|
|
|
gunzip.on('data', function(data) {
|
|
|
|
stream = res.data
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
let gunzip = zlib.createGunzip()
|
|
|
|
|
|
|
|
res.data.pipe(gunzip)
|
|
|
|
|
|
|
|
stream = gunzip
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
stream.on('data', function(data) {
|
|
|
|
buffer.push(data.toString())
|
|
|
|
buffer.push(data.toString())
|
|
|
|
}).on("end", function() {
|
|
|
|
}).on("end", function() {
|
|
|
|
resolve(buffer.join(""))
|
|
|
|
resolve(buffer.join(""))
|
|
|
|