thelounge/src/plugins/irc-events/error.js

85 lines
1.9 KiB
JavaScript
Raw Normal View History

"use strict";
const Msg = require("../../models/msg");
const Helper = require("../../helper");
2014-09-13 23:29:45 +02:00
module.exports = function(irc, network) {
const client = this;
2016-05-06 19:51:38 +02:00
irc.on("irc error", function(data) {
let text = "";
if (data.channel) {
text = `${data.channel}: `;
}
if (data.error === "user_on_channel") {
text += `User (${data.nick}) is already on channel`;
} else if (data.reason) {
text += `${data.reason} (${data.error})`;
} else {
text += data.error;
}
const msg = new Msg({
2014-09-13 23:29:45 +02:00
type: Msg.Type.ERROR,
text: text,
2017-07-28 10:53:36 +02:00
showInActive: true,
2014-09-13 23:29:45 +02: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 10:54:17 +01:00
});
irc.on("nick in use", function(data) {
const lobby = network.channels[0];
const msg = new Msg({
2016-03-08 10:54:17 +01:00
type: Msg.Type.ERROR,
2016-04-04 20:32:21 +02:00
text: data.nick + ": " + (data.reason || "Nickname is already in use."),
2017-07-28 10:53:36 +02:00
showInActive: true,
2016-03-08 10:54:17 +01:00
});
lobby.pushMessage(client, msg, true);
2016-03-08 10:54:17 +01:00
if (irc.connection.registered === false) {
const random = (data.nick || irc.user.nick) + Math.floor(Math.random() * 10);
irc.changeNick(random);
}
client.emit("nick", {
network: network.uuid,
nick: irc.user.nick,
});
2014-09-13 23:29:45 +02:00
});
irc.on("nick invalid", function(data) {
const lobby = network.channels[0];
const msg = new Msg({
type: Msg.Type.ERROR,
2016-04-04 20:32:21 +02:00
text: data.nick + ": " + (data.reason || "Nickname is invalid."),
2017-07-28 10:53:36 +02:00
showInActive: true,
});
lobby.pushMessage(client, msg, true);
if (irc.connection.registered === false) {
irc.changeNick(Helper.getDefaultNick());
}
client.emit("nick", {
network: network.uuid,
nick: irc.user.nick,
});
});
2014-09-13 23:29:45 +02:00
};