mirror of https://github.com/minio/minio.git
32 lines
1.0 KiB
JavaScript
32 lines
1.0 KiB
JavaScript
|
|
||
|
var AWS = require('aws-sdk');
|
||
|
|
||
|
var s3 = new AWS.S3({
|
||
|
accessKeyId: 'YOUR-ACCESSKEYID' ,
|
||
|
secretAccessKey: 'YOUR-SECRETACCESSKEY' ,
|
||
|
endpoint: 'http://127.0.0.1:9000' ,
|
||
|
s3ForcePathStyle: true,
|
||
|
signatureVersion: 'v4'
|
||
|
});
|
||
|
|
||
|
// List all contents stored in the zip archive
|
||
|
s3.listObjectsV2({Bucket : 'your-bucket', Prefix: 'path/to/file.zip/'}).
|
||
|
on('build', function(req) { req.httpRequest.headers['X-Minio-Extract'] = 'true'; }).
|
||
|
send(function(err, data) {
|
||
|
if (err) {
|
||
|
console.log("Error", err);
|
||
|
} else {
|
||
|
console.log("Success", data);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
|
||
|
// Download a file in the archive and store it in /tmp/data.csv
|
||
|
var file = require('fs').createWriteStream('/tmp/data.csv');
|
||
|
s3.getObject({Bucket: 'your-bucket', Key: 'path/to/file.zip/data.csv'}).
|
||
|
on('build', function(req) { req.httpRequest.headers['X-Minio-Extract'] = 'true'; }).
|
||
|
on('httpData', function(chunk) { file.write(chunk); }).
|
||
|
on('httpDone', function() { file.end(); }).
|
||
|
send();
|
||
|
|