2022-06-19 00:25:21 +00:00
|
|
|
import {IrcEventHandler} from "../../client";
|
2016-10-09 19:14:02 +00:00
|
|
|
|
2022-06-19 00:25:21 +00:00
|
|
|
import Msg, {MessageType} from "../../models/msg";
|
2016-04-24 15:12:54 +00:00
|
|
|
|
2022-06-19 00:25:21 +00:00
|
|
|
export default <IrcEventHandler>function (irc, network) {
|
2017-11-10 20:44:14 +00:00
|
|
|
const client = this;
|
2016-04-24 15:12:54 +00:00
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
irc.on("unknown command", function (command) {
|
2019-02-22 12:04:33 +00:00
|
|
|
let target = network.channels[0];
|
|
|
|
|
2020-03-03 09:47:09 +00:00
|
|
|
// 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 08:20:29 +00:00
|
|
|
if (command.params.length > 0) {
|
2020-03-03 09:47:09 +00:00
|
|
|
// If this numeric starts with a channel name that exists
|
|
|
|
// put this message in that channel
|
|
|
|
const channel = network.getChannel(command.params[0]);
|
2019-02-22 12:04:33 +00:00
|
|
|
|
2020-03-03 09:47:09 +00:00
|
|
|
if (typeof channel !== "undefined") {
|
|
|
|
target = channel;
|
2019-02-22 12:04:33 +00:00
|
|
|
}
|
2016-04-24 15:12:54 +00:00
|
|
|
}
|
|
|
|
|
2019-07-17 09:33:59 +00:00
|
|
|
target.pushMessage(
|
|
|
|
client,
|
|
|
|
new Msg({
|
2022-06-19 00:25:21 +00:00
|
|
|
type: MessageType.UNHANDLED,
|
2019-07-17 09:33:59 +00:00
|
|
|
command: command.command,
|
|
|
|
params: command.params,
|
|
|
|
}),
|
|
|
|
true
|
|
|
|
);
|
2016-04-24 15:12:54 +00:00
|
|
|
});
|
|
|
|
};
|