Last active
January 7, 2023 08:57
Revisions
-
supinf renamed this gist
Dec 5, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
supinf renamed this gist
Dec 5, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
supinf created this gist
Dec 5, 2014 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,75 @@ console.log('Loading event'); var Q = require('q'); var aws = require('aws-sdk'); var cloudfront = new aws.CloudFront(); exports.handler = function (event, context) { //_log('Received event: ', event); var bucket = event.Records[0].s3.bucket.name; var key = event.Records[0].s3.object.key; console.log('Bucket: '+bucket); console.log('Key: '+key); cloudfront.listDistributions({}, function (err, data) { var promises = []; if (err) { _log('Error: ', err); context.done('error', err); return; } // Find a bucket which uses the backet as a origin. data.Items.map(function (distribution) { var deferred = Q.defer(); var exists = false; distribution.Origins.Items.map(function (origin) { if (exists) return; if (origin.DomainName.indexOf(bucket) === 0) { exists = true; var name = distribution.DomainName; if (distribution.Aliases.Quantity > 0) { name = distribution.Aliases.Items[0]; } console.log('Distribution: ' + distribution.Id + ' ('+ name + ')'); // Parameters for a invalidation var params = { DistributionId : distribution.Id, InvalidationBatch : { CallerReference : '' + new Date().getTime(), Paths : { Quantity : 1, Items : [ '/'+key ] } } }; _log('Params: ', params); // Invalidate cloudfront.createInvalidation(params, function (err, data) { if (err) { _log('Error: ', err); deferred.reject(); return; } _log('Success: ', data.InvalidationBatch); deferred.resolve(); }); } }); if (! exists) deferred.resolve(); promises.push(deferred.promise); }); Q.all(promises).then(function() { context.done(null, ''); }); }); function _log(caption, object) { console.log(caption + JSON.stringify(object, true, ' ')); } };