1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-27 17:58:29 +08:00
icebergs/base/ctx/cmd.go
2020-09-12 18:12:21 +08:00

58 lines
1.2 KiB
Go

package ctx
import (
ice "github.com/shylinux/icebergs"
kit "github.com/shylinux/toolkits"
"sort"
"strings"
)
func _command_list(m *ice.Message, all bool, name string) {
p := m.Spawn(m.Source())
if all {
p = ice.Pulse
}
if name != "" {
p.Search(name, func(p *ice.Context, s *ice.Context, key string, cmd *ice.Command) {
m.Push("key", s.Cap(ice.CTX_FOLLOW))
m.Push("name", kit.Format(cmd.Name))
m.Push("help", kit.Simple(cmd.Help)[0])
m.Push("meta", kit.Format(cmd.Meta))
m.Push("list", kit.Format(cmd.List))
})
return
}
list := []string{}
for k := range p.Target().Commands {
if k[0] == '/' || k[0] == '_' {
// 内部命令
continue
}
list = append(list, k)
}
sort.Strings(list)
for _, k := range list {
v := p.Target().Commands[k]
m.Push("key", k)
m.Push("name", kit.Format(v.Name))
m.Push("help", kit.Simple(v.Help)[0])
}
}
const COMMAND = "command"
func init() {
Index.Merge(&ice.Context{
Commands: map[string]*ice.Command{
COMMAND: {Name: "command [all] command", Help: "命令", Hand: func(m *ice.Message, c *ice.Context, cmd string, arg ...string) {
all, arg := _parse_arg_all(m, arg...)
_command_list(m, all, strings.Join(arg, "."))
}},
},
}, nil)
}