2013-10-17 11:10:01 +02:00
|
|
|
var _ = require('underscore')._,
|
|
|
|
async = require('async');
|
2013-10-16 17:12:05 +02:00
|
|
|
|
|
|
|
var commands = function(dbot) {
|
|
|
|
var commands = {
|
2013-10-17 05:59:29 +02:00
|
|
|
'~words': function(event) {
|
|
|
|
var getWords = function(user) {
|
|
|
|
this.api.getUserStats(user.id, function(uStats) {
|
|
|
|
if(uStats) {
|
|
|
|
var output = dbot.t('sstats_uwords', {
|
|
|
|
'user': user.primaryNick,
|
|
|
|
'words': uStats.words,
|
|
|
|
'curses': uStats.curses,
|
|
|
|
'capitals': uStats.capitals
|
|
|
|
});
|
|
|
|
if(event.rChannel && _.has(uStats.channels, event.rChannel.id)) {
|
|
|
|
ucStats = uStats.channels[event.rChannel.id];
|
|
|
|
output += dbot.t('sstats_ucwords', {
|
|
|
|
'channel': event.channel,
|
|
|
|
'words': ucStats.words,
|
|
|
|
'curses': ucStats.curses,
|
|
|
|
'capitals': ucStats.capitals
|
|
|
|
});
|
|
|
|
}
|
|
|
|
event.reply(output);
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('sstats_noustats'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}.bind(this);
|
|
|
|
|
|
|
|
if(event.params[1]) {
|
|
|
|
dbot.api.users.resolveUser(event.server, event.params[1], function(user) {
|
|
|
|
if(user) {
|
|
|
|
getWords(user);
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('sstats_unknown_user'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
getWords(event.rUser);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-10-16 17:12:05 +02:00
|
|
|
'~lines': function(event) {
|
2013-10-16 17:22:45 +02:00
|
|
|
var getLines = function(user) {
|
|
|
|
this.api.getUserStats(user.id, function(uStats) {
|
2013-10-16 17:12:05 +02:00
|
|
|
if(uStats) {
|
|
|
|
var output = dbot.t('sstats_tlines', {
|
2013-10-16 17:22:45 +02:00
|
|
|
'user': user.primaryNick,
|
2013-10-16 17:12:05 +02:00
|
|
|
'lines': uStats.lines
|
|
|
|
});
|
|
|
|
if(event.rChannel && _.has(uStats.channels, event.rChannel.id)) {
|
|
|
|
output += dbot.t('sstats_uclines', {
|
|
|
|
'channel': event.channel,
|
|
|
|
'lines': uStats.channels[event.rChannel.id].lines
|
|
|
|
});
|
|
|
|
}
|
|
|
|
event.reply(output);
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('sstats_noustats'));
|
|
|
|
}
|
|
|
|
});
|
2013-10-16 17:22:45 +02:00
|
|
|
}.bind(this);
|
|
|
|
|
|
|
|
if(event.params[1]) {
|
|
|
|
dbot.api.users.resolveUser(event.server, event.params[1], function(user) {
|
|
|
|
if(user) {
|
|
|
|
getLines(user);
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('sstats_unknown_user'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
getLines(event.rUser);
|
2013-10-16 17:12:05 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-10-17 11:10:01 +02:00
|
|
|
'~loudest': function(event) {
|
2013-10-17 13:42:05 +02:00
|
|
|
this.internalAPI.highscore('user_stats', 'lines', function(lCounts) {
|
2013-10-17 11:10:01 +02:00
|
|
|
async.eachSeries(lCounts, function(lCount, next) {
|
|
|
|
dbot.api.users.getUser(lCount[0], function(user) {
|
2013-10-17 13:42:05 +02:00
|
|
|
lCount[0] = user.primaryNick; next();
|
2013-10-17 11:10:01 +02:00
|
|
|
});
|
|
|
|
}, function() {
|
2013-10-17 13:42:05 +02:00
|
|
|
event.reply(this.internalAPI.formatHighscore('Loudest users: ', lCounts));
|
|
|
|
}.bind(this));
|
2013-10-17 13:46:50 +02:00
|
|
|
}.bind(this));
|
|
|
|
},
|
|
|
|
|
|
|
|
'~uncouth': function(event) {
|
|
|
|
this.internalAPI.highscore('user_stats', 'curses', function(lCounts) {
|
|
|
|
async.eachSeries(lCounts, function(lCount, next) {
|
|
|
|
dbot.api.users.getUser(lCount[0], function(user) {
|
|
|
|
lCount[0] = user.primaryNick; next();
|
|
|
|
});
|
|
|
|
}, function() {
|
|
|
|
event.reply(this.internalAPI.formatHighscore('Most uncouth users: ', lCounts));
|
|
|
|
}.bind(this));
|
2013-10-17 13:42:05 +02:00
|
|
|
}.bind(this));
|
2013-10-17 11:10:01 +02:00
|
|
|
},
|
|
|
|
|
2013-10-17 11:16:50 +02:00
|
|
|
'~cloudest': function(event) {
|
2013-10-17 13:42:05 +02:00
|
|
|
var pathString = 'channels.' + event.rChannel.id + '.lines';
|
|
|
|
this.internalAPI.highscore('user_stats', pathString, function(lCounts) {
|
2013-10-17 11:16:50 +02:00
|
|
|
async.eachSeries(lCounts, function(lCount, next) {
|
|
|
|
dbot.api.users.getUser(lCount[0], function(user) {
|
2013-10-17 13:42:05 +02:00
|
|
|
lCount[0] = user.primaryNick; next();
|
2013-10-17 11:16:50 +02:00
|
|
|
});
|
|
|
|
}, function() {
|
2013-10-17 13:42:05 +02:00
|
|
|
event.reply(this.internalAPI.formatHighscore('Loudest users in ' + event.channel + ': ', lCounts));
|
|
|
|
}.bind(this));;
|
|
|
|
}.bind(this));
|
2013-10-17 11:16:50 +02:00
|
|
|
},
|
|
|
|
|
2013-10-16 17:12:05 +02:00
|
|
|
'~clines': function(event) {
|
|
|
|
if(!event.cStats) return;
|
|
|
|
event.reply(dbot.t('sstats_clines', {
|
|
|
|
'channel': event.channel,
|
|
|
|
'lines': event.cStats.lines
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return commands;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.fetch = function(dbot) {
|
|
|
|
return commands(dbot);
|
|
|
|
};
|