2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2017-11-10 20:44:14 +00:00
|
|
|
const Msg = require("../../models/msg");
|
2018-04-03 14:49:22 +00:00
|
|
|
const Helper = require("../../helper");
|
2014-09-13 21:29:45 +00:00
|
|
|
|
|
|
|
module.exports = function(irc, network) {
|
2017-11-10 20:44:14 +00:00
|
|
|
const client = this;
|
2016-03-20 18:03:18 +00:00
|
|
|
|
2016-05-06 17:51:38 +00:00
|
|
|
irc.on("irc error", function(data) {
|
2017-11-10 20:44:14 +00:00
|
|
|
const msg = new Msg({
|
2014-09-13 21:29:45 +00:00
|
|
|
type: Msg.Type.ERROR,
|
2020-02-04 20:31:55 +00:00
|
|
|
error: data.error,
|
2017-07-28 08:53:36 +00:00
|
|
|
showInActive: true,
|
2020-02-04 20:31:55 +00:00
|
|
|
nick: data.nick,
|
|
|
|
channel: data.channel,
|
|
|
|
reason: data.reason,
|
|
|
|
command: data.command,
|
2014-09-13 21:29:45 +00:00
|
|
|
});
|
2019-02-22 12:04:33 +00:00
|
|
|
|
|
|
|
let target = network.channels[0];
|
|
|
|
|
|
|
|
// If this error is channel specific and a channel
|
|
|
|
// with this name exists, put this error in that channel
|
|
|
|
if (data.channel) {
|
|
|
|
const channel = network.getChannel(data.channel);
|
|
|
|
|
|
|
|
if (typeof channel !== "undefined") {
|
|
|
|
target = channel;
|
|
|
|
msg.showInActive = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
target.pushMessage(client, msg, true);
|
2016-03-08 09:54:17 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
irc.on("nick in use", function(data) {
|
2019-09-15 19:35:18 +00:00
|
|
|
let message = data.nick + ": " + (data.reason || "Nickname is already in use.");
|
|
|
|
|
|
|
|
if (irc.connection.registered === false && !Helper.config.public) {
|
|
|
|
message += " An attempt to use it will be made when this nick quits.";
|
|
|
|
|
|
|
|
// Clients usually get nick in use on connect when reconnecting to a network
|
|
|
|
// after a network failure (like ping timeout), and as a result of that,
|
|
|
|
// TL will append a random number to the nick.
|
|
|
|
// keepNick will try to set the original nick name back if it sees a QUIT for that nick.
|
|
|
|
network.keepNick = irc.user.nick;
|
|
|
|
}
|
|
|
|
|
2017-11-10 20:44:14 +00:00
|
|
|
const lobby = network.channels[0];
|
|
|
|
const msg = new Msg({
|
2016-03-08 09:54:17 +00:00
|
|
|
type: Msg.Type.ERROR,
|
2019-09-15 19:35:18 +00:00
|
|
|
text: message,
|
2017-07-28 08:53:36 +00:00
|
|
|
showInActive: true,
|
2016-03-08 09:54:17 +00:00
|
|
|
});
|
2016-09-25 06:41:10 +00:00
|
|
|
lobby.pushMessage(client, msg, true);
|
2016-03-08 09:54:17 +00:00
|
|
|
|
2016-04-10 08:55:58 +00:00
|
|
|
if (irc.connection.registered === false) {
|
2018-03-26 07:00:46 +00:00
|
|
|
const random = (data.nick || irc.user.nick) + Math.floor(Math.random() * 10);
|
2016-04-10 08:55:58 +00:00
|
|
|
irc.changeNick(random);
|
|
|
|
}
|
2016-10-01 16:46:36 +00:00
|
|
|
|
|
|
|
client.emit("nick", {
|
2018-04-26 09:06:01 +00:00
|
|
|
network: network.uuid,
|
2017-11-15 06:35:15 +00:00
|
|
|
nick: irc.user.nick,
|
2016-10-01 16:46:36 +00:00
|
|
|
});
|
2014-09-13 21:29:45 +00:00
|
|
|
});
|
2016-04-03 10:26:17 +00:00
|
|
|
|
|
|
|
irc.on("nick invalid", function(data) {
|
2017-11-10 20:44:14 +00:00
|
|
|
const lobby = network.channels[0];
|
|
|
|
const msg = new Msg({
|
2016-04-03 10:26:17 +00:00
|
|
|
type: Msg.Type.ERROR,
|
2016-04-04 18:32:21 +00:00
|
|
|
text: data.nick + ": " + (data.reason || "Nickname is invalid."),
|
2017-07-28 08:53:36 +00:00
|
|
|
showInActive: true,
|
2016-04-03 10:26:17 +00:00
|
|
|
});
|
2016-09-25 06:41:10 +00:00
|
|
|
lobby.pushMessage(client, msg, true);
|
2016-04-03 10:26:17 +00:00
|
|
|
|
2016-04-10 08:55:58 +00:00
|
|
|
if (irc.connection.registered === false) {
|
2018-04-03 14:49:22 +00:00
|
|
|
irc.changeNick(Helper.getDefaultNick());
|
2016-04-10 08:55:58 +00:00
|
|
|
}
|
2016-10-01 16:46:36 +00:00
|
|
|
|
|
|
|
client.emit("nick", {
|
2018-04-26 09:06:01 +00:00
|
|
|
network: network.uuid,
|
2017-11-15 06:35:15 +00:00
|
|
|
nick: irc.user.nick,
|
2016-10-01 16:46:36 +00:00
|
|
|
});
|
2016-04-03 10:26:17 +00:00
|
|
|
});
|
2014-09-13 21:29:45 +00:00
|
|
|
};
|