This repository has been archived by the owner on Oct 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 345
/
SlackService.js
135 lines (116 loc) · 5.47 KB
/
SlackService.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
/* == Imports == */
var AWS = require('aws-sdk');
var qs = require('querystring');
var https = require('https');
/* == Globals == */
var API = {
region: 'INSERT YOUR REGION HERE', // the region code where you launched the stack
endpoint: 'INSERT YOUR API GATEWAY FQDN HERE INCLUDING THE HTTPS://' //i.e.: Something like ... https://xxxxxxxxxx.execute-api.us-east-1.amazonaws.com
};
var table = 'YOUR DYNAMODB USERS TABLE'; // Find this in the outputs of CFN
var index = 'YOUR slackindex DYNAMODB INDEX NAME'; // slackindex for Users table. Find this in outputs of CFN
var token = "INSERT YOUR TOKEN FROM SLACK HERE"; // INSERT YOUR TOKEN FROM SLACK HERE. This is the token from your slack team channel when you created the Slack app integration.
var endpoint = new AWS.Endpoint(API.endpoint);
var creds = new AWS.EnvironmentCredentials('AWS');
var docClient = new AWS.DynamoDB.DocumentClient({
region: API.region
});
exports.handler = function (event, context) {
console.log('REQUEST RECEIVED:\n', JSON.stringify(event));
if (token) {
processEvent(event, context);
} else {
context.fail("Token has not been set.");
}
};
var processEvent = function(event, context) {
var body = event.body;
var params = qs.parse(body);
var requestToken = params.token;
var slackUserAuthorized = false; // We need to explicitly authorize the username in the payload from Slack.
if (requestToken != token) {
console.error("Request token (" + requestToken + ") does not match exptected token for Slack");
context.fail("Invalid request token");
}
else {
var from = params.user_name;
var command = params.command;
var slackTeamDomain = params.team_domain;
var message = params.text;
var timestamp = "" + new Date().getTime();
// Now that we have the Slack message formatted correctly, we make a request to our Chat Service
var post_data = JSON.stringify({
"message": message + " (Via Slack Slash Command)",
"name": from,
"channel": "default",
"timestamp": timestamp
});
/* == DynamoDB Users Index Params == */
var ddbParams = {
TableName: table,
IndexName: index,
KeyConditionExpression: "slackuser = :slackuser and slackteamdomain = :slackteamdomain",
ProjectionExpression: "slackuser, slackteamdomain",
ExpressionAttributeValues: {
":slackuser": from,
":slackteamdomain": slackTeamDomain
}
};
/* == Query Users table to confirm that incoming Slack username exists and is tied to an authorized survivor == */
docClient.query(ddbParams, function(err, data) {
if (err) {
console.log('Error. Unable to send message from Slack. DynamoDB querying failed. RESULT: ' + JSON.stringify(err));
context.fail(new Error('DynamoDB Error: ' + err));
}
else {
/* == FOR TESTING == */
/*
console.log('Query response is: ' + JSON.stringify(data));
console.log('count is: ' + data.Count);
console.log('slack username incoming is: ' + from);
console.log('slack team domain incoming is: ' + slackTeamDomain);
*/
// If no records returned then fail the message with not authorized message.
if (data.Count < 1) {
console.log('Unauthorized user. Invalid Slack username and team domain. No matching users found.');
context.done('The incoming Slack username and team do not match any existing registered survivors. Please sign up to the suvivor chat first, and make sure to register your Slack User name and team domain (name) at sign up.');
} else {
// Parse result and get Slack username.
data.Items.forEach(function(item) {
console.log('Incoming message from: ' + item.slackuser + ' with team domain: ' + item.slackteamdomain);
});
// If Slack user is authorized then call /message API endpoint with Slash command payload
postToChatService(post_data, context);
}
}
});
}
}
function postToChatService(post_data, context) {
// Create signed AWS request to API endpoint
var req = new AWS.HttpRequest(endpoint);
req.method = 'POST';
req.port = '443';
req.path = '/ZombieWorkshopStage/zombie/message';
req.region = API.region;
req.headers['presigned-expires'] = false;
req.headers['Host'] = endpoint.host;
req.body = post_data;
console.log('host is ' + endpoint.host);
var signer = new AWS.Signers.V4(req,'execute-api');
signer.addAuthorization(creds, new Date());
var send = new AWS.NodeHttpClient();
send.handleRequest(req, null, function(httpResp) {
var respBody = '';
httpResp.on('data', function (chunk) {
respBody += chunk;
});
httpResp.on('end', function (chunk) {
console.log('Response: ' + respBody);
context.succeed("Your slack message was sent to survivors. Message sent was: " + JSON.parse(post_data).message);
});
}, function(err) {
console.log('Error: ' + err);
context.fail('Lambda failed with error ' + err);
});
}