thelounge/src/plugins/inputs/mode.js

58 lines
1 KiB
JavaScript
Raw Normal View History

"use strict";
2018-01-11 12:33:36 +01:00
const Chan = require("../../models/chan");
const Msg = require("../../models/msg");
2019-07-17 11:33:59 +02:00
exports.commands = ["mode", "op", "deop", "hop", "dehop", "voice", "devoice"];
2015-10-01 00:39:57 +02:00
exports.input = function({irc, nick}, chan, cmd, args) {
2015-10-01 00:39:57 +02:00
if (cmd !== "mode") {
if (chan.type !== Chan.Type.CHANNEL) {
2019-07-17 11:33:59 +02:00
chan.pushMessage(
this,
new Msg({
type: Msg.Type.ERROR,
text: `${cmd} command can only be used in channels.`,
})
);
return;
}
2017-04-24 12:40:53 +02:00
if (args.length === 0) {
2019-07-17 11:33:59 +02:00
chan.pushMessage(
this,
new Msg({
type: Msg.Type.ERROR,
text: `Usage: /${cmd} <nick> [...nick]`,
})
);
return;
}
const mode = {
2016-10-09 10:54:44 +02:00
op: "+o",
hop: "+h",
2016-10-09 10:54:44 +02:00
voice: "+v",
deop: "-o",
dehop: "-h",
devoice: "-v",
2014-09-13 23:29:45 +02:00
}[cmd];
args.forEach(function(target) {
irc.raw("MODE", chan.name, mode, target);
});
return;
}
if (args.length === 0 || args[0][0] === "+" || args[0][0] === "-") {
2019-07-17 11:33:59 +02:00
args.unshift(
chan.type === Chan.Type.CHANNEL || chan.type === Chan.Type.QUERY ? chan.name : nick
);
2014-09-13 23:29:45 +02:00
}
2016-03-08 14:36:25 +01:00
irc.raw("MODE", ...args);
2014-09-13 23:29:45 +02:00
};