thelounge/src/plugins/irc-events/nick.js
2020-03-21 22:55:36 +02:00

52 lines
963 B
JavaScript

"use strict";
const Msg = require("../../models/msg");
module.exports = function (irc, network) {
const client = this;
irc.on("nick", function (data) {
const self = data.nick === irc.user.nick;
if (self) {
network.setNick(data.new_nick);
const lobby = network.channels[0];
const msg = new Msg({
text: `You're now known as ${data.new_nick}`,
});
lobby.pushMessage(client, msg, true);
client.save();
client.emit("nick", {
network: network.uuid,
nick: data.new_nick,
});
}
network.channels.forEach((chan) => {
const user = chan.findUser(data.nick);
if (typeof user === "undefined") {
return;
}
const msg = new Msg({
time: data.time,
from: user,
type: Msg.Type.NICK,
new_nick: data.new_nick,
});
chan.pushMessage(client, msg);
chan.removeUser(user);
user.nick = data.new_nick;
chan.setUser(user);
client.emit("users", {
chan: chan.id,
});
});
});
};