forked from BeepBoopHQ/starter-node-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
116 lines (96 loc) · 3.3 KB
/
index.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
var Botkit = require('botkit')
var groupLunch = require('./groupLunch')
var token = process.env.SLACK_TOKEN
var loc = null;
var time = null;
var limit = null;
var controller = Botkit.slackbot({
// reconnect to Slack RTM when connection goes bad
retry: Infinity,
debug: false
})
// Assume single team mode if we have a SLACK_TOKEN
if (token) {
console.log('Starting in single-team mode')
controller.spawn({
token: token
}).startRTM(function (err, bot, payload) {
if (err) {
throw new Error(err)
}
console.log('Connected to Slack RTM')
})
// Otherwise assume multi-team mode - setup beep boop resourcer connection
} else {
console.log('Starting in Beep Boop multi-team mode')
require('beepboop-botkit').start(controller, { debug: true })
}
controller.on('bot_channel_join', function (bot, message) {
bot.reply(message, "I'm here!")
})
controller.hears('.*', ['mention'], function (bot, message) {
bot.reply(message, 'You really do care about me. :heart:')
})
/*
controller.hears('help', ['direct_message', 'direct_mention'], function (bot, message) {
var help = 'I will respond to the following messages: \n' +
'`bot hi` for a simple message.\n' +
'`bot attachment` to see a Slack attachment message.\n' +
'`@<your bot\'s name>` to demonstrate detecting a mention.\n' +
'`bot help` to see this again.'
bot.reply(message, help)
})
*/
controller.hears(['attachment'], ['direct_message', 'direct_mention'], function (bot, message) {
var text = 'Beep Beep Boop is a ridiculously simple hosting platform for your Slackbots.'
var attachments = [{
fallback: text,
pretext: 'We bring bots to life. :sunglasses: :thumbsup:',
title: 'Host, deploy and share your bot in seconds.',
image_url: 'https://storage.googleapis.com/beepboophq/_assets/bot-1.22f6fb.png',
title_link: 'https://beepboophq.com/',
text: text,
color: '#7CD197'
}]
bot.reply(message, {
attachments: attachments
}, function (err, resp) {
console.log(err, resp)
})
})
// ToDo
controller.hears(['gltodo'], 'direct_message', function(bot,message) {
groupLunch.todo(bot,message);
});
// Cmds
controller.hears(['help'], 'direct_message', function(bot,message) {
groupLunch.cmds(bot,message);
});
// Start Group Lunch
controller.hears(['gladd'], 'direct_message', function(bot,message) {
// start a conversation to handle this response.
bot.startConversation(message,function(err,convo) {
groupLunch.askPlace(message, convo, controller);
})
});
// Check Available potentials
controller.hears(['gllist'], 'direct_message', function(bot, message) {
bot.startConversation(message, function(err, convo) {
groupLunch.listGroup(message, convo, false, controller);
})
});
// Check Available potentials
controller.hears(['gljoin'], 'direct_message', function(bot, message) {
bot.startConversation(message, function(err, convo) {
groupLunch.listGroup(message, convo, true, controller);
})
});
// Check Available potentials
controller.hears(['glcancel'], 'direct_message', function(bot, message) {
bot.startConversation(message, function(err, convo) {
groupLunch.cancelGroup(message, convo);
})
});
controller.hears('.*', ['direct_message', 'direct_mention'], function (bot, message) {
bot.reply(message, 'Sorry <@' + message.user + '>, I don\'t understand. \n')
})