hardlounge/server/plugins/irc-events/quit.ts

35 lines
792 B
TypeScript
Raw Normal View History

import {IrcEventHandler} from "../../client";
import Msg, {MessageType} from "../../models/msg";
2014-09-13 17:29:45 -04:00
export default <IrcEventHandler>function (irc, network) {
const client = this;
irc.on("quit", function (data) {
network.channels.forEach((chan) => {
2017-07-11 10:30:47 -04:00
const user = chan.findUser(data.nick);
2014-09-13 17:29:45 -04:00
if (typeof user === "undefined") {
return;
}
const msg = new Msg({
2016-03-12 04:36:55 -05:00
time: data.time,
type: MessageType.QUIT,
2016-02-23 11:22:41 -05:00
text: data.message || "",
hostmask: data.ident + "@" + data.hostname,
from: user,
2014-09-13 17:29:45 -04:00
});
chan.pushMessage(client, msg);
2017-11-16 15:32:03 -05:00
chan.removeUser(user);
2014-09-13 17:29:45 -04:00
});
2019-09-15 15:35:18 -04: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 17:29:45 -04:00
});
};