thelounge/server/plugins/irc-events/unhandled.ts

39 lines
949 B
TypeScript
Raw Permalink Normal View History

import {IrcEventHandler} from "../../client";
2024-02-15 23:01:22 +01:00
import Msg from "../../models/msg";
import {MessageType} from "../../../shared/types/msg";
export default <IrcEventHandler>function (irc, network) {
const client = this;
irc.on("unknown command", function (command) {
let target = network.getLobby();
// Do not display users own name
if (command.params.length > 0 && command.params[0] === network.irc.user.nick) {
command.params.shift();
}
// Check the length again because we may shift the nick above
2019-07-03 10:20:29 +02:00
if (command.params.length > 0) {
// If this numeric starts with a channel name that exists
// put this message in that channel
const channel = network.getChannel(command.params[0]);
if (typeof channel !== "undefined") {
target = channel;
}
}
2019-07-17 11:33:59 +02:00
target.pushMessage(
client,
new Msg({
type: MessageType.UNHANDLED,
2019-07-17 11:33:59 +02:00
command: command.command,
params: command.params,
}),
true
);
});
};