2016-03-24 20:40:36 +00:00
|
|
|
var _ = require("lodash");
|
|
|
|
var Chan = require("../../models/chan");
|
2016-03-26 20:03:31 +00:00
|
|
|
var Msg = require("../../models/msg");
|
2016-03-24 20:40:36 +00:00
|
|
|
|
|
|
|
exports.commands = ["query"];
|
|
|
|
|
|
|
|
exports.input = function(network, chan, cmd, args) {
|
|
|
|
if (args.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var target = args[0];
|
|
|
|
var query = _.find(network.channels, {name: target});
|
|
|
|
if (typeof query !== "undefined") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-26 20:03:31 +00:00
|
|
|
var char = target[0];
|
|
|
|
if (network.irc.network.options.CHANTYPES && network.irc.network.options.CHANTYPES.indexOf(char) !== -1) {
|
2016-04-19 10:20:18 +00:00
|
|
|
chan.pushMessage(this, new Msg({
|
|
|
|
type: Msg.Type.ERROR,
|
|
|
|
text: "You can not open query windows for channels, use /join instead."
|
|
|
|
}));
|
2016-03-26 17:18:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-26 20:03:31 +00:00
|
|
|
for (var i = 0; i < network.irc.network.options.PREFIX.length; i++) {
|
|
|
|
if (network.irc.network.options.PREFIX[i].symbol === char) {
|
2016-04-19 10:20:18 +00:00
|
|
|
chan.pushMessage(this, new Msg({
|
|
|
|
type: Msg.Type.ERROR,
|
|
|
|
text: "You can not open query windows for names starting with a user prefix."
|
|
|
|
}));
|
2016-03-26 20:03:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-24 20:40:36 +00:00
|
|
|
var newChan = new Chan({
|
|
|
|
type: Chan.Type.QUERY,
|
|
|
|
name: target
|
|
|
|
});
|
|
|
|
network.channels.push(newChan);
|
|
|
|
this.emit("join", {
|
|
|
|
network: network.id,
|
|
|
|
chan: newChan
|
|
|
|
});
|
|
|
|
};
|