Shuo/lib/plugins/irc-events/quit.js

30 lines
671 B
JavaScript
Raw Normal View History

2014-06-29 19:41:02 +00:00
var _ = require("lodash");
var Msg = require("../../models/msg");
module.exports = function(irc, network) {
var client = this;
irc.on("quit", function(data) {
network.channels.forEach(function(chan) {
var user = _.findWhere(chan.users, {name: data.nick});
if (typeof user === "undefined") {
return;
}
chan.users = _.without(chan.users, user);
client.emit("users", {
chan: chan.id,
users: chan.users
});
var msg = new Msg({
type: Msg.Type.QUIT,
2014-07-08 20:50:41 +00:00
from: data.nick,
text: data.message
2014-06-29 19:41:02 +00:00
});
chan.messages.push(msg);
client.emit("msg", {
chan: chan.id,
msg: msg
});
});
});
2014-06-26 23:05:47 +00:00
};