node.js を使用して s3 に画像を保存する画像サーバーを作成しようとしています。画像のアップロードは正常に機能し、s3ブラウザークライアントを使用して正しくダウンロードして表示できます(具体的にはdragondiskを使用していますが、他のものでも正常にダウンロードしました)が、ノードでダウンロードして試してみるとファイルをディスクに書き込むことができません (ファイルが破損しているか、Preview が認識しないファイル形式を使用している可能性があると表示されます)。ノードと fs に amazon sdk を使用してファイルを書き込みます。オプションのエンコーディングを fs.writeFile に渡すことができることは知っていますが、すべて試してみましたが、うまくいきません。また、putObject に ContentType を、getObject に ResponseContentType を、ContentEncoding と ResponseContentEncoding (およびこれらすべてをさまざまな組み合わせで) に設定しようとしました。同じ結果です。ここ'
var AWS = require('aws-sdk')
, gm = require('../lib/gm')
, uuid = require('node-uui')
, fs = require('fs');
AWS.config.loadFromPath('./amazonConfig.json');
var s3 = new AWS.S3();
var bucket = 'myBucketName'; // There's other logic here to set the bucket name.
exports.upload = function(req, res) {
var id = uuid.v4();
gm.format("/path/to/some/image.jpg", function(format){
var key = req.params.dir + "/" + id + "/default." + format;
fs.readFile('/path/to/some/image.jpg', function(err, data){
if (err) { console.warn(err); }
else {
s3.client.putObject({
Bucket: bucket,
Key: key,
Body: data,
ContentType: 'image/jpeg'
// I've also tried adding ContentEncoding (in various formats) here.
}).done(function(response){
res.status(200).end(JSON.stringify({ok:1, id: id}));
}).fail(function(response){
res.status(response.httpResponse.statusCode).end(JSON.stringify(({err: response})));
});
}
});
});
};
exports.get = function(req, res) {
var key = req.params.dir + "/" + req.params.id + "/default.JPEG";
s3.client.getObject({
Bucket: bucket,
Key: key,
ResponseContentType: 'image/jpeg'
// Tried ResponseContentEncoding here in base64, binary, and utf8
}).done(function(response){
res.status(200).end(JSON.stringify({ok:1, response: response}));
var filename = '/path/to/new/image/default.JPEG';
fs.writeFile(filename, response.data.Body, function(err){
if (err) console.warn(err);
// This DOES write the file, just not as an image that can be opened.
// I've tried pretty much every encoding as the optional third parameter
// and I've matched the encodings to the ResponseContentEncoding and
// ContentEncoding above (in case it needs to be the same)
});
}).fail(function(response){
res.status(response.httpResponse.statusCode).end(JSON.stringify({err: response}));
});
};
ちなみに、私はルーティングに Express を使用しているので、req.params はそこから来ています。