Загрузить изображение в корзину S3 с помощью Api Gateway, лямбда-функции - PullRequest
2 голосов
/ 17 апреля 2019

Я пытаюсь загрузить изображение (base64) из почтальона, я вижу, когда я нажимаю на Serverless API, что-то было добавлено в корзину S3, но не изображение, я использую функцию nodejs Lambda, я пытался такмного решений, но это не сработало.Пожалуйста, подскажите, где я не прав:

const AWS = require('aws-sdk');
const s3 = new AWS.S3();
const moment = require('moment');
const fileType = require('file-type');
const sha1 = require('sha1');
const multipart = require('parse-multipart');

exports.handler = function (event, context, callback) {

    let request = event.body;

    // get the request
    let base64String = request.base64String;

    // pass the base64 string into a buffer
    let buffer = new Buffer(base64String, 'base64');

    let fileMime = fileType(buffer);

    // check if the base64 encoded string is a file
    if (fileMime === null) {
        return context.fail('The string supplied is not a file type');
    }

    let file = getFile(fileMime, buffer);
    // let file = getFile(fileMime, parts);
    let params = file.params;

    s3.upload(params, function (err, data) {
    // putObject(params, function (err, data) {
        if (err) {
            console.log(err);
            callback(err);
        }

        // if the file object is uploaded successfully to 
        // s3 then you can get your full url
        console.log('File URL', file.full_path + JSON.stringify(data));
        callback(null, data);

    });
}

let getFile = function (fileMime, buffer) {

    // get the file extension
    let fileExt = fileMime.ext;
    let hash = sha1(new Buffer(new Date().toString()));
    let now = moment().format('YYYY-MM-DD');

    let filePath = hash + '/';
    let fileName = now + '.' + fileExt;
    let fileFullName = filePath + fileName;
    let fileFullPath = 'https://console.aws.amazon.com/s3/buckets/bucket-name/images/' + fileFullName;

    console.log('fileFullPath' + fileFullPath);
    let params = {
        Bucket: 'bucket-name',
        Key: fileFullPath,
        // 'this is simply the filename and the extension, e.g fileFullName + fileExt',
        Body: buffer
    };

    let uploadFile = {
        size: buffer.toString('ascii').length,
        type: fileMime.mime,
        name: fileName,
        full_path: fileFullPath
    }

    return {
        'params': params,
        'uploadFile': uploadFile
    }
}

Response in S3 bucket

when click on any of the response, the complete out is coming as an image

Postman base64 image string

Пожалуйста, дайте мне знать, где я пропускаю часть кода.Это будет оценено.

1 Ответ

7 голосов
/ 21 апреля 2019

При загрузке объектов на S3, которые должны быть открыты в веб-браузере, вам необходимо установить правильный тип контента.Когда S3 обслуживает ваш объект, заданный вами тип контента будет отправлен в виде заголовка HTTP.

Веб-браузеры используют MIME-типы для определения способа обработки URL-адресов, а не расширений файлов.

В вашем случае тип содержимого отсутствует в параметрах, которые вы передаете s3.upload.Кроме того, неверный ключ.

Это должно быть:

const params = {
  Bucket: 'bucket-name',
  Key: fileFullName // must be a path within your bucket and not an url like you have in fileFullPath,
  Body: buffer,
  ContentType: fileMime.mime // Sets the content type header, without this your browser cannot infer the type (browsers use mime types, not file extensions)
};
...