thelounge/server/plugins/inputs/whois.ts
Max Leiter dd05ee3a65
TypeScript and Vue 3 (#4559)
Co-authored-by: Eric Nemchik <eric@nemchik.com>
Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
2022-06-18 17:25:21 -07:00

21 lines
509 B
TypeScript

import {PluginInputHandler} from "./index";
const commands = ["whois"];
const input: PluginInputHandler = function ({irc}, chan, cmd, args) {
if (args.length === 1) {
// This queries server of the other user and not of the current user, which
// does not know idle time.
// See http://superuser.com/a/272069/208074.
irc.raw("WHOIS", args[0], args[0]);
} else {
// Re-assembling the command parsed in client.js
irc.raw(`${cmd} ${args.join(" ")}`);
}
};
export default {
commands,
input,
};