mirror of
https://github.com/thelounge/thelounge
synced 2024-12-04 01:39:14 +00:00
57 lines
1 KiB
JavaScript
57 lines
1 KiB
JavaScript
"use strict";
|
|
|
|
const Chan = require("../../models/chan");
|
|
const Msg = require("../../models/msg");
|
|
|
|
exports.commands = ["mode", "op", "deop", "hop", "dehop", "voice", "devoice"];
|
|
|
|
exports.input = function({irc, nick}, chan, cmd, args) {
|
|
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) {
|
|
irc.raw("MODE", chan.name, mode, target);
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
if (args.length === 0 || args[0][0] === "+" || args[0][0] === "-") {
|
|
args.unshift(
|
|
chan.type === Chan.Type.CHANNEL || chan.type === Chan.Type.QUERY ? chan.name : nick
|
|
);
|
|
}
|
|
|
|
irc.raw("MODE", ...args);
|
|
};
|