mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-03 13:34:27 +00:00
67 lines
1.1 KiB
Go
67 lines
1.1 KiB
Go
package bot
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
type ErrUnknownCommand struct {
|
|
Command string
|
|
Parent string
|
|
|
|
Prefix string
|
|
|
|
// TODO: list available commands?
|
|
// Here, as a reminder
|
|
ctx []*CommandContext
|
|
}
|
|
|
|
func (err *ErrUnknownCommand) Error() string {
|
|
var header = "Unknown command: " + err.Prefix
|
|
if err.Parent != "" {
|
|
header += err.Parent + " " + err.Command
|
|
} else {
|
|
header += err.Command
|
|
}
|
|
|
|
return header
|
|
}
|
|
|
|
type ErrInvalidUsage struct {
|
|
Args []string
|
|
Prefix string
|
|
|
|
Index int
|
|
Err string
|
|
|
|
// TODO: usage generator?
|
|
// Here, as a reminder
|
|
ctx *CommandContext
|
|
}
|
|
|
|
func (err *ErrInvalidUsage) Error() string {
|
|
if err.Index == 0 {
|
|
return "Invalid usage"
|
|
}
|
|
|
|
if len(err.Args) == 0 {
|
|
return "Missing arguments. Refer to help."
|
|
}
|
|
|
|
body := "Invalid usage at " + err.Prefix
|
|
|
|
// Write the first part
|
|
body += strings.Join(err.Args[:err.Index], " ")
|
|
|
|
// Write the wrong part
|
|
body += " __" + err.Args[err.Index] + "__ "
|
|
|
|
// Write the last part
|
|
body += strings.Join(err.Args[err.Index+1:], " ")
|
|
|
|
if err.Err != "" {
|
|
body += "\nError: " + err.Err
|
|
}
|
|
|
|
return body
|
|
}
|