2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2016-05-16 14:22:03 +00:00
|
|
|
var Msg = require("../../models/msg");
|
|
|
|
|
2016-03-14 04:21:42 +00:00
|
|
|
exports.commands = ["connect", "server"];
|
2016-04-03 09:58:59 +00:00
|
|
|
exports.allowDisconnected = true;
|
2016-03-06 09:24:56 +00:00
|
|
|
|
2017-11-22 06:39:32 +00:00
|
|
|
exports.input = function({irc}, chan, cmd, args) {
|
2016-03-20 17:35:20 +00:00
|
|
|
if (args.length === 0) {
|
2017-11-22 06:39:32 +00:00
|
|
|
if (!irc || !irc.connection) {
|
2016-05-16 14:22:03 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-22 06:39:32 +00:00
|
|
|
if (irc.connection.connected) {
|
2016-05-16 14:22:03 +00:00
|
|
|
chan.pushMessage(this, new Msg({
|
|
|
|
type: Msg.Type.ERROR,
|
2017-11-15 06:35:15 +00:00
|
|
|
text: "You are already connected.",
|
2016-05-16 14:22:03 +00:00
|
|
|
}));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-22 06:39:32 +00:00
|
|
|
irc.connection.connect();
|
2016-05-16 14:22:03 +00:00
|
|
|
|
2016-03-20 17:35:20 +00:00
|
|
|
return;
|
2014-09-13 21:29:45 +00:00
|
|
|
}
|
2016-03-06 09:24:56 +00:00
|
|
|
|
2016-03-20 17:35:20 +00:00
|
|
|
var port = args[1] || "";
|
|
|
|
var tls = port[0] === "+";
|
|
|
|
|
|
|
|
if (tls) {
|
|
|
|
port = port.substring(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.connect({
|
|
|
|
host: args[0],
|
|
|
|
port: port,
|
|
|
|
tls: tls,
|
|
|
|
});
|
|
|
|
|
2016-03-06 09:24:56 +00:00
|
|
|
return true;
|
2014-09-13 21:29:45 +00:00
|
|
|
};
|