forked from taboola/easy-peasy-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
108 lines (91 loc) · 3.4 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
/**
* A Bot for Slack!
*/
/**
* Define a function for initiating a conversation on installation
* With custom integrations, we don't have a way to find out who installed us, so we can't message them :(
*/
function onInstallation(bot, installer) {
if (installer) {
bot.startPrivateConversation({user: installer}, function (err, convo) {
if (err) {
console.log(err);
} else {
convo.say('I am a bot that has just joined your team');
convo.say('You must now /invite me to a channel so that I can be of use!');
}
});
}
}
/**
* Configure the persistence options
*/
var config = {};
if (process.env.MONGOLAB_URI) {
var BotkitStorage = require('botkit-storage-mongo');
config = {
storage: BotkitStorage({mongoUri: process.env.MONGOLAB_URI}),
};
} else {
config = {
json_file_store: ((process.env.TOKEN)?'./db_slack_bot_ci/':'./db_slack_bot_a/'), //use a different name if an app or CI
};
}
/**
* Are being run as an app or a custom integration? The initialization will differ, depending
*/
if (process.env.TOKEN || process.env.SLACK_TOKEN) {
//Treat this as a custom integration
var customIntegration = require('./lib/custom_integrations');
var token = (process.env.TOKEN) ? process.env.TOKEN : process.env.SLACK_TOKEN;
var controller = customIntegration.configure(token, config, onInstallation);
} else if (process.env.CLIENT_ID && process.env.CLIENT_SECRET && process.env.PORT) {
//Treat this as an app
var app = require('./lib/apps');
var controller = app.configure(process.env.PORT, process.env.CLIENT_ID, process.env.CLIENT_SECRET, config, onInstallation);
} else {
console.log('Error: If this is a custom integration, please specify TOKEN in the environment. If this is an app, please specify CLIENTID, CLIENTSECRET, and PORT in the environment');
process.exit(1);
}
/**
* A demonstration for how to handle websocket events. In this case, just log when we have and have not
* been disconnected from the websocket. In the future, it would be super awesome to be able to specify
* a reconnect policy, and do reconnections automatically. In the meantime, we aren't going to attempt reconnects,
* WHICH IS A B0RKED WAY TO HANDLE BEING DISCONNECTED. So we need to fix this.
*
* TODO: fixed b0rked reconnect behavior
*/
// Handle events related to the websocket connection to Slack
controller.on('rtm_open', function (bot) {
console.log('** The RTM api just connected!');
});
controller.on('rtm_close', function (bot) {
console.log('** The RTM api just closed');
// you may want to attempt to re-open
});
/**
* Core bot logic goes here!
*/
// BEGIN EDITING HERE!
controller.on('bot_channel_join', function (bot, message) {
bot.reply(message, "I'm here!")
});
controller.hears('hello', 'direct_message', function (bot, message) {
bot.reply(message, 'Hello!');
});
/**
* AN example of what could be:
* Any un-handled direct mention gets a reaction and a pat response!
*/
//controller.on('direct_message,mention,direct_mention', function (bot, message) {
// bot.api.reactions.add({
// timestamp: message.ts,
// channel: message.channel,
// name: 'robot_face',
// }, function (err) {
// if (err) {
// console.log(err)
// }
// bot.reply(message, 'I heard you loud and clear boss.');
// });
//});