-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
167 lines (143 loc) · 4.87 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
var AWS = require('aws-sdk');
var url = require('url');
var https = require('https');
var config = require('./config');
var _ = require('lodash');
var baseSparkMessage = {};
if(config.roomId){ baseSparkMessage.roomId = config.roomId }
if(config.toPersonId){ baseSparkMessage.toPersonId = config.toPersonId }
if(config.toPersonEmail){ baseSparkMessage.toPersonEmail = config.toPersonEmail }
var postMessage = function(message, callback) {
var body = JSON.stringify(message);
var options = url.parse(config.webhookUrl);
options.method = 'POST';
options.headers = {
'Content-Type': 'application/json',
'Content-Length': Buffer.byteLength(body),
'Authorization': 'Bearer ' + config.accessToken,
};
var postReq = https.request(options, function(res) {
var chunks = [];
res.setEncoding('utf8');
res.on('data', function(chunk) {
return chunks.push(chunk);
});
res.on('end', function() {
var body = chunks.join('');
if (callback) {
callback({
body: body,
statusCode: res.statusCode,
statusMessage: res.statusMessage
});
}
});
return res;
});
postReq.write(body);
postReq.end();
};
// Format the message for other, unknown event types
var handleUnknown = function(event, context) {
var subject = "AWS Notification";
var detail = event.detail;
var body = [];
try {
body.push(`##${subject} - account #${event.account}`);
body.push(`- Actor: ${detail.userIdentity.userName} (${detail.userIdentity.type})`);
body.push(`- Affected Instance: ${detail.requestParameters.userName}`);
body.push(`- Event ID: [${detail.eventID}](https://console.aws.amazon.com/cloudtrail/home?region=${event.region}#/events?EventId=${detail.eventID})`);
}
catch(e) {
body.push("\n##Couldn't process notification:");
body.push(JSON.stringify(event));
}
var sparkMessage = {
text: "*" + subject + "*",
markdown: body.join("<br/>\n")
};
return _.merge(baseSparkMessage, sparkMessage);
};
// Format the message for IAM events
var handleIAM = function(event, context) {
var subject = "AWS IAM Notification";
var detail = event.detail;
var body = [];
try {
body.push(`##${subject} - account #${event.account}`);
switch(detail.eventName.split(/(?=[A-Z])/)[0]){
case "Create":
body.push(`##EVENT: ${detail.eventName}!!`);
break;
case "Delete":
body.push(`Event: ${detail.eventName}`);
break;
default:
body.push(`Event: ${detail.eventName}`);
}
body.push(`- Actor: ${detail.userIdentity.userName} (${detail.userIdentity.type})`);
body.push(`- Affected User: ${detail.requestParameters.userName}`);
body.push(`- Event ID: [${detail.eventID}](https://console.aws.amazon.com/cloudtrail/home?region=${event.region}#/events?EventId=${detail.eventID})`);
}
catch(e) {
color = "danger";
body.push("\n##Couldn't process notification:");
body.push(JSON.stringify(event));
}
var sparkMessage = {
text: "*" + subject + "*",
markdown: body.join("<br/>\n")
};
return _.merge(baseSparkMessage, sparkMessage);
};
// Format the message for GuardDuty events
var handleIAM = function(event, context) {
var subject = event["detail-type"];
var detail = event.detail;
var body = [];
try {
body.push(`##${subject} - account #${event.account}`);
body.push(`- Affected Resources: ${event.resources}`);
body.push(`- Details: ${JSON.stringify(event.detail)}`);
}
catch(e) {
color = "danger";
body.push("\n##Couldn't process notification:");
body.push(JSON.stringify(event));
}
var sparkMessage = {
text: "*" + subject + "*",
markdown: body.join("<br/>\n")
};
return _.merge(baseSparkMessage, sparkMessage);
};
exports.handler = function(event, context) {
console.log("sns received:" + JSON.stringify(event, null, 2));
var sparkMessage = null;
switch(event.source) {
case "aws.iam":
console.log("processing IAM notification...");
sparkMessage = handleIAM(event,context);
break;
case "aws.guardduty":
console.log("processing Guard Duty notification...");
sparkMessage = handleIAM(event,context);
break;
default:
console.log("processing unknown notification...");
sparkMessage = handleUnknown(event,context);
}
postMessage(sparkMessage, function(response) {
if (response.statusCode < 400) {
console.info('message posted successfully');
context.succeed();
} else if (response.statusCode < 500) {
console.error("error posting message to Spark API: " + response.statusCode + " - " + response.statusMessage);
// Don't retry because the error is due to a problem with the request
context.succeed();
} else {
// Let Lambda retry
context.fail("server error when processing message: " + response.statusCode + " - " + response.statusMessage);
}
});
};