mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-19 07:20:00 +00:00
36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import { commandTypeHelpers as ct } from "../../../commandTypes";
|
|
import { archiveSearch, displaySearch, SearchType } from "../search";
|
|
import { utilityCmd } from "../types";
|
|
|
|
// Separate from SearchCmd to avoid a circular reference from ./search.ts
|
|
export const searchCmdSignature = {
|
|
query: ct.string({ catchAll: true, required: false }),
|
|
|
|
page: ct.number({ option: true, shortcut: "p" }),
|
|
role: ct.string({ option: true, shortcut: "r" }),
|
|
voice: ct.switchOption({ def: false, shortcut: "v" }),
|
|
bot: ct.switchOption({ def: false, shortcut: "b" }),
|
|
sort: ct.string({ option: true }),
|
|
"case-sensitive": ct.switchOption({ def: false, shortcut: "cs" }),
|
|
export: ct.switchOption({ def: false, shortcut: "e" }),
|
|
ids: ct.switchOption(),
|
|
regex: ct.switchOption({ def: false, shortcut: "re" }),
|
|
"status-search": ct.switchOption({ def: false, shortcut: "ss" }),
|
|
};
|
|
|
|
export const SearchCmd = utilityCmd({
|
|
trigger: ["search", "s"],
|
|
description: "Search server members",
|
|
usage: "!search dragory",
|
|
permission: "can_search",
|
|
|
|
signature: searchCmdSignature,
|
|
|
|
run({ pluginData, message, args }) {
|
|
if (args.export) {
|
|
return archiveSearch(pluginData, args, SearchType.MemberSearch, message);
|
|
} else {
|
|
return displaySearch(pluginData, args, SearchType.MemberSearch, message);
|
|
}
|
|
},
|
|
});
|