dbot/modules/report/report.js

207 lines
8.0 KiB
JavaScript
Raw Normal View History

2013-07-06 20:45:21 +02:00
var _ = require('underscore')._,
2013-07-14 16:55:15 +02:00
uuid = require('node-uuid'),
async = require('async');
var report = function(dbot) {
2013-07-14 16:55:15 +02:00
if(!dbot.db.pending) dbot.db.pending = {};
if(!dbot.db.pNotify) dbot.db.pNotify = {};
2013-07-14 16:55:15 +02:00
this.pending = dbot.db.pending;
this.pNotify = dbot.db.pNotify;
2013-07-14 16:55:15 +02:00
2013-08-18 17:19:15 +02:00
this.internalAPI = {
'notify': function(server, users, message) {
2013-08-26 00:11:26 +02:00
var count = 0;
2013-08-18 17:19:15 +02:00
async.eachSeries(users, function(nick, next) {
2013-08-26 00:11:26 +02:00
count++;
console.log(nick + ' ' + count);
//dbot.say(server, nick, message);
2013-08-18 17:19:15 +02:00
setTimeout(function() {
next();
2013-08-26 00:05:50 +02:00
}, 2000);
2013-08-18 17:19:15 +02:00
});
}
};
this.api = {
'notify': function(server, channel, message) {
var channel = dbot.instance.connections[server].channels[channel];
var ops = _.filter(channel.nicks, function(user) {
if(this.config.notifyVoice) {
return user.op || user.voice;
} else {
return user.op;
}
}, this);
2013-08-17 21:07:48 +02:00
dbot.api.users.resolveChannel(server, channel, function(channel) {
2013-07-14 16:55:15 +02:00
if(channel) {
var perOps = channel.op;
if(this.config.notifyVoice) pOps = _.union(perOps, channel.voice);
async.eachSeries(ops, function(nick, next) {
dbot.api.users.resolveUser(server, nick, function(user) {
perOps = _.without(perOps, user.id); next();
});
}, function() {
offlineUsers = perOps;
_.each(offlineUsers, function(id) {
if(!this.pending[id]) this.pending[id] = [];
this.pending[id].push({
'time': new Date().getTime(),
'message': message
});
this.pNotify[id] = true;
2013-07-14 16:55:15 +02:00
}.bind(this));
2013-08-18 17:19:15 +02:00
this.internalAPI.notify(server, _.pluck(ops, 'name'), message);
2013-07-14 16:55:15 +02:00
}.bind(this));
}
}.bind(this));
2013-08-18 17:19:15 +02:00
},
2013-07-14 16:55:15 +02:00
2013-08-18 17:19:15 +02:00
'notifyUsers': function(server, users, message) {
this.internalAPI.notify(server, users, message);
}
};
2013-07-14 16:55:15 +02:00
this.listener = function(event) {
if(_.has(this.pending, event.rUser.id) && this.pNotify[event.rUser.id] === true) {
dbot.say(event.server, event.user, dbot.t('missed_notifies', {
'user': event.rUser.primaryNick,
2013-08-24 21:39:02 +02:00
'link': dbot.api.web.getUrl('notify/' + event.server + '/missing')
}));
2013-08-21 22:38:51 +02:00
this.pNotify[event.rUser.id] = false;
2013-07-14 16:55:15 +02:00
}
}.bind(this);
this.on = 'JOIN';
var commands = {
'~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) {
2013-06-27 21:16:18 +02:00
var channelName = event.input[1],
2013-07-14 16:55:15 +02:00
nick = event.input[2],
reason = event.input[3].trim();
if(reason.charAt(reason.length - 1) != '.') reason += '.';
2013-06-27 21:16:18 +02:00
dbot.api.users.resolveUser(event.server, nick, function(reportee) {
if(_.has(event.allChannels, channelName)) {
if(reportee) {
2013-08-21 23:10:06 +02:00
var notifier = '[' + event.user + ']',
cChan = channelName,
type = 'report',
reporter = event.user;
if(_.has(this.config.colours, event.server)) {
var colours = this.config.colours[event.server];
reporter = colours['nicks'] + reporter + '\u000f';
nick = colours['nicks'] + nick + '\u000f';
type = colours['type'][type] + type + '\u000f';
if(_.has(colours['channels'], channelName)) {
cChan = colours['channels'][channelName] +
cChan + "\u000f";
}
}
2013-06-27 21:16:18 +02:00
this.api.notify(event.server, channelName, dbot.t('report', {
2013-08-21 23:10:06 +02:00
'type': type,
'reporter': reporter,
2013-06-27 21:16:18 +02:00
'reported': nick,
2013-08-21 23:10:06 +02:00
'channel': cChan,
2013-06-27 21:16:18 +02:00
'reason': reason
}));
event.reply(dbot.t('reported', { 'reported': nick }));
} else {
event.reply(dbot.t('user_not_found', {
'reported': nick,
'channel': channelName
}));
}
} else {
2013-06-27 21:16:18 +02:00
event.reply(dbot.t('not_in_channel', { 'channel': channelName }));
}
}.bind(this));
2013-06-02 15:34:51 +02:00
},
'~notify': function(event) {
2013-06-27 21:16:18 +02:00
var channelName = event.input[1],
message = event.input[2];
2013-06-02 15:34:51 +02:00
if(_.has(event.allChannels, channelName)) {
2013-07-06 20:45:21 +02:00
var id = uuid.v4();
this.db.save('notifies', id, {
'id': id,
'server': event.server,
'channel': channelName,
2013-08-24 19:39:04 +02:00
'user': event.rUser.id,
2013-07-06 20:45:21 +02:00
'time': new Date().getTime(),
'message': message
}, function() {});
2013-08-21 21:51:41 +02:00
var notifier = '[' + event.user + ']',
2013-08-21 21:10:10 +02:00
cChan = channelName,
type = 'notify';
2013-08-21 20:12:43 +02:00
if(_.has(this.config.colours, event.server)) {
2013-08-21 20:32:12 +02:00
var colours = this.config.colours[event.server];
2013-08-21 20:12:43 +02:00
2013-08-21 21:51:41 +02:00
notifier = '[' + colours['nicks'] + event.user + '\u000f]';
2013-08-21 23:10:06 +02:00
type = colours['type'][type] + type + '\u000f';
2013-08-21 20:12:43 +02:00
if(_.has(colours['channels'], channelName)) {
cChan = colours['channels'][channelName] +
cChan + "\u000f";
2013-08-21 20:12:43 +02:00
}
2013-08-21 21:14:55 +02:00
_.each(message.match(/ @([\d\w*|-]+)/g), function(user) {
user = user.substr(1);
message = message.replace(user, colours['nicks'] + user + "\u000f");
notifier += '[' + colours['nicks'] + user.substr(1) + '\u000f]';
2013-08-21 21:26:45 +02:00
});
2013-08-21 20:12:43 +02:00
}
this.api.notify(event.server, channelName, dbot.t('notify', {
2013-08-21 21:10:10 +02:00
'type': type,
'channel': cChan,
2013-08-21 20:12:43 +02:00
'notifier': notifier,
'message': message
}));
2013-06-02 15:34:51 +02:00
event.reply(dbot.t('notified', {
'user': event.user,
'channel': channelName
}));
} else {
event.reply(dbot.t('not_in_channel', { 'channel': channelName }));
}
}
};
commands['~report'].regex = [/^~report ([^ ]+) ([^ ]+) (.+)$/, 4];
2013-06-02 15:34:51 +02:00
commands['~notify'].regex = [/^~notify ([^ ]+) (.+)$/, 3];
this.commands = commands;
this.onLoad = function() {
if(_.has(dbot.modules, 'web')) {
dbot.api.web.addIndexLink('/notify', 'Notifications');
}
2013-08-24 22:42:30 +02:00
dbot.api.event.addHook('~mergeusers', function(server, oldUser, newUser) {
this.db.search('notifies', { 'user': oldUser.id }, function(notify) {
notify.user = newUser.id;
this.db.save('notifies', notify.id, notify, function() {});
}.bind(this), function() {});
}.bind(this));
}.bind(this);
};
exports.fetch = function(dbot) {
return new report(dbot);
};