2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2017-11-10 20:44:14 +00:00
|
|
|
const Msg = require("../../models/msg");
|
2014-09-13 21:29:45 +00:00
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
module.exports = function (irc, network) {
|
2017-11-10 20:44:14 +00:00
|
|
|
const client = this;
|
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
irc.on("quit", function (data) {
|
2017-04-08 12:34:31 +00:00
|
|
|
network.channels.forEach((chan) => {
|
2017-07-11 14:30:47 +00:00
|
|
|
const user = chan.findUser(data.nick);
|
2017-11-10 20:44:14 +00:00
|
|
|
|
2014-09-13 21:29:45 +00:00
|
|
|
if (typeof user === "undefined") {
|
|
|
|
return;
|
|
|
|
}
|
2017-11-10 20:44:14 +00:00
|
|
|
|
|
|
|
const msg = new Msg({
|
2016-03-12 09:36:55 +00:00
|
|
|
time: data.time,
|
2014-09-13 21:29:45 +00:00
|
|
|
type: Msg.Type.QUIT,
|
2016-02-23 16:22:41 +00:00
|
|
|
text: data.message || "",
|
2016-03-08 09:26:43 +00:00
|
|
|
hostmask: data.ident + "@" + data.hostname,
|
2017-11-10 20:44:14 +00:00
|
|
|
from: user,
|
2014-09-13 21:29:45 +00:00
|
|
|
});
|
2016-04-19 10:20:18 +00:00
|
|
|
chan.pushMessage(client, msg);
|
2017-11-10 20:44:14 +00:00
|
|
|
|
2017-11-16 20:32:03 +00:00
|
|
|
chan.removeUser(user);
|
2014-09-13 21:29:45 +00:00
|
|
|
});
|
2019-09-15 19:35:18 +00:00
|
|
|
|
|
|
|
// If user with the nick we are trying to keep has quit, try to get this nick
|
|
|
|
if (network.keepNick === data.nick) {
|
|
|
|
irc.changeNick(network.keepNick);
|
|
|
|
network.keepNick = null;
|
|
|
|
}
|
2014-09-13 21:29:45 +00:00
|
|
|
});
|
|
|
|
};
|