-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbeemo_send.js
More file actions
58 lines (46 loc) · 1.34 KB
/
beemo_send.js
File metadata and controls
58 lines (46 loc) · 1.34 KB
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
var runBot = function(recipient, message) {
return new Promise(function(resolve) {
process.env['PATH'] = process.env['PATH'] + ':' + process.env['LAMBDA_TASK_ROOT'] + '/gopath/bin';
const Bot = require('keybase-bot')
const bot = new Bot()
const username = process.env['KEYBASE_BOT_USERNAME']
const paperkey = process.env['KEYBASE_BOT_PAPERKEY']
bot
.init(username, paperkey, {verbose: false})
.then(() => {
console.log(`Your bot is initialized. It is logged in as ${bot.myInfo().username}`)
const channel = {name: recipient + ',' + bot.myInfo().username, public: false, topicType: 'chat'}
const keybase_message = {
body: message
}
bot.chat
.send(channel, keybase_message)
.then(() => {
console.log('Message sent!')
bot.deinit()
resolve(true);
})
.catch(error => {
console.error(error)
bot.deinit()
resolve(false);
})
})
.catch(error => {
console.error(error)
bot.deinit()
resolve(false);
})
});
};
exports.handler = async (event) => {
const requestBody = JSON.parse(event.body);
const recipient = requestBody.recipient;
const message = requestBody.message;
var invokeBot = await runBot(recipient, message);
const response = {
statusCode: 200,
body: JSON.stringify(invokeBot),
};
return response;
};