thelounge/src/plugins/inputs/invite.ts

34 lines
790 B
TypeScript
Raw Normal View History

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