Sails.js File upload with Skipper to AWS S3

2.7k views Asked by At

I have a form where you can upload a file. I upload the file directly with skipper and it works perfectly.

req.file('file').upload({
    adapter: require('skipper-s3'),
    key: 'key',
    secret: 'secret',
    bucket: 'bucketname'
}, function (err, uploadedFiles) {
    if (err){
        // ko
    }
    else{
        // ok
    }
});

But I want to resize first and then upload the file, so:

sharp(original).resize(800).quality(90).toBuffer(function(err, outputBuffer) {
    if (err) {
        // ko
    }
    // ok
    outputBuffer;
 });

So, my question is: How can upload the outputBuffer instead of req.file('file') ?

2

There are 2 answers

0
AudioBubble On BEST ANSWER

Instead of using skipper-s3 you can use the aws-sdk module. Upload the image to disk (original), process it, upload it, and delete the original.

var AWS = require('aws-sdk'),
    fs = require('fs');

sharp(original).resize(800).quality(90).toBuffer(function(err, outputBuffer) {
    if (err) {
       ...
    } else {
        new AWS.S3({
            accessKeyId: 'your access key', 
            secretAccessKey: 'your secret',
            params : { 
                Bucket : 'your bucket',
                Key: 'desired filename'
            }
        });

        s3client.upload({ACL:'public-read', Body: outputBuffer}, function(err, result) {
            if(err) {
                //handle error
            } else {
               // continue, handle returned data
               fs.unlinkSync(original); // delete original
            }
        });
     }
 });

Alternatively, some libraries (like gm) can take a remote URL. You could use skipper-s3 to upload, then carry out the process above (where original is the s3 URL) and it would work, too—really not performant, at all, though.

0
emmaJNR On

Using Skipper-s3 and sails version_1 and sails-hook-uploads

npm i sails-hook-uploads

fn: async function (inputs) {
    var coverImage = await sails
      .uploadOne(inputs.coverImage, {
        // maxBytes: 3000000
        adapter: require('skipper-s3'),
        key: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
        secret: 'xxxxxxxxxxxxxxxxxxxx',
        bucket: 'xxxxxxx',
        saveAs:'your custom file name ?',
        dirname: '/cover_images ?',
      })
      // Note: E_EXCEEDS_UPLOAD_LIMIT is the error code for exceeding
      // `maxBytes` for both skipper-disk and skipper-s3.
      .intercept('E_EXCEEDS_UPLOAD_LIMIT', 'tooBig')
      .intercept(
        (err) =>
          new Error('The coverImage upload failed: ' + util.inspect(err)),
      )

    if (!coverImage) {
      throw 'noFileAttached'
    }
}