dbot/modules/report/commands.js

425 lines
19 KiB
JavaScript
Raw Normal View History

2014-05-25 23:16:28 +02:00
var _ = require('underscore')._,
2015-04-25 12:27:22 +02:00
moment = require('moment'),
async = require('async');
2013-10-21 17:40:45 +02:00
var commands = function(dbot) {
var commands = {
2014-05-25 22:47:30 +02:00
'~ncount': function(event) {
var chanCounts = {},
2015-01-02 22:38:37 +01:00
typeCounts = {},
2014-05-25 23:16:28 +02:00
total = 0,
offString = event.params[1] || null;
2015-08-13 22:59:56 +02:00
offset = moment().subtract(offString, 1).valueOf() || null,
nick = event.params[2] || event.user;
2014-05-25 23:16:28 +02:00
/*if(!offset || !offset.isValid()) {
event.reply('Invalid timescale. Try \'week\'');
return;
}*/
2014-05-25 22:47:30 +02:00
2015-08-13 22:59:56 +02:00
dbot.api.users.resolveUser(event.server, nick, function(err, user) {
if(user) {
this.db.scan('notifies', function(notify) {
if(notify.user == user.id) {
if(!offString) {
2014-05-25 23:16:28 +02:00
if(!_.has(chanCounts, notify.channel)) chanCounts[notify.channel] = 0;
2015-01-02 22:38:37 +01:00
if(!_.has(typeCounts, notify.type)) typeCounts[notify.type] = 0;
2014-05-25 23:16:28 +02:00
chanCounts[notify.channel]++;
2015-01-02 22:38:37 +01:00
typeCounts[notify.type]++;
2014-05-25 23:16:28 +02:00
total++;
2015-08-13 22:59:56 +02:00
} else {
if(notify.time > offset) {
if(!_.has(chanCounts, notify.channel)) chanCounts[notify.channel] = 0;
if(!_.has(typeCounts, notify.type)) typeCounts[notify.type] = 0;
chanCounts[notify.channel]++;
typeCounts[notify.type]++;
total++;
}
2014-05-25 23:16:28 +02:00
}
}
2015-08-13 22:59:56 +02:00
}, function() {
var cCounts = _.chain(chanCounts)
.pairs()
.sortBy(function(p) { return p[1]; })
.reverse()
.first(10)
.value();
2014-05-25 22:47:30 +02:00
2015-08-13 22:59:56 +02:00
var cString = '';
for(var i=0;i<cCounts.length;i++) {
cString += cCounts[i][0] + " (" + cCounts[i][1] + "), ";
}
cString = cString.slice(0, -2);
2014-05-25 22:47:30 +02:00
2015-08-13 22:59:56 +02:00
var tCounts = _.chain(typeCounts)
.pairs()
.sortBy(function(p) { return p[1]; })
.reverse()
.first(10)
.value();
2015-01-02 22:38:37 +01:00
2015-08-13 22:59:56 +02:00
var tString = '';
for(var i=0;i<tCounts.length;i++) {
tString += tCounts[i][0] + " (" + tCounts[i][1] + "), ";
}
tString = tString.slice(0, -2);
2015-01-02 22:38:37 +01:00
2015-08-13 22:59:56 +02:00
if(offString) {
event.reply(dbot.t('timed_notifies', {
2015-08-13 23:03:21 +02:00
'user': user.primaryNick,
2015-08-13 22:59:56 +02:00
'count': total,
'offString': offString,
'cString': cString,
'tString': tString
}));
} else {
event.reply(dbot.t('total_notifies', {
'user': user.primaryNick,
'count': total,
'cString': cString,
'tString': tString
}));
}
});
} else {
event.reply('No idea who that is mate.');
}
2015-08-13 23:02:14 +02:00
}.bind(this));
2014-05-25 22:47:30 +02:00
},
2016-02-02 16:00:34 +01:00
'~batchstatus': function(event) {
var nicks = event.params,
aliases = [],
reportsFound = [];
nicks.splice(0, 1);
2016-02-02 18:31:36 +01:00
_.each(nicks, function(nick, i) {
nicks[i] = nick.replace(/,/g,'');
});
2016-02-02 16:00:34 +01:00
async.eachSeries(nicks, function(nick, next) {
dbot.api.users.resolveUser(event.server, nick, function(err, user) {
if(!err && user && !_.include(aliases, user.primaryNick)) {
aliases.push(user.primaryNick);
dbot.api.users.getUserAliases(user.id, function(err, theseAliases) {
if(!err && theseAliases) {
aliases = _.union(aliases, theseAliases);
}
next();
});
2016-02-02 16:03:57 +01:00
} else {
next();
2016-02-02 16:00:34 +01:00
}
});
}, function() {
dbot.modules.report.db.search('notifies', {
'server': event.server
}, function(notify) {
if(_.include(aliases, notify.target)) {
if(notify.type == 'ban' || notify.type == 'quiet' || notify.type == 'warn' || notify.type == 'report') {
if(!_.include(reportsFound, notify.target)) {
reportsFound.push(notify.target);
}
}
}
}, function() {
if(reportsFound.length != 0) {
event.reply('Record found for: ' + reportsFound.join(', '));
} else {
event.reply('None of these users seem to have sustatuses');
}
});
});
},
2015-01-15 03:41:11 +01:00
'~sustatus': function(event) {
var user = event.input[1];
if(event.channel == '#tripsit.me') {
return event.reply('~_~ do that in #moderators ~_~');
}
2015-01-15 03:41:11 +01:00
dbot.api.users.resolveUser(event.server, user, function(err, user) {
if(user) {
2015-04-25 12:42:30 +02:00
dbot.api.users.getUserAliases(user.id, function(err, aliases) {
var ban = 0,
latest_ban = {'time':0},
latest_unban = {'time':0},
unban = 0,
quiet = 0,
warn = 0,
report = 0,
items = {};
aliases.push(user.primaryNick);
2015-01-15 03:41:11 +01:00
2015-04-25 12:42:30 +02:00
dbot.modules.report.db.search('notifies', {
'server': event.server
}, function(notify) {
if(_.include(aliases, notify.target)) {
if(notify.type == 'ban') {
ban++;
2016-01-29 18:55:03 +01:00
if(notify.time > latest_ban.time) {
latest_ban = notify;
}
} else if(notify.type == 'unban') {
unban++;
if(notify.time > latest_unban.time) {
latest_unban = notify;
2015-03-14 14:45:15 +01:00
}
2016-01-29 18:55:03 +01:00
} else if(notify.type == 'quiet') {
quiet++;
} else if(notify.type == 'warn') {
warn++;
} else if(notify.type == 'report') {
report++;
}
items[notify.time] = notify;
}
2015-04-25 12:42:30 +02:00
}, function() {
2016-01-29 23:13:44 +01:00
if(quiet != 0 || warn != 0 || report != 0 || ban != 0) {
2016-01-29 18:55:03 +01:00
event.reply(user.primaryNick + ' has been warned ' + warn + ' times, quieted ' + quiet + ' times, and reported ' + report + ' times.');
var sTimes = _.keys(items).sort(function(a, b) {
2016-01-29 23:19:35 +01:00
return parseInt(a) - parseInt(b);
2016-01-29 18:55:03 +01:00
});
if(sTimes.length < 70) {
2016-01-29 19:05:12 +01:00
event.reply('[\u00036reports\u000f]');
2016-02-19 19:59:22 +01:00
var n = 0;
_.each(sTimes, function(time) {
2016-01-29 18:55:03 +01:00
if(items[time].type == 'report') {
2016-02-19 19:55:43 +01:00
event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
2016-02-19 19:59:22 +01:00
n++;
2016-01-29 18:55:03 +01:00
}
2015-04-25 12:42:30 +02:00
});
2016-01-29 19:03:22 +01:00
event.reply('[\u00037quiets\u000f]');
2016-02-19 19:59:22 +01:00
var n = 0;
_.each(sTimes, function(time) {
2016-01-29 18:55:03 +01:00
if(items[time].type == 'quiet') {
2016-02-19 19:55:43 +01:00
event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
2016-02-19 19:59:22 +01:00
n++;
2016-01-29 18:55:03 +01:00
}
});
2016-01-29 19:03:22 +01:00
event.reply('[\u00035warns\u000f]');
2016-02-19 19:59:22 +01:00
var n = 0;
_.each(sTimes, function(time) {
2016-01-29 18:55:03 +01:00
if(items[time].type == 'warn') {
2016-02-19 19:55:43 +01:00
event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
2016-02-19 19:59:22 +01:00
n++;
2016-01-29 18:55:03 +01:00
}
});
2016-01-29 19:03:22 +01:00
event.reply('[\u00034bans\u000f]');
2016-02-19 19:59:22 +01:00
var n = 0;
_.each(sTimes, function(time) {
2016-01-29 18:55:03 +01:00
if(items[time].type == 'ban' || items[time].type == 'unban') {
2016-02-19 19:55:43 +01:00
event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
2016-02-19 19:59:22 +01:00
n++;
2016-01-29 18:55:03 +01:00
}
});
} else {
event.reply('There are too many to show without killing everyone :S');
}
if(latest_ban.time != 0) {
if(latest_unban.time == 0 || (latest_unban.time < latest_ban.time)) {
event.reply('Current Ban Status: \u00034Banned\u000f since ' + moment(latest_ban.time).fromNow() + ' (' + moment(parseInt(latest_ban.time)).format('DD/MM/YYYY') + ')');
event.reply('Reason: ' + latest_ban.message);
} else {
var a = moment(latest_ban.time);
var b = moment(latest_unban.time);
event.reply('Current Ban Status: \u00037Unbanned\u000f since ' + moment(parseInt(latest_unban.time)).format('DD/MM/YYYY') + ' after being banned for ' + b.diff(a, 'days') + ' days');
event.reply('Most recent ban reason: ' + latest_ban.message);
}
} else {
event.reply('Current Ban Status: \u00033Never banned (\u00037probably\u00033)\u000f');
}
} else {
event.reply(user.primaryNick + ' has no record.');
}
2015-04-25 12:42:30 +02:00
});
}.bind(this));
2015-01-15 03:41:11 +01:00
} else {
event.reply('never heard of em');
}
}.bind(this));
},
2014-12-16 03:50:03 +01:00
'~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());
}
if(quiet != 0 || warn != 0) {
2014-12-16 03:50:03 +01:00
event.reply(user.primaryNick + ' has been warned ' + warn + ' times, and quieted ' + quiet + ' times.');
} else if(!ban) {
2014-12-16 03:50:03 +01:00
event.reply(user.primaryNick + ' has no record.');
}
});
} else {
event.reply('never heard of em');
}
}.bind(this));
},
2013-10-21 17:40:45 +02:00
'~clearmissing': function(event) {
if(_.has(this.pending, event.rUser.id)) {
var count = this.pending[event.rUser.id].length;
delete this.pending[event.rUser.id];
event.reply(dbot.t('cleared_notifies', { 'count': count }));
} else {
event.reply(dbot.t('no_missed_notifies'));
}
},
'~report': function(event) {
2014-09-04 17:25:21 +02:00
var channelName = (event.input[1] || event.channel.toString()),
2013-10-21 17:40:45 +02:00
nick = event.input[2],
reason = event.input[3].trim();
2014-09-04 17:25:21 +02:00
channelName = channelName.trim();
2013-10-21 17:40:45 +02:00
2014-02-04 01:58:09 +01:00
if(channelName == event.user) {
channelName = dbot.config.servers[event.server].admin_channel;
}
2013-10-21 17:40:45 +02:00
if(reason.charAt(reason.length - 1) != '.') reason += '.';
2014-09-04 16:54:49 +02:00
dbot.api.users.resolveUser(event.server, nick, function(err, reportee) {
2013-10-21 17:40:45 +02:00
if(_.has(event.allChannels, channelName)) {
if(reportee) {
this.api.notify('report', event.server, event.rUser,
channelName, dbot.t('report', {
'reporter': event.rUser.primaryNick,
'reportee': nick,
'reason': reason
}), false, nick);
2013-10-21 17:40:45 +02:00
event.reply(dbot.t('reported', { 'reported': nick }));
} else {
event.reply(dbot.t('user_not_found', {
'reported': nick,
'channel': channelName
}));
}
} else {
event.reply(dbot.t('not_in_channel', { 'channel': channelName }));
}
}.bind(this));
},
'~notify': function(event) {
var channelName = event.input[1],
message = event.input[2];
if(_.has(event.allChannels, channelName)) {
if(this.config.firstHost) {
var first = message.split(' ')[0];
2014-09-04 16:54:49 +02:00
dbot.api.users.resolveUser(event.server, first, function(err, user) {
if(user && _.include(this.config.host_lookup, channelName)) {
2013-10-21 17:40:45 +02:00
dbot.api.nickserv.getUserHost(event.server, first, function(host) {
message = message.replace(first, first + ' [' + host + ']');
2015-07-23 11:58:31 +02:00
this.api.notify('notify', event.server, event.rUser, channelName, message, host, first);
2013-10-21 17:40:45 +02:00
}.bind(this));
} else {
this.api.notify('notify', event.server, event.rUser, channelName, message);
}
}.bind(this));
} else {
this.api.notify('notify', event.server, event.rUser, channelName, message);
}
event.reply(dbot.t('notified', {
'user': event.user,
'channel': channelName
}));
} else {
event.reply(dbot.t('not_in_channel', { 'channel': channelName }));
}
},
'~nunsub': function(event) {
2014-09-15 23:12:30 +02:00
var cName = event.input[1],
cId = event.input[1] + '.' + event.server;
2013-10-21 17:40:45 +02:00
2014-09-15 23:12:30 +02:00
if(_.has(dbot.instance.connections[event.server].channels, cName)) {
this.db.read('nunsubs', cId, function(err, nunsubs) {
if(!nunsubs) {
var nunsubs = {
'id': cId,
'users': []
2013-10-21 17:40:45 +02:00
}
2014-09-15 23:12:30 +02:00
}
if(!_.include(nunsubs, event.rUser.id)) {
nunsubs.users.push(event.rUser.id);
this.db.save('nunsubs', cId, nunsubs, function() {
var reply = dbot.t('nunsubbed', { 'cName': cName })
if(_.has(this.config.chan_redirs, cName)) {
reply += dbot.t('n_also_found', { 'afaName' : this.config.chan_redirs[cName] });
}
event.reply(reply);
}.bind(this));
} else {
event.reply(dbot.t('already_nunsubbed', { 'cName': cName }));
}
}.bind(this));
} else {
event.reply('Channel not known.');
}
2013-10-21 17:40:45 +02:00
},
'~ununsub': function(event) {
2014-09-15 23:12:30 +02:00
var cName = event.input[1],
cId = event.input[1] + '.' + event.server;
if(_.has(dbot.instance.connections[event.server].channels, cName)) {
this.db.read('nunsubs', cId, function(err, nunsubs) {
if(!_.isUndefined(nunsubs) && _.include(nunsubs.users, event.rUser.id)) {
nunsubs.users = _.without(nunsubs.users, event.rUser.id);
this.db.save('nunsubs', cId, nunsubs, function() {
event.reply(dbot.t('ununsubbed', { 'cName': cName }));
});
} else {
event.reply(dbot.t('not_nunsubbed', { 'cName': cName }));
}
}.bind(this));
} else {
event.reply('Channel not known.');
}
2013-10-21 17:40:45 +02:00
}
};
2014-02-04 01:58:09 +01:00
commands['~report'].regex = /^report (#[^ ]+ )?([^ ]+) (.*)$/;
2013-12-29 19:38:24 +01:00
commands['~notify'].regex = [/^notify ([^ ]+) (.+)$/, 3];
commands['~nunsub'].regex = [/^nunsub ([^ ]+)$/, 2];
commands['~ununsub'].regex = [/^ununsub ([^ ]+)$/, 2];
2014-12-16 03:50:03 +01:00
commands['~ustatus'].regex = [/^ustatus ([^ ]+)$/, 2];
2015-01-15 03:41:11 +01:00
commands['~sustatus'].regex = [/^sustatus ([^ ]+)$/, 2];
2015-01-15 03:46:02 +01:00
commands['~ustatus'].access = 'power_user';
commands['~sustatus'].access = 'power_user';
2015-08-13 22:59:56 +02:00
commands['~ncount'].access = 'power_user';
2013-10-21 17:40:45 +02:00
return commands;
};
exports.fetch = function(dbot) {
return commands(dbot);
};