-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbeemo_channel_send.js
More file actions
67 lines (53 loc) · 1.55 KB
/
beemo_channel_send.js
File metadata and controls
67 lines (53 loc) · 1.55 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
59
60
61
62
63
64
65
66
67
var runBot = function(keybase_channel, message, topic_name) {
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: keybase_channel,
public: false,
topicType: 'chat',
membersType: 'team',
topicName: (typeof topic_name !== 'undefined' && topic_name !== null ? topic_name : 'general'),
}
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 keybase_channel = requestBody.channel;
const message = requestBody.message;
const topic_name = requestBody.topic_name;
var invokeBot = await runBot(keybase_channel, message, topic_name);
const response = {
statusCode: 200,
body: JSON.stringify(invokeBot),
};
return response;
};