Compare commits
2 Commits
3cba522baa
...
02b22486c7
Author | SHA1 | Date | |
---|---|---|---|
02b22486c7 | |||
f9ea8b23c4 |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@navy.gif/commandparser",
|
||||
"version": "1.6.5",
|
||||
"version": "1.6.6",
|
||||
"description": "Parser meant to parse commands and their options for discord bots",
|
||||
"author": "Navy.gif",
|
||||
"license": "MIT",
|
||||
|
@ -10,7 +10,7 @@ import { ICommand } from '../index.js';
|
||||
import { ParserError } from './util/Errors/ParserError.js';
|
||||
|
||||
type ArgsResult = {
|
||||
[key: string]: CommandOption
|
||||
[key: string]: CommandOption | undefined
|
||||
}
|
||||
|
||||
type ParseResult = {
|
||||
@ -36,7 +36,7 @@ type ParseOptions = {
|
||||
commandFound?: <Cmd extends ICommand>(cmd: Cmd) => boolean | Promise<boolean>
|
||||
}
|
||||
|
||||
const flagReg = /(?:^| )(?<flag>(?:--[a-z0-9]{3,})|(?:-[a-z]{1,2}))(?:$| )/iu;
|
||||
const flagReg = /(?:^| )(?<flag>(?:--[a-z0-9]{2,})|(?:-[a-z]{1,2}))(?:$| )/iu;
|
||||
|
||||
class Parser extends EventEmitter
|
||||
{
|
||||
@ -178,6 +178,7 @@ class Parser extends EventEmitter
|
||||
// Parse flags
|
||||
for (let index = 0; index < params.length;)
|
||||
{
|
||||
this.debug('');
|
||||
const match = flagReg.exec(params[index]);
|
||||
if (!match || !match.groups)
|
||||
{
|
||||
@ -234,6 +235,9 @@ class Parser extends EventEmitter
|
||||
// Clean up params for option parsing
|
||||
for (const flag of Object.values(args))
|
||||
{
|
||||
// To shut up TS
|
||||
if (!flag)
|
||||
throw new Error('Undefined flag');
|
||||
this.debug(`Running parser for ${flag.name}`);
|
||||
const result = await flag.parse(guild);
|
||||
if (result.error)
|
||||
|
@ -1,6 +1,7 @@
|
||||
import { Parser, Command, OptionType } from '../build/esm/index.js';
|
||||
|
||||
const createCommand = new Command({
|
||||
const commands = [
|
||||
new Command({
|
||||
name: 'create',
|
||||
options: [{
|
||||
name: 'registration-code',
|
||||
@ -15,16 +16,15 @@ const createCommand = new Command({
|
||||
required: true
|
||||
}]
|
||||
}]
|
||||
});
|
||||
const botbanCommand = new Command({
|
||||
}),
|
||||
new Command({
|
||||
name: 'botban',
|
||||
options: [
|
||||
{ name: 'users', type: OptionType.STRING, required: true },
|
||||
{ name: 'service', choices: ['support', 'reports'], valueAsAlias: true, required: true }
|
||||
]
|
||||
});
|
||||
|
||||
const volumeCommand = new Command({
|
||||
}),
|
||||
new Command({
|
||||
name: 'volume',
|
||||
options: [
|
||||
{
|
||||
@ -34,8 +34,24 @@ const volumeCommand = new Command({
|
||||
minimum: 0
|
||||
},
|
||||
]
|
||||
});
|
||||
const parser = new Parser({ commands: [createCommand, botbanCommand, volumeCommand], prefix: '', debug: true });
|
||||
}),
|
||||
new Command({
|
||||
name: 'search',
|
||||
options: [
|
||||
{
|
||||
name: 'artist',
|
||||
flag: true
|
||||
}, {
|
||||
name: 'id',
|
||||
flag: true,
|
||||
type: OptionType.INTEGER
|
||||
}, {
|
||||
name: 'song'
|
||||
}
|
||||
]
|
||||
})
|
||||
]
|
||||
const parser = new Parser({ commands, prefix: '', debug: true });
|
||||
parser.on('debug', console.log)
|
||||
console.log((await parser.parseMessage('create code -a 1')).args);
|
||||
console.log((await parser.parseMessage('create code --help')).args);
|
||||
@ -44,4 +60,5 @@ console.log((await parser.parseMessage('create code --help')).args);
|
||||
console.log((await parser.parseMessage('create code')).args);
|
||||
|
||||
console.log((await parser.parseMessage('botban support dingus')).args);
|
||||
console.log((await parser.parseMessage('volume 500')).args);
|
||||
console.log((await parser.parseMessage('volume 100')).args);
|
||||
console.log((await parser.parseMessage('search --id 5000')).args);
|
Loading…
Reference in New Issue
Block a user