2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
const Chan = require("../../models/chan");
|
|
|
|
const Msg = require("../../models/msg");
|
2017-03-11 18:09:37 +00:00
|
|
|
|
2016-03-14 04:21:42 +00:00
|
|
|
exports.commands = ["kick"];
|
2016-03-06 09:24:56 +00:00
|
|
|
|
2017-11-22 06:39:32 +00:00
|
|
|
exports.input = function({irc}, chan, cmd, args) {
|
2017-03-11 18:09:37 +00:00
|
|
|
if (chan.type !== Chan.Type.CHANNEL) {
|
|
|
|
chan.pushMessage(this, new Msg({
|
|
|
|
type: Msg.Type.ERROR,
|
2017-11-15 06:35:15 +00:00
|
|
|
text: `${cmd} command can only be used in channels.`,
|
2017-03-11 18:09:37 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-13 21:29:45 +00:00
|
|
|
if (args.length !== 0) {
|
2016-03-27 03:29:59 +00:00
|
|
|
irc.raw("KICK", chan.name, args[0], args.slice(1).join(" "));
|
2014-09-13 21:29:45 +00:00
|
|
|
}
|
2016-03-06 09:24:56 +00:00
|
|
|
|
|
|
|
return true;
|
2014-09-13 21:29:45 +00:00
|
|
|
};
|