-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathread.js
More file actions
54 lines (42 loc) · 1.23 KB
/
read.js
File metadata and controls
54 lines (42 loc) · 1.23 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
var runBot = function(recipient) {
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'}
bot.chat
.read(channel)
.then((messages) => {
console.log(JSON.stringify(messages))
bot.deinit()
resolve(JSON.stringify(messages));
})
.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;
var invokeBot = await runBot(recipient);
const response = {
statusCode: 200,
body: invokeBot
};
return response;
};