2012-12-11 17:04:52 +01:00
|
|
|
/**
|
|
|
|
* Module Name: Command
|
|
|
|
* Description: An essential module which maps PRIVMSG input to an appropriate
|
|
|
|
* command and then runs that command, given the user isn't banned from or
|
|
|
|
* ignoring that command.
|
|
|
|
*/
|
2013-01-12 17:14:17 +01:00
|
|
|
var _ = require('underscore')._;
|
2013-04-24 22:45:20 +02:00
|
|
|
|
2012-12-11 17:04:52 +01:00
|
|
|
var command = function(dbot) {
|
|
|
|
/**
|
2013-01-14 17:02:40 +01:00
|
|
|
* Run the appropriate command given the input.
|
2012-12-11 17:04:52 +01:00
|
|
|
*/
|
2013-01-14 17:02:40 +01:00
|
|
|
this.listener = function(event) {
|
|
|
|
var commandName = event.params[0];
|
2013-01-14 17:24:38 +01:00
|
|
|
if(!_.has(dbot.commands, commandName)) {
|
2013-01-24 00:39:42 +01:00
|
|
|
if(_.has(dbot.modules, 'quotes')) {
|
2013-01-14 17:47:48 +01:00
|
|
|
commandName = '~';
|
2013-01-24 00:39:42 +01:00
|
|
|
} else {
|
2013-01-14 17:47:48 +01:00
|
|
|
return;
|
2013-01-24 00:39:42 +01:00
|
|
|
}
|
2013-01-14 17:47:48 +01:00
|
|
|
}
|
2013-04-11 23:21:12 +02:00
|
|
|
|
2013-04-24 22:45:20 +02:00
|
|
|
this.api.hasAccess(event.server, event.user, commandName, function(hasAccess) {
|
|
|
|
dbot.api.ignore.isUserIgnoring(event.server, event.user, commandName, function(isIgnoring) {
|
|
|
|
dbot.api.ignore.isUserBanned(event.server, event.user, commandName, function(isBanned) {
|
|
|
|
if(isBanned) {
|
|
|
|
event.reply(dbot.t('command_ban', {'user': event.user}));
|
|
|
|
} else if(!isIgnoring &&
|
|
|
|
hasAccess &&
|
2013-04-23 21:07:23 +02:00
|
|
|
dbot.commands[commandName].disabled !== true) {
|
|
|
|
if(this.api.applyRegex(commandName, event)) {
|
|
|
|
try {
|
|
|
|
var command = dbot.commands[commandName];
|
|
|
|
var results = command.apply(dbot.modules[command.module], [event]);
|
|
|
|
if(_.has(command, 'hooks') && results !== false) {
|
|
|
|
_.each(command['hooks'], function(hook) {
|
|
|
|
hook.apply(hook.module, _.values(results));
|
|
|
|
}, this);
|
|
|
|
}
|
|
|
|
} catch(err) {
|
|
|
|
if(dbot.config.debugMode == true) {
|
2013-04-30 18:44:39 +02:00
|
|
|
var stack = err.stack.split('\n').slice(1, dbot.config.debugLevel + 1);
|
|
|
|
|
2013-04-23 21:07:23 +02:00
|
|
|
event.reply('- Error in ' + commandName + ':');
|
|
|
|
event.reply('- Message: ' + err);
|
2013-04-30 18:44:39 +02:00
|
|
|
|
|
|
|
_.each(stack, function(stackLine, index) {
|
|
|
|
event.reply('- Stack[' + index + ']: ' +
|
|
|
|
stackLine.trim());
|
|
|
|
});
|
2013-04-23 21:07:23 +02:00
|
|
|
}
|
2013-04-10 03:28:53 +02:00
|
|
|
}
|
2013-05-25 21:13:35 +02:00
|
|
|
dbot.api.event.emit('command', [ event ]);
|
2013-04-23 21:07:23 +02:00
|
|
|
dbot.save();
|
2013-01-14 17:02:40 +01:00
|
|
|
} else {
|
2013-04-23 21:07:23 +02:00
|
|
|
if(commandName !== '~') {
|
|
|
|
if(_.has(dbot.usage, commandName)) {
|
|
|
|
event.reply('Usage: ' + dbot.usage[commandName]);
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('syntax_error'));
|
|
|
|
}
|
2013-04-10 03:28:53 +02:00
|
|
|
}
|
2012-12-23 03:25:58 +01:00
|
|
|
}
|
2013-04-11 22:12:29 +02:00
|
|
|
}
|
2013-04-24 22:45:20 +02:00
|
|
|
}.bind(this));
|
2013-04-10 03:28:53 +02:00
|
|
|
}.bind(this));
|
2013-04-11 22:12:29 +02:00
|
|
|
}.bind(this));
|
2013-01-14 17:02:40 +01:00
|
|
|
}.bind(this);
|
|
|
|
this.on = 'PRIVMSG';
|
2012-12-11 17:04:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.fetch = function(dbot) {
|
2013-01-14 17:02:40 +01:00
|
|
|
return new command(dbot);
|
2012-12-11 17:04:52 +01:00
|
|
|
};
|