2022-06-18 16:25:21 -08:00
|
|
|
import {PluginInputHandler} from "./index";
|
2024-02-15 23:01:22 +01:00
|
|
|
import Msg from "../../models/msg";
|
|
|
|
import {MessageType} from "../../../shared/types/msg";
|
2024-02-24 11:13:11 +01:00
|
|
|
import {ChanType} from "../../../shared/types/chan";
|
2016-10-09 15:14:02 -04:00
|
|
|
|
2022-06-18 16:25:21 -08:00
|
|
|
const commands = ["invite", "invitelist"];
|
2016-07-03 11:39:29 +03:00
|
|
|
|
2022-06-18 16:25:21 -08:00
|
|
|
const input: PluginInputHandler = function ({irc}, chan, cmd, args) {
|
2019-04-14 14:44:44 +03:00
|
|
|
if (cmd === "invitelist") {
|
|
|
|
irc.inviteList(chan.name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-13 14:29:45 -07:00
|
|
|
if (args.length === 2) {
|
2016-03-08 15:36:25 +02:00
|
|
|
irc.raw("INVITE", args[0], args[1]); // Channel provided in the command
|
2022-06-18 16:25:21 -08:00
|
|
|
} else if (args.length === 1 && chan.type === ChanType.CHANNEL) {
|
2016-03-08 15:36:25 +02:00
|
|
|
irc.raw("INVITE", args[0], chan.name); // Current channel
|
2017-03-11 20:09:37 +02:00
|
|
|
} else {
|
2019-07-17 10:33:59 +01:00
|
|
|
chan.pushMessage(
|
|
|
|
this,
|
|
|
|
new Msg({
|
2022-06-18 16:25:21 -08:00
|
|
|
type: MessageType.ERROR,
|
2019-07-17 10:33:59 +01:00
|
|
|
text: `${cmd} command can only be used in channels or by specifying a target.`,
|
|
|
|
})
|
|
|
|
);
|
2014-09-13 14:29:45 -07:00
|
|
|
}
|
|
|
|
};
|
2022-06-18 16:25:21 -08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
commands,
|
|
|
|
input,
|
|
|
|
};
|