Fix /mode command to correctly assume target
This commit is contained in:
parent
3a0017583b
commit
bfeaeee873
@ -2,30 +2,60 @@
|
|||||||
|
|
||||||
exports.commands = ["mode", "op", "voice", "deop", "devoice"];
|
exports.commands = ["mode", "op", "voice", "deop", "devoice"];
|
||||||
|
|
||||||
|
var Chan = require("../../models/chan");
|
||||||
|
var Msg = require("../../models/msg");
|
||||||
|
|
||||||
|
exports.commands = [
|
||||||
|
"mode",
|
||||||
|
"op",
|
||||||
|
"deop",
|
||||||
|
"hop",
|
||||||
|
"dehop",
|
||||||
|
"voice",
|
||||||
|
"devoice",
|
||||||
|
];
|
||||||
|
|
||||||
exports.input = function(network, chan, cmd, args) {
|
exports.input = function(network, chan, cmd, args) {
|
||||||
if (args.length === 0) {
|
if (cmd !== "mode") {
|
||||||
|
if (chan.type !== Chan.Type.CHANNEL) {
|
||||||
|
chan.pushMessage(this, new Msg({
|
||||||
|
type: Msg.Type.ERROR,
|
||||||
|
text: `${cmd} command can only be used in channels.`
|
||||||
|
}));
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (args.length === 0) {
|
||||||
|
chan.pushMessage(this, new Msg({
|
||||||
|
type: Msg.Type.ERROR,
|
||||||
|
text: `Usage: /${cmd} <nick> [...nick]`
|
||||||
|
}));
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const mode = {
|
||||||
|
op: "+o",
|
||||||
|
hop: "+h",
|
||||||
|
voice: "+v",
|
||||||
|
deop: "-o",
|
||||||
|
dehop: "-h",
|
||||||
|
devoice: "-v"
|
||||||
|
}[cmd];
|
||||||
|
|
||||||
|
args.forEach(function(target) {
|
||||||
|
network.irc.raw("MODE", chan.name, mode, target);
|
||||||
|
});
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var mode;
|
if (args.length === 0 || args[0][0] === "+" || args[0][0] === "-") {
|
||||||
var user;
|
args.unshift(chan.type === Chan.Type.CHANNEL || chan.type === Chan.Type.QUERY ? chan.name : network.nick);
|
||||||
if (cmd !== "mode") {
|
|
||||||
user = args[0];
|
|
||||||
mode = {
|
|
||||||
op: "+o",
|
|
||||||
voice: "+v",
|
|
||||||
deop: "-o",
|
|
||||||
devoice: "-v"
|
|
||||||
}[cmd];
|
|
||||||
} else if (args.length === 1) {
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
mode = args[0];
|
|
||||||
user = args[1];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var irc = network.irc;
|
args.unshift("MODE");
|
||||||
irc.raw("MODE", chan.name, mode, user);
|
|
||||||
|
|
||||||
return true;
|
network.irc.raw.apply(network.irc, args);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user