2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
const Msg = require("../../models/msg");
|
2016-10-01 17:04:03 +00:00
|
|
|
|
|
|
|
exports.commands = ["nick"];
|
|
|
|
exports.allowDisconnected = true;
|
|
|
|
|
|
|
|
exports.input = function(network, chan, cmd, args) {
|
|
|
|
if (args.length === 0) {
|
|
|
|
chan.pushMessage(this, new Msg({
|
|
|
|
type: Msg.Type.ERROR,
|
2017-11-15 06:35:15 +00:00
|
|
|
text: "Usage: /nick <your new nick>",
|
2016-10-01 17:04:03 +00:00
|
|
|
}));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.length !== 1) {
|
|
|
|
chan.pushMessage(this, new Msg({
|
|
|
|
type: Msg.Type.ERROR,
|
2017-11-15 06:35:15 +00:00
|
|
|
text: "Nicknames may not contain spaces.",
|
2016-10-01 17:04:03 +00:00
|
|
|
}));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
const newNick = args[0];
|
2016-10-01 17:04:03 +00:00
|
|
|
|
2018-10-20 11:10:26 +00:00
|
|
|
if (newNick.length > 100) {
|
|
|
|
chan.pushMessage(this, new Msg({
|
|
|
|
type: Msg.Type.ERROR,
|
|
|
|
text: "Nicknames may not be this long.",
|
|
|
|
}));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-10-01 17:04:03 +00:00
|
|
|
// If connected to IRC, send to server and wait for ACK
|
|
|
|
// otherwise update the nick and UI straight away
|
|
|
|
if (network.irc && network.irc.connection) {
|
|
|
|
network.irc.raw("NICK", newNick);
|
|
|
|
} else {
|
|
|
|
network.setNick(newNick);
|
|
|
|
|
|
|
|
this.emit("nick", {
|
2018-04-26 09:06:01 +00:00
|
|
|
network: network.uuid,
|
2017-11-15 06:35:15 +00:00
|
|
|
nick: newNick,
|
2016-10-01 17:04:03 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|