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

44 lines
885 B
JavaScript
Raw Normal View History

"use strict";
const Chan = require("../../models/chan");
const Msg = require("../../models/msg");
2014-09-13 23:29:45 +02:00
module.exports = function (irc, network) {
const client = this;
irc.on("kick", function (data) {
const chan = network.getChannel(data.channel);
2014-09-13 23:29:45 +02:00
if (typeof chan === "undefined") {
return;
}
2014-10-04 14:31:45 +02:00
const msg = new Msg({
type: Msg.Type.KICK,
time: data.time,
from: chan.getUser(data.nick),
target: chan.getUser(data.kicked),
text: data.message || "",
highlight: data.kicked === irc.user.nick,
self: data.nick === irc.user.nick,
});
chan.pushMessage(client, msg);
2017-07-11 16:30:47 +02:00
2016-03-08 11:16:20 +01:00
if (data.kicked === irc.user.nick) {
2017-11-16 21:32:03 +01:00
chan.users = new Map();
chan.state = Chan.State.PARTED;
client.emit("channel:state", {
chan: chan.id,
state: chan.state,
});
2014-09-13 23:29:45 +02:00
} else {
2017-11-16 21:32:03 +01:00
chan.removeUser(msg.target);
2014-09-13 23:29:45 +02:00
}
2014-10-04 14:31:45 +02:00
2014-09-13 23:29:45 +02:00
client.emit("users", {
chan: chan.id,
2014-09-13 23:29:45 +02:00
});
});
};