mirror of
https://github.com/reality/dbot.git
synced 2024-11-23 20:39:25 +01:00
Much better! [#131]
This commit is contained in:
parent
dc269b53b4
commit
5419a664dc
@ -1,10 +1,11 @@
|
||||
var _ = require('underscore')._;
|
||||
|
||||
var api = {
|
||||
var api = function(dbot) {
|
||||
return {
|
||||
'isBanned': function(user, command) {
|
||||
var banned = false;
|
||||
if(_.has(this.dbot.db.bans, command)) {
|
||||
if(_.include(this.dbot.db.bans[command], user) || _.include(this.dbot.db.bans['*'], user)) {
|
||||
if(_.has(dbot.db.bans, command)) {
|
||||
if(_.include(dbot.db.bans[command], user) || _.include(dbot.db.bans['*'], user)) {
|
||||
banned = true;
|
||||
}
|
||||
}
|
||||
@ -16,15 +17,15 @@ var api = {
|
||||
*/
|
||||
'hasAccess': function(user, command) {
|
||||
var access = true;
|
||||
var accessNeeded = this.dbot.commands[command].access;
|
||||
var accessNeeded = dbot.commands[command].access;
|
||||
|
||||
if(accessNeeded == 'admin') {
|
||||
if(!_.include(this.dbot.config.admins, user)) {
|
||||
if(!_.include(dbot.config.admins, user)) {
|
||||
access = false;
|
||||
}
|
||||
} else if(accessNeeded == 'moderator') {
|
||||
if(!_.include(this.dbot.config.moderators, user) &&
|
||||
!_.include(this.dbot.config.admins, user)) {
|
||||
if(!_.include(dbot.config.moderators, user) &&
|
||||
!_.include(dbot.config.admins, user)) {
|
||||
access = false;
|
||||
}
|
||||
}
|
||||
@ -36,9 +37,9 @@ var api = {
|
||||
* Is user ignoring command?
|
||||
*/
|
||||
'isIgnoring': function(user, command) {
|
||||
var module = this.dbot.commands[command].module;
|
||||
var module = dbot.commands[command].module;
|
||||
var ignoring = false;
|
||||
if(_.has(this.dbot.db.ignores, user) && _.include(this.dbot.db.ignores[user], module)) {
|
||||
if(_.has(dbot.db.ignores, user) && _.include(dbot.db.ignores[user], module)) {
|
||||
ignoring = true;
|
||||
}
|
||||
return ignoring;
|
||||
@ -50,8 +51,8 @@ var api = {
|
||||
*/
|
||||
'applyRegex': function(commandName, event) {
|
||||
var applies = false;
|
||||
if(_.has(this.dbot.commands[commandName], 'regex')) {
|
||||
var cRegex = this.dbot.commands[commandName].regex;
|
||||
if(_.has(dbot.commands[commandName], 'regex')) {
|
||||
var cRegex = dbot.commands[commandName].regex;
|
||||
var q = event.message.valMatch(cRegex[0], cRegex[1]);
|
||||
if(q) {
|
||||
applies = true;
|
||||
@ -63,6 +64,8 @@ var api = {
|
||||
return applies;
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
exports.fetch = api;
|
||||
|
||||
exports.fetch = function(dbot) {
|
||||
return api(dbot);
|
||||
};
|
||||
|
@ -14,35 +14,34 @@ var command = function(dbot) {
|
||||
* Run the appropriate command given the input.
|
||||
*/
|
||||
this.listener = function(event) {
|
||||
console.log(Object.keys(this));
|
||||
var commandName = event.params[0];
|
||||
if(!_.has(this.dbot.commands, commandName)) {
|
||||
if(!_.has(dbot.commands, commandName)) {
|
||||
commandName = '~';
|
||||
}
|
||||
|
||||
if(this.api.isBanned(event.user, commandName)) {
|
||||
event.reply(this.dbot.t('command_ban', {'user': event.user}));
|
||||
event.reply(dbot.t('command_ban', {'user': event.user}));
|
||||
} else {
|
||||
if(!this.api.isIgnoring(event.user, commandName) &&
|
||||
this.api.hasAccess(event.user, commandName) &&
|
||||
this.dbot.commands[commandName].disabled !== true) {
|
||||
dbot.commands[commandName].disabled !== true) {
|
||||
if(this.api.applyRegex(commandName, event)) {
|
||||
try {
|
||||
this.dbot.commands[commandName](event);
|
||||
dbot.commands[commandName](event);
|
||||
} catch(err) {
|
||||
if(this.dbot.config.debugMode == true) {
|
||||
if(dbot.config.debugMode == true) {
|
||||
event.reply('- Error in ' + commandName + ':');
|
||||
event.reply('- Message: ' + err);
|
||||
event.reply('- Top of stack: ' + err.stack.split('\n')[1].trim());
|
||||
}
|
||||
}
|
||||
this.dbot.save();
|
||||
dbot.save();
|
||||
} else {
|
||||
if(commandName !== '~') {
|
||||
if(_.has(this.dbot.usage, commandName)) {
|
||||
event.reply('Usage: ' + this.dbot.usage[commandName]);
|
||||
if(_.has(dbot.usage, commandName)) {
|
||||
event.reply('Usage: ' + dbot.usage[commandName]);
|
||||
} else {
|
||||
event.reply(this.dbot.t('syntax_error'));
|
||||
event.reply(dbot.t('syntax_error'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,15 +1,16 @@
|
||||
var _ = require('underscore')._;
|
||||
|
||||
var commands = {
|
||||
var commands = function(dbot) {
|
||||
return {
|
||||
'~usage': function(event) {
|
||||
var commandName = event.params[1];
|
||||
if(_.has(this.dbot.usage, commandName)) {
|
||||
event.reply(this.dbot.t('usage', {
|
||||
if(_.has(dbot.usage, commandName)) {
|
||||
event.reply(dbot.t('usage', {
|
||||
'command': commandName,
|
||||
'usage': this.dbot.usage[commandName]
|
||||
'usage': dbot.usage[commandName]
|
||||
}));
|
||||
} else {
|
||||
event.reply(this.dbot.t('no_usage_info', {
|
||||
event.reply(dbot.t('no_usage_info', {
|
||||
'command': commandName
|
||||
}));
|
||||
}
|
||||
@ -17,13 +18,13 @@ var commands = {
|
||||
|
||||
'~help': function(event) {
|
||||
var moduleName = event.params[1];
|
||||
if(!_.has(this.dbot.modules, moduleName)) {
|
||||
var moduleName = this.dbot.commands[moduleName].module;
|
||||
if(!_.has(dbot.modules, moduleName)) {
|
||||
var moduleName = dbot.commands[moduleName].module;
|
||||
}
|
||||
|
||||
if(moduleName && _.has(this.dbot.config[moduleName], 'help')) {
|
||||
var help = this.dbot.config[moduleName].help;
|
||||
event.reply(this.dbot.t('help_link', {
|
||||
if(moduleName && _.has(dbot.config[moduleName], 'help')) {
|
||||
var help = dbot.config[moduleName].help;
|
||||
event.reply(dbot.t('help_link', {
|
||||
'module': moduleName,
|
||||
'link': help
|
||||
}));
|
||||
@ -31,9 +32,12 @@ var commands = {
|
||||
if(!moduleName) {
|
||||
moduleName = event.params[1];
|
||||
}
|
||||
event.reply(this.dbot.t('no_help', { 'module': moduleName }))
|
||||
event.reply(dbot.t('no_help', { 'module': moduleName }))
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
exports.fetch = commands;
|
||||
exports.fetch = function(dbot) {
|
||||
return commands(dbot);
|
||||
};
|
||||
|
2
run.js
2
run.js
@ -181,7 +181,7 @@ DBot.prototype.reloadModules = function() {
|
||||
try {
|
||||
var propertyKey = require.resolve(moduleDir + property);
|
||||
if(propertyKey) delete require.cache[propertyKey];
|
||||
var propertyObj = require(moduleDir + property).fetch;
|
||||
var propertyObj = require(moduleDir + property).fetch(this);
|
||||
} catch(err) {
|
||||
console.log(err.stack);
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user