2022-06-19 00:25:21 +00:00
|
|
|
import {PluginInputHandler} from "./index";
|
|
|
|
import Msg, {MessageType} from "../../models/msg";
|
|
|
|
import {ChanType} from "../../models/chan";
|
2016-10-09 19:14:02 +00:00
|
|
|
|
2022-06-19 00:25:21 +00:00
|
|
|
const commands = ["invite", "invitelist"];
|
2016-07-03 08:39:29 +00:00
|
|
|
|
2022-06-19 00:25:21 +00:00
|
|
|
const input: PluginInputHandler = function ({irc}, chan, cmd, args) {
|
2019-04-14 11:44:44 +00:00
|
|
|
if (cmd === "invitelist") {
|
|
|
|
irc.inviteList(chan.name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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
|
2022-06-19 00:25:21 +00:00
|
|
|
} else if (args.length === 1 && chan.type === ChanType.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 {
|
2019-07-17 09:33:59 +00:00
|
|
|
chan.pushMessage(
|
|
|
|
this,
|
|
|
|
new Msg({
|
2022-06-19 00:25:21 +00:00
|
|
|
type: MessageType.ERROR,
|
2019-07-17 09:33:59 +00:00
|
|
|
text: `${cmd} command can only be used in channels or by specifying a target.`,
|
|
|
|
})
|
|
|
|
);
|
2014-09-13 21:29:45 +00:00
|
|
|
}
|
|
|
|
};
|
2022-06-19 00:25:21 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
commands,
|
|
|
|
input,
|
|
|
|
};
|