-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
69 lines (62 loc) · 2.11 KB
/
index.js
File metadata and controls
69 lines (62 loc) · 2.11 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
68
69
var Discord = require('discord.io');
var logger = require('winston');
var auth = require('./auth.json');
// Configure logger settings
logger.remove(logger.transports.Console);
logger.add(new logger.transports.Console, {
colorize: true
});
logger.level = 'debug';
// Initialize Discord Bot
var bot = new Discord.Client({
token: auth.token,
autorun: true
});
bot.on('ready', function (evt) {
logger.info('Connected');
logger.info('Logged in as: ');
logger.info(bot.username + ' - (' + bot.id + ')');
});
var exec = require('child_process').exec;
function execute(command, callback) {
exec(command, function (error, stdout, stderr) {
callback(stdout);
});
};
bot.on('message', function (user, userID, channelID, message, evt) {
// Our bot needs to know if it will execute a command
// It will listen for messages that will start with `!`
if (message.substring(0, 1) == '!') {
var args = message.substring(1).split(' ');
var cmd = args[0];
args = args.splice(1);
switch (cmd) {
// !ping
case 'ping':
bot.sendMessage({
to: channelID,
message: 'Pong!'
});
break;
case 'meme':
bot.sendMessage({
to: channelID,
message: 'Generating meme... Visit this link to see a bunch of other memes: https://twitter.com/InstaMeme7'
});
var final_text;
console.time("get message");
execute("node ./InstaMeme/index.js", (output) => {
console.log(output);
final_text = output;
console.log('sending message: ' + final_text);
bot.sendMessage({
to: channelID,
message: final_text
});
console.timeEnd("get message");
})
break;
// Just add any case commands if you want to..
}
}
});