-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.js
62 lines (55 loc) · 1.76 KB
/
install.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
/* eslint-disable no-console */
const qs = require('querystring');
const AWS = require('aws-sdk');
const fetch = require('node-fetch');
const dynamodb = new AWS.DynamoDB.DocumentClient();
const getCode = (event) => {
var code = null;
if (event.queryStringParameters && event.queryStringParameters.code) {
code = event.queryStringParameters.code;
}
return code;
};
const requestToken = (code) => {
console.log(`Requesting token with ${code}`);
if (code === null) { return null; } // Skip if triggered without code
const params = {
client_id: process.env.CLIENT_ID,
client_secret: process.env.CLIENT_SECRET,
code,
};
const url = `https://slack.com/api/oauth.access?${qs.stringify(params)}`;
console.log(`Fetching ${url}`);
return fetch(url)
.then(response => response.json()) // Convert response to JSON
.then((json) => {
if (json.ok) return json; // Verify is valid JSON
throw new Error('SlackAPIError');
});
};
const saveResponse = (response) => {
const params = {
TableName: process.env.TEAMS_TABLE,
Item: response,
};
console.log('Put', params);
return dynamodb.put(params).promise();
};
const successResponse = callback => callback(null, {
statusCode: 302,
headers: { Location: process.env.INSTALL_SUCCESS_URL },
});
const errorResponse = (error, callback) => {
console.error(error);
return callback(null, {
statusCode: 302,
headers: { Location: process.env.INSTALL_ERROR_URL },
});
};
module.exports.handler = (event, context, callback) =>
Promise.resolve(event)
.then(getCode) // Get code from event
.then(requestToken) // Exchange code for token
.then(saveResponse) // Save token to DDB
.then(() => successResponse(callback))
.catch(error => errorResponse(error, callback));