2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2017-11-10 20:44:14 +00:00
|
|
|
const Msg = require("../../models/msg");
|
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) {
|
2018-01-03 16:46:48 +00:00
|
|
|
let text = "";
|
2017-11-10 20:44:14 +00:00
|
|
|
|
2018-01-03 16:46:48 +00:00
|
|
|
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;
|
2016-03-16 20:54:11 +00:00
|
|
|
}
|
2017-11-10 20:44:14 +00:00
|
|
|
|
|
|
|
const lobby = network.channels[0];
|
|
|
|
const msg = new Msg({
|
2014-09-13 21:29:45 +00:00
|
|
|
type: Msg.Type.ERROR,
|
2016-03-16 20:54:11 +00:00
|
|
|
text: text,
|
2017-07-28 08:53:36 +00:00
|
|
|
showInActive: true,
|
2014-09-13 21:29:45 +00:00
|
|
|
});
|
2016-09-25 06:41:10 +00:00
|
|
|
lobby.pushMessage(client, msg, true);
|
2016-03-08 09:54:17 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
irc.on("nick in use", function(data) {
|
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,
|
2016-04-04 18:32:21 +00:00
|
|
|
text: data.nick + ": " + (data.reason || "Nickname is already in use."),
|
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", {
|
|
|
|
network: network.id,
|
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-03-26 07:00:46 +00:00
|
|
|
irc.changeNick("thelounge" + Math.floor(Math.random() * 100));
|
2016-04-10 08:55:58 +00:00
|
|
|
}
|
2016-10-01 16:46:36 +00:00
|
|
|
|
|
|
|
client.emit("nick", {
|
|
|
|
network: network.id,
|
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
|
|
|
};
|