2022-06-18 16:25:21 -08:00
|
|
|
import {IrcEventHandler} from "../../client";
|
2016-10-09 15:14:02 -04:00
|
|
|
|
2024-02-15 23:01:22 +01:00
|
|
|
import Msg from "../../models/msg";
|
|
|
|
import {MessageType} from "../../../shared/types/msg";
|
2014-09-13 14:29:45 -07:00
|
|
|
|
2022-06-18 16:25:21 -08:00
|
|
|
export default <IrcEventHandler>function (irc, network) {
|
2017-11-10 22:44:14 +02:00
|
|
|
const client = this;
|
|
|
|
|
2020-03-21 22:55:36 +02:00
|
|
|
irc.on("part", function (data) {
|
2022-06-18 16:25:21 -08:00
|
|
|
if (!data.channel) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:44:14 +02:00
|
|
|
const chan = network.getChannel(data.channel);
|
|
|
|
|
2014-09-13 14:29:45 -07:00
|
|
|
if (typeof chan === "undefined") {
|
|
|
|
return;
|
|
|
|
}
|
2017-11-10 22:44:14 +02:00
|
|
|
|
2019-01-21 18:07:00 +02:00
|
|
|
const user = chan.getUser(data.nick);
|
|
|
|
const msg = new Msg({
|
2022-06-18 16:25:21 -08:00
|
|
|
type: MessageType.PART,
|
2019-01-21 18:07:00 +02:00
|
|
|
time: data.time,
|
|
|
|
text: data.message || "",
|
|
|
|
hostmask: data.ident + "@" + data.hostname,
|
|
|
|
from: user,
|
|
|
|
self: data.nick === irc.user.nick,
|
|
|
|
});
|
|
|
|
chan.pushMessage(client, msg);
|
|
|
|
|
2017-11-10 22:44:14 +02:00
|
|
|
if (data.nick === irc.user.nick) {
|
2021-12-29 15:46:06 +01:00
|
|
|
client.part(network, chan);
|
2014-09-13 14:29:45 -07:00
|
|
|
} else {
|
2017-11-16 22:32:03 +02:00
|
|
|
chan.removeUser(user);
|
2014-09-13 14:29:45 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|