2022-06-18 16:25:21 -08:00
|
|
|
import {IrcEventHandler} from "../../client";
|
2016-10-09 15:14:02 -04:00
|
|
|
|
2022-06-18 16:25:21 -08:00
|
|
|
import Msg, {MessageType} from "../../models/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("nick", function (data) {
|
2017-11-10 22:44:14 +02:00
|
|
|
const self = data.nick === irc.user.nick;
|
|
|
|
|
|
|
|
if (self) {
|
2016-05-12 14:15:38 +03:00
|
|
|
network.setNick(data.new_nick);
|
|
|
|
|
2023-02-27 18:30:33 +01:00
|
|
|
const lobby = network.getLobby();
|
2018-04-27 13:16:23 +03:00
|
|
|
const msg = new Msg({
|
2022-06-18 16:25:21 -08:00
|
|
|
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
|
2017-11-10 22:44:14 +02:00
|
|
|
text: `You're now known as ${data.new_nick}`,
|
2014-09-13 14:29:45 -07:00
|
|
|
});
|
2016-09-25 09:41:10 +03:00
|
|
|
lobby.pushMessage(client, msg, true);
|
2017-11-10 22:44:14 +02:00
|
|
|
|
2014-10-12 01:59:01 +02:00
|
|
|
client.save();
|
2014-09-25 16:51:53 -07:00
|
|
|
client.emit("nick", {
|
2018-04-26 12:06:01 +03:00
|
|
|
network: network.uuid,
|
2017-11-15 01:35:15 -05:00
|
|
|
nick: data.new_nick,
|
2014-09-25 16:51:53 -07:00
|
|
|
});
|
2014-09-13 14:29:45 -07:00
|
|
|
}
|
2016-03-08 11:58:51 +02:00
|
|
|
|
2017-04-08 15:34:31 +03:00
|
|
|
network.channels.forEach((chan) => {
|
2017-07-11 17:30:47 +03:00
|
|
|
const user = chan.findUser(data.nick);
|
2017-11-10 22:44:14 +02:00
|
|
|
|
2014-09-13 14:29:45 -07:00
|
|
|
if (typeof user === "undefined") {
|
|
|
|
return;
|
|
|
|
}
|
2017-11-10 22:44:14 +02:00
|
|
|
|
2018-04-27 13:16:23 +03:00
|
|
|
const msg = new Msg({
|
2016-03-12 11:36:55 +02:00
|
|
|
time: data.time,
|
2017-11-10 22:44:14 +02:00
|
|
|
from: user,
|
2022-06-18 16:25:21 -08:00
|
|
|
type: MessageType.NICK,
|
2016-03-29 22:09:56 +03:00
|
|
|
new_nick: data.new_nick,
|
2014-09-13 14:29:45 -07:00
|
|
|
});
|
2016-04-19 13:20:18 +03:00
|
|
|
chan.pushMessage(client, msg);
|
2017-11-10 22:44:14 +02:00
|
|
|
|
2017-11-29 01:44:19 -05:00
|
|
|
chan.removeUser(user);
|
2017-11-10 22:44:14 +02:00
|
|
|
user.nick = data.new_nick;
|
2017-11-29 01:44:19 -05:00
|
|
|
chan.setUser(user);
|
2017-11-10 22:44:14 +02:00
|
|
|
|
|
|
|
client.emit("users", {
|
|
|
|
chan: chan.id,
|
|
|
|
});
|
2014-09-13 14:29:45 -07:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|