mirror of
https://github.com/diamondburned/arikawa.git
synced 2025-05-21 23:01:07 +00:00
Bot: Fixed unable to call Plumbed method by command
This commit is contained in:
parent
82006b622b
commit
9df396bb7f
|
@ -134,11 +134,18 @@ func (ctx *Context) callMessageCreate(mc *gateway.MessageCreateEvent, value refl
|
||||||
}
|
}
|
||||||
|
|
||||||
// Find the command and subcommand.
|
// Find the command and subcommand.
|
||||||
arguments, cmd, sub, err := ctx.findCommand(parts)
|
commandCtx, err := ctx.findCommand(parts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errNoBreak(err)
|
return errNoBreak(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
arguments = commandCtx.parts
|
||||||
|
cmd = commandCtx.method
|
||||||
|
sub = commandCtx.subcmd
|
||||||
|
plumbed = commandCtx.plumbed
|
||||||
|
)
|
||||||
|
|
||||||
// We don't run the subcommand's middlewares here, as the callCmd function
|
// We don't run the subcommand's middlewares here, as the callCmd function
|
||||||
// already handles that.
|
// already handles that.
|
||||||
|
|
||||||
|
@ -266,7 +273,7 @@ func (ctx *Context) callMessageCreate(mc *gateway.MessageCreateEvent, value refl
|
||||||
// If the current command is not the plumbed command, then we can
|
// If the current command is not the plumbed command, then we can
|
||||||
// keep trimming. We have to check for this, as a plumbed subcommand
|
// keep trimming. We have to check for this, as a plumbed subcommand
|
||||||
// may return other non-plumbed commands.
|
// may return other non-plumbed commands.
|
||||||
if cmd != sub.plumbed {
|
if !plumbed {
|
||||||
content = trimPrefixStringAndSlice(content, cmd.Command, cmd.Aliases)
|
content = trimPrefixStringAndSlice(content, cmd.Command, cmd.Aliases)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -316,12 +323,23 @@ Call:
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// commandContext contains related command values to call one. It is returned
|
||||||
|
// from findCommand.
|
||||||
|
type commandContext struct {
|
||||||
|
parts []string
|
||||||
|
plumbed bool
|
||||||
|
method *MethodContext
|
||||||
|
subcmd *Subcommand
|
||||||
|
}
|
||||||
|
|
||||||
|
var emptyCommand = commandContext{}
|
||||||
|
|
||||||
// findCommand filters.
|
// findCommand filters.
|
||||||
func (ctx *Context) findCommand(parts []string) ([]string, *MethodContext, *Subcommand, error) {
|
func (ctx *Context) findCommand(parts []string) (commandContext, error) {
|
||||||
// Main command entrypoint cannot have plumb.
|
// Main command entrypoint cannot have plumb.
|
||||||
for _, c := range ctx.Commands {
|
for _, c := range ctx.Commands {
|
||||||
if searchStringAndSlice(parts[0], c.Command, c.Aliases) {
|
if searchStringAndSlice(parts[0], c.Command, c.Aliases) {
|
||||||
return parts[1:], c, ctx.Subcommand, nil
|
return commandContext{parts[1:], false, c, ctx.Subcommand}, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -338,34 +356,29 @@ func (ctx *Context) findCommand(parts []string) ([]string, *MethodContext, *Subc
|
||||||
|
|
||||||
if len(parts) >= 2 {
|
if len(parts) >= 2 {
|
||||||
for _, c := range s.Commands {
|
for _, c := range s.Commands {
|
||||||
// Skip plumbed commands as those are considered to have
|
|
||||||
// an empty Command.
|
|
||||||
if c == s.plumbed {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if searchStringAndSlice(parts[1], c.Command, c.Aliases) {
|
if searchStringAndSlice(parts[1], c.Command, c.Aliases) {
|
||||||
return parts[2:], c, s, nil
|
return commandContext{parts[2:], false, c, s}, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if s.IsPlumbed() {
|
if s.IsPlumbed() {
|
||||||
return parts[1:], s.plumbed, s, nil
|
return commandContext{parts[1:], true, s.plumbed, s}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// If unknown command is disabled or the subcommand is hidden:
|
// If unknown command is disabled or the subcommand is hidden:
|
||||||
if ctx.SilentUnknown.Subcommand || s.Hidden {
|
if ctx.SilentUnknown.Subcommand || s.Hidden {
|
||||||
return nil, nil, nil, Break
|
return emptyCommand, Break
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil, nil, nil, newErrUnknownCommand(s, parts)
|
return emptyCommand, newErrUnknownCommand(s, parts)
|
||||||
}
|
}
|
||||||
|
|
||||||
if ctx.SilentUnknown.Command {
|
if ctx.SilentUnknown.Command {
|
||||||
return nil, nil, nil, Break
|
return emptyCommand, Break
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil, nil, nil, newErrUnknownCommand(ctx.Subcommand, parts)
|
return emptyCommand, newErrUnknownCommand(ctx.Subcommand, parts)
|
||||||
}
|
}
|
||||||
|
|
||||||
// searchStringAndSlice searches if str is equal to isString or any of the given
|
// searchStringAndSlice searches if str is equal to isString or any of the given
|
||||||
|
|
|
@ -81,6 +81,15 @@ func TestSubcommandPlumb(t *testing.T) {
|
||||||
t.Errorf("Incorrect plumbed argument %q", p.PlumbedArgs)
|
t.Errorf("Incorrect plumbed argument %q", p.PlumbedArgs)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sendFn("hasPlumb plumber arg1")
|
||||||
|
|
||||||
|
if p.NotPlumbed || !p.Plumbed {
|
||||||
|
t.Error("Normal method called for plumber command with arguments")
|
||||||
|
}
|
||||||
|
if p.PlumbedArgs != "arg1" {
|
||||||
|
t.Errorf("Incorrect normal plumbed argument %q", p.PlumbedArgs)
|
||||||
|
}
|
||||||
|
|
||||||
sendFn("hasPlumb normal")
|
sendFn("hasPlumb normal")
|
||||||
|
|
||||||
if p.Plumbed || !p.NotPlumbed {
|
if p.Plumbed || !p.NotPlumbed {
|
||||||
|
|
Loading…
Reference in a new issue