thelounge/src/plugins/irc-events/kick.js

37 lines
800 B
JavaScript
Raw Normal View History

2014-09-13 23:29:45 +02:00
var _ = require("lodash");
var Msg = require("../../models/msg");
module.exports = function(irc, network) {
var client = this;
irc.on("kick", function(data) {
var chan = _.findWhere(network.channels, {name: data.channel});
if (typeof chan === "undefined") {
return;
}
if (data.client == irc.me) {
chan.users = [];
} else {
chan.users = _.without(chan.users, _.findWhere(chan.users, {name: data.client}));
}
client.emit("users", {
chan: chan.id,
users: chan.users
});
2014-09-14 20:49:42 +02:00
var self = false;
if (data.nick.toLowerCase() == irc.me.toLowerCase()) {
self = true;
}
2014-09-13 23:29:45 +02:00
var msg = new Msg({
type: Msg.Type.KICK,
from: data.nick,
text: data.client,
2014-09-14 20:49:42 +02:00
self: self
2014-09-13 23:29:45 +02:00
});
chan.messages.push(msg);
client.emit("msg", {
chan: chan.id,
msg: msg
});
});
};