-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathteam.js
More file actions
58 lines (44 loc) · 1.18 KB
/
team.js
File metadata and controls
58 lines (44 loc) · 1.18 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) {
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}`)
bot.team
.addMembers({
team: 'codeforcash',
usernames: [{username: recipient, role: 'reader'}],
})
.then(res => {
console.log(res)
bot.deinit()
resolve(res)
})
.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;
};