2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2018-02-13 10:30:26 +00:00
|
|
|
const Chan = require("../../models/chan");
|
2017-11-10 20:44:14 +00:00
|
|
|
const Msg = require("../../models/msg");
|
2014-09-13 21:29:45 +00:00
|
|
|
|
|
|
|
module.exports = function(irc, network) {
|
2017-11-10 20:44:14 +00:00
|
|
|
const client = this;
|
|
|
|
|
2014-09-13 21:29:45 +00:00
|
|
|
irc.on("kick", function(data) {
|
2017-11-10 20:44:14 +00:00
|
|
|
const chan = network.getChannel(data.channel);
|
|
|
|
|
2014-09-13 21:29:45 +00:00
|
|
|
if (typeof chan === "undefined") {
|
|
|
|
return;
|
|
|
|
}
|
2014-10-04 12:31:45 +00:00
|
|
|
|
2017-11-10 20:44:14 +00: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 14:30:47 +00:00
|
|
|
|
2016-03-08 10:16:20 +00:00
|
|
|
if (data.kicked === irc.user.nick) {
|
2017-11-16 20:32:03 +00:00
|
|
|
chan.users = new Map();
|
2018-02-13 10:30:26 +00:00
|
|
|
chan.state = Chan.State.PARTED;
|
2018-07-19 18:03:53 +00:00
|
|
|
|
|
|
|
client.emit("channel:state", {
|
|
|
|
chan: chan.id,
|
|
|
|
state: chan.state,
|
|
|
|
});
|
2014-09-13 21:29:45 +00:00
|
|
|
} else {
|
2017-11-16 20:32:03 +00:00
|
|
|
chan.removeUser(msg.target);
|
2014-09-13 21:29:45 +00:00
|
|
|
}
|
2014-10-04 12:31:45 +00:00
|
|
|
|
2014-09-13 21:29:45 +00:00
|
|
|
client.emit("users", {
|
2017-11-15 06:35:15 +00:00
|
|
|
chan: chan.id,
|
2014-09-13 21:29:45 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|