-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnapipatrik-api-lambda.js
69 lines (60 loc) · 1.79 KB
/
napipatrik-api-lambda.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
const qs = require('querystring');
const AWS = require('aws-sdk');
const s3 = new AWS.S3();
exports.handler = (event, context, callback) => {
var id = qs.parse(event.body)['text'];
if (id.trim() === "help") {
callback(null, {
"statusCode": 200,
"headers": {
"Content-Type": "application/json"
},
body: JSON.stringify({
"response_type": "ephemeral",
"text": "Használat: `/napipatrik [id]`\nahol az opcionális id az idézet száma (permalink id)"
})
});
return;
}
let file;
if (id) {
console.log("ID: ", id);
file = "assets/js/patrikok.js";
} else {
file = "napipatrik";
}
var params = { Bucket: 'napipatrik', Key: file };
s3.getObject(params, function(err, data) {
if (err) {
console.log("Got error: ");
console.log(err);
callback(null, {
"statusCode": 500,
"headers": {
"Content-Type": "application/json"
},
body: JSON.stringify(err)
});
return;
}
let body = '';
if (id) {
eval(data.Body.toString());
id = Number(id) == NaN ? 0 : Number(id);
body = patrikok[id] === undefined ? patrikok[0] : patrikok[id];
} else {
body = data.Body.toString().trim();
}
callback(null, {
"statusCode": 200,
"headers": {
"Content-Type": "application/json"
},
body: JSON.stringify({
"response_type": "in_channel",
"delete_original": true,
"text": body
})
});
});
};