lundi 12 octobre 2015

Node.js script works once, then fails subsequently

I need a Node.js script that does the following:

1 - Triggers when an image is added to a specified S3 bucket.
2 - Creates a thumbnail of that image (360x203 pixels).
3 - Saves a copy of that thumbnail inside of a separate S3 folder.
4 - Uploads the thumbnail to a specified FTP server, SIX (6) times using a "FILENAME-X"naming convention.

The code works just as expected at first. The sample event pulls the image. Creates a thumnail. Saves it to the other S3 bucket. Then uploads it to the FTP server.

The problem: It works for the test file HappyFace.jpg once, but then each subsequent test fails. Also, I tried doing it with a different file, but was unsuccessful.

Also: If I could get some help writing a loop to name the different files that get uploaded, it would be very much appreciated. I usually code in PHP, so it'd probably take me longer than I hope to write.

Note: I removed my FTP credentials for privacy.

// dependencies
var async = require('async');
var AWS = require('aws-sdk');
var util = require('util');
var Client = require('ftp');
var fs = require('fs');
var gm = require('gm')
            .subClass({ imageMagick: true }); // Enable ImageMagick integration.

// get reference to FTP client
var c = new Client();
// get reference to S3 client 
var s3 = new AWS.S3();

exports.handler = function(event, context) {
    // Read options from the event.
    console.log("Reading options from event:\n", util.inspect(event, {depth: 5}));
    // Get source bucket
    var srcBucket = event.Records[0].s3.bucket.name;
    // Get source object key
    // Object key may have spaces or unicode non-ASCII characters.
    var srcKey    =
    decodeURIComponent(event.Records[0].s3.object.key.replace(/\+/g, " "));  
    var url = 'http://' + srcBucket + ".s3.amazonaws.com/" + srcKey;
    // Set destination bucket
    var dstBucket = srcBucket + "-thumbs";
    // Set destination object key
    var dstKey    = "resized-" + srcKey;

    // Infer the image type.
    var typeMatch = srcKey.match(/\.([^.]*)$/);
    if (!typeMatch) {
        console.error('unable to infer image type for key ' + srcKey);
        return;
    }
    var imageType = typeMatch[1];
    if (imageType != "jpg" && imageType != "png") {
        console.log('skipping non-image ' + srcKey);
        return;
    }

    // Download the image from S3, transform, and upload to a different S3 bucket.
    async.waterfall([
        function download(next) {
            // Download the image from S3 into a buffer.
            s3.getObject({
                    Bucket: srcBucket,
                    Key: srcKey
                },
                next);
            },
        function transform(response, next) {
            gm(response.Body).size(function(err, size) {

                // Transform the image buffer in memory.
                this.toBuffer(imageType, function(err, buffer) {
                        if (err) {
                            next(err);
                        } else {
                            next(null, response.ContentType, buffer);
                        }
                    });
            });
        },
        function upload(contentType, data, next) {
            // Upload test file to FTP server
            c.append(data, 'testing.jpg', function(err) {
                console.log("CONNECTION SUCCESS!");
                if (err) throw err;
                c.end();
            });
            // Connect to ftp
            c.connect({
                host: "",
                port: 21, // defaults to 21
                user: "", // defaults to "anonymous"
                password: "" // defaults to "@anonymous"
            });
            // Stream the thumb image to a different S3 bucket.
            s3.putObject({
                    Bucket: dstBucket,
                    Key: dstKey,
                    Body: data,
                    ContentType: contentType
                },
                next);
        }
        ], function (err) {
            if (err) {
                console.error(
                    'Unable to resize ' + srcBucket + '/' + srcKey +
                    ' and upload to ' + dstBucket + '/' + dstKey +
                    ' due to an error: ' + err
                );
            } else {
                console.log(
                    'Successfully resized ' + srcBucket + '/' + srcKey +
                    ' and uploaded to ' + dstBucket + '/' + dstKey
                );
            }

//          context.done();
        }
    );
};

The logs:

START RequestId: edc808c1-712b-11e5-aa8a-ed7c188ee86c Version: $LATEST 
2015-10-12T21:55:20.481Z    edc808c1-712b-11e5-aa8a-ed7c188ee86c    Reading options from event: { Records:  [ { eventVersion: '2.0', eventTime: '1970-01-01T00:00:00.000Z', requestParameters: { sourceIPAddress: '127.0.0.1' }, s3:  { configurationId: 'testConfigRule', object:  { eTag: '0123456789abcdef0123456789abcdef', sequencer: '0A1B2C3D4E5F678901', key: 'HappyFace.jpg', size: 1024 }, bucket:  { arn: 'arn:aws:s3:::images', name: 'images', ownerIdentity: { principalId: 'EXAMPLE' } }, s3SchemaVersion: '1.0' }, responseElements:  { 'x-amz-id-2': 'EXAMPLE123/5678abcdefghijklambdaisawesome/mnopqrstuvwxyzABCDEFGH', 'x-amz-request-id': 'EXAMPLE123456789' }, awsRegion: 'us-east-1', eventName: 'ObjectCreated:Put', userIdentity: { principalId: 'EXAMPLE' }, eventSource: 'aws:s3' } ] } 
2015-10-12T21:55:22.411Z    edc808c1-712b-11e5-aa8a-ed7c188ee86c    Successfully resized images/HappyFace.jpg and uploaded to images-thumbs/resized-HappyFace.jpg 
2015-10-12T21:55:23.432Z    edc808c1-712b-11e5-aa8a-ed7c188ee86c    CONNECTION SUCCESS! 
END RequestId: edc808c1-712b-11e5-aa8a-ed7c188ee86c 
REPORT RequestId: edc808c1-712b-11e5-aa8a-ed7c188ee86c  Duration: 3003.76 ms    Billed Duration: 3000 ms Memory Size: 128 MB    Max Memory Used: 43 MB   
Task timed out after 3.00 seconds  
START RequestId: d347e7e3-712d-11e5-bfdf-05baa36d50fd Version: $LATEST 
2015-10-12T22:08:55.910Z    d347e7e3-712d-11e5-bfdf-05baa36d50fd    Reading options from event: { Records:  [ { eventVersion: '2.0', eventTime: '1970-01-01T00:00:00.000Z', requestParameters: { sourceIPAddress: '127.0.0.1' }, s3:  { configurationId: 'testConfigRule', object:  { eTag: '0123456789abcdef0123456789abcdef', sequencer: '0A1B2C3D4E5F678901', key: 'HappyFace.jpg', size: 1024 }, bucket:  { arn: 'arn:aws:s3:::images', name: 'images', ownerIdentity: { principalId: 'EXAMPLE' } }, s3SchemaVersion: '1.0' }, responseElements:  { 'x-amz-id-2': 'EXAMPLE123/5678abcdefghijklambdaisawesome/mnopqrstuvwxyzABCDEFGH', 'x-amz-request-id': 'EXAMPLE123456789' }, awsRegion: 'us-east-1', eventName: 'ObjectCreated:Put', userIdentity: { principalId: 'EXAMPLE' }, eventSource: 'aws:s3' } ] } 
END RequestId: d347e7e3-712d-11e5-bfdf-05baa36d50fd 
REPORT RequestId: d347e7e3-712d-11e5-bfdf-05baa36d50fd  Duration: 3003.33 ms    Billed Duration: 3000 ms Memory Size: 128 MB    Max Memory Used: 17 MB   
Task timed out after 3.00 seconds




Aucun commentaire:

Enregistrer un commentaire