From 2b31ce12d90ac4e27958d3b98262d08e1d7fc321 Mon Sep 17 00:00:00 2001 From: reality Date: Tue, 16 Dec 2014 02:50:03 +0000 Subject: [PATCH] yeh --- modules/report/commands.js | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/modules/report/commands.js b/modules/report/commands.js index d5d28e7..be5469e 100644 --- a/modules/report/commands.js +++ b/modules/report/commands.js @@ -64,6 +64,43 @@ var commands = function(dbot) { }); }, + '~ustatus': function(event) { + var user = event.input[1]; + + dbot.api.users.resolveUser(event.server, user, function(err, user) { + if(user) { + var ban = null, + quiet = 0 + warn = 0; + +// i'll fix it later + dbot.modules.report.db.search('notifies', { + 'server': event.server + }, function(notify) { + if(notify.message.match('banned ' + user.primaryNick) || notify.message.match('issued a warning to ' + user.primaryNick) || notify.message.match('has quieted ' + user.primaryNick)) { + if(notify.type == 'ban') { + ban = notify.time; + } else if(notify.type == 'quiet') { + quiet++; + } else if(notify.type == 'warn') { + warn++; + } + } + }, function() { + if(ban) { + event.reply(user.primaryNick + ' was banned on ' + new Date(ban).toUTCString()); + } else if(quiet != 0 || warn != 0) { + event.reply(user.primaryNick + ' has been warned ' + warn + ' times, and quieted ' + quiet + ' times.'); + } else { + event.reply(user.primaryNick + ' has no record.'); + } + }); + } else { + event.reply('never heard of em'); + } + }.bind(this)); + }, + '~clearmissing': function(event) { if(_.has(this.pending, event.rUser.id)) { var count = this.pending[event.rUser.id].length; @@ -193,6 +230,7 @@ var commands = function(dbot) { commands['~notify'].regex = [/^notify ([^ ]+) (.+)$/, 3]; commands['~nunsub'].regex = [/^nunsub ([^ ]+)$/, 2]; commands['~ununsub'].regex = [/^ununsub ([^ ]+)$/, 2]; + commands['~ustatus'].regex = [/^ustatus ([^ ]+)$/, 2]; return commands; };