thelounge/server/plugins/inputs/part.ts
Reto Brunner 8ca9ee873b use the irc connected helper function
We should not mess with irc-framework internals.
Technically we shouldn't even access the connection object,
it's not part of the documented API surface
2023-03-04 18:16:28 +01:00

55 lines
1.3 KiB
TypeScript

import {PluginInputHandler} from "./index";
import Msg, {MessageType} from "../../models/msg";
import Config from "../../config";
import {ChanType, ChanState} from "../../models/chan";
const commands = ["close", "leave", "part"];
const allowDisconnected = true;
const input: PluginInputHandler = function (network, chan, cmd, args) {
let target = chan;
if (args.length > 0) {
const newTarget = network.getChannel(args[0]);
if (typeof newTarget !== "undefined") {
// If first argument is a channel user is in, part that channel
target = newTarget;
args.shift();
}
}
if (target.type === ChanType.LOBBY) {
chan.pushMessage(
this,
new Msg({
type: MessageType.ERROR,
text: "You can not part from networks, use /quit instead.",
})
);
return;
}
// If target is not a channel or we are not connected, instantly remove the channel
// Otherwise send part to the server and wait for response
if (
target.type !== ChanType.CHANNEL ||
target.state === ChanState.PARTED ||
!network.irc.connected
) {
this.part(network, target);
} else {
const partMessage = args.join(" ") || network.leaveMessage || Config.values.leaveMessage;
network.irc.part(target.name, partMessage);
}
return true;
};
export default {
commands,
input,
allowDisconnected,
};