hardlounge/server/plugins/inputs/action.ts

55 lines
1.0 KiB
TypeScript
Raw Normal View History

import {PluginInputHandler} from "./index";
import Msg, {MessageType} from "../../models/msg";
import {ChanType} from "../../models/chan";
const commands = ["slap", "me"];
const input: PluginInputHandler = function ({irc}, chan, cmd, args) {
if (chan.type !== ChanType.CHANNEL && chan.type !== ChanType.QUERY) {
2019-07-17 05:33:59 -04:00
chan.pushMessage(
this,
new Msg({
type: MessageType.ERROR,
2019-07-17 05:33:59 -04:00
text: `${cmd} command can only be used in channels and queries.`,
})
);
return;
}
2018-01-11 06:33:36 -05:00
let text;
2015-09-30 18:39:57 -04:00
2014-09-13 17:29:45 -04:00
switch (cmd) {
2019-07-17 05:33:59 -04:00
case "slap":
text = "slaps " + args[0] + " around a bit with a large trout";
2014-09-13 17:29:45 -04:00
/* fall through */
2019-07-17 05:33:59 -04:00
case "me":
if (args.length === 0) {
break;
}
2015-09-30 18:39:57 -04:00
2019-07-17 05:33:59 -04:00
text = text || args.join(" ");
2016-03-08 08:36:25 -05:00
2019-07-17 05:33:59 -04:00
irc.action(chan.name, text);
2016-04-22 12:38:13 -04:00
// If the IRCd does not support echo-message, simulate the message
// being sent back to us.
2019-07-17 05:33:59 -04:00
if (!irc.network.cap.isEnabled("echo-message")) {
irc.emit("action", {
nick: irc.user.nick,
target: chan.name,
message: text,
});
}
2016-04-22 12:38:13 -04:00
2019-07-17 05:33:59 -04:00
break;
2014-09-13 17:29:45 -04:00
}
2016-03-06 04:24:56 -05:00
return true;
2014-09-13 17:29:45 -04:00
};
export default {
commands,
input,
};