forked from aghadiry/serverless-cloudfront-invalidate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
86 lines (80 loc) · 2.82 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
'use strict';
const AWS = require('aws-sdk');
const randomstring = require('randomstring');
const chalk = require('chalk');
class CloudfrontInvalidate {
constructor(serverless, options) {
this.serverless = serverless;
this.options = options || {};
this.commands = {
cloudfrontInvalidate: {
usage: "Invalidate Cloudfront Cache",
lifecycleEvents: [
'invalidate'
]
}
};
this.hooks = {
'after:deploy:deploy': this.invalidate.bind(this),
'cloudfrontInvalidate:invalidate': this.invalidate.bind(this),
};
}
invalidate() {
const cli = this.serverless.cli;
let cloudfrontInvalidate = this.serverless.service.custom.cloudfrontInvalidate;
let awsCredentials = this.serverless.getProvider('aws').getCredentials()
let cloudfront = new AWS.CloudFront({
credentials: awsCredentials.credentials
});
let reference = randomstring.generate(16);
let distributionId = cloudfrontInvalidate.distributionId;
if (!distributionId) {
if (!cloudfrontInvalidate.distributionIdKey) {
cli.consoleLog('distributionId or distributionIdKey is required');
return;
}
// get the id from the output of stack.
const cfn = new AWS.CloudFormation({
credentials: awsCredentials.credentials,
region: this.serverless.getProvider('aws').getRegion()
});
const stackName = `${this.serverless.service.getServiceName()}-${this.serverless.getProvider('aws').getStage()}`
cfn.describeStacks({ StackName: stackName }).promise()
.then(result => {
if (result) {
const outputs = result.Stacks[0].Outputs;
outputs.forEach(output => {
if (output.OutputKey === cloudfrontInvalidate.distributionIdKey) {
distributionId = output.OutputValue;
}
});
}
})
.then(() => {
let params = {
DistributionId: distributionId, /* required */
InvalidationBatch: { /* required */
CallerReference: reference, /* required */
Paths: { /* required */
Quantity: cloudfrontInvalidate.items.length, /* required */
Items: cloudfrontInvalidate.items
}
}
};
cloudfront.createInvalidation(params, function (err, data) {
if (!err){
cli.consoleLog(`CloudfrontInvalidate: ${chalk.yellow('Invalidation started')}`);
} else{
console.log(JSON.stringify(err));
cli.consoleLog(`CloudfrontInvalidate: ${chalk.yellow('Invalidation failed')}`);
}
});
})
.catch(error => {
cli.consoleLog('Failed to get DistributionId from stack output. Please check your serverless template.');
return;
});
}
}
}
module.exports = CloudfrontInvalidate;