thelounge/src/plugins/inputs/invite.js

20 lines
573 B
JavaScript
Raw Normal View History

"use strict";
var Chan = require("../../models/chan");
var Msg = require("../../models/msg");
exports.commands = ["invite"];
exports.input = function({irc}, chan, cmd, args) {
2014-09-13 23:29:45 +02:00
if (args.length === 2) {
2016-03-08 14:36:25 +01:00
irc.raw("INVITE", args[0], args[1]); // Channel provided in the command
} else if (args.length === 1 && chan.type === Chan.Type.CHANNEL) {
2016-03-08 14:36:25 +01:00
irc.raw("INVITE", args[0], chan.name); // Current channel
} else {
chan.pushMessage(this, new Msg({
type: Msg.Type.ERROR,
text: `${cmd} command can only be used in channels or by specifying a target.`,
}));
2014-09-13 23:29:45 +02:00
}
};