2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2016-07-03 08:39:29 +00:00
|
|
|
var Chan = require("../../models/chan");
|
2017-03-11 18:09:37 +00:00
|
|
|
var Msg = require("../../models/msg");
|
2016-07-03 08:39:29 +00:00
|
|
|
|
2016-03-14 04:21:42 +00:00
|
|
|
exports.commands = ["invite"];
|
2016-02-20 05:21:21 +00:00
|
|
|
|
2017-11-22 06:39:32 +00:00
|
|
|
exports.input = function({irc}, chan, cmd, args) {
|
2014-09-13 21:29:45 +00:00
|
|
|
if (args.length === 2) {
|
2016-03-08 13:36:25 +00:00
|
|
|
irc.raw("INVITE", args[0], args[1]); // Channel provided in the command
|
2016-07-03 08:39:29 +00:00
|
|
|
} else if (args.length === 1 && chan.type === Chan.Type.CHANNEL) {
|
2016-03-08 13:36:25 +00:00
|
|
|
irc.raw("INVITE", args[0], chan.name); // Current channel
|
2017-03-11 18:09:37 +00:00
|
|
|
} else {
|
|
|
|
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 or by specifying a target.`,
|
2017-03-11 18:09:37 +00:00
|
|
|
}));
|
2014-09-13 21:29:45 +00:00
|
|
|
}
|
|
|
|
};
|