mirror of
https://shylinux.com/x/icebergs
synced 2025-05-03 03:57:01 +08:00
opt some
This commit is contained in:
parent
58a38d095a
commit
b261554dc9
@ -421,7 +421,10 @@ func init() {
|
||||
_other_show(m, arg[0], kit.Select(arg[0], arg[1]), arg[2:]...)
|
||||
}},
|
||||
|
||||
PARSE: {Name: "parse type=auto,json,http,form,list auto text:textarea", Help: "结构", Hand: func(m *ice.Message, c *ice.Context, cmd string, arg ...string) {
|
||||
PARSE: {Name: "parse type=auto,json,http,form,list auto text:textarea", Help: "解析", Hand: func(m *ice.Message, c *ice.Context, cmd string, arg ...string) {
|
||||
if len(arg) < 2 {
|
||||
return
|
||||
}
|
||||
if arg[0] == "auto" && (strings.HasPrefix(arg[1], "{") || strings.HasPrefix(arg[1], "[")) {
|
||||
arg[0] = "json"
|
||||
} else if strings.HasPrefix(arg[1], "http") {
|
||||
|
@ -17,82 +17,77 @@ import (
|
||||
const SPIDE = "spide"
|
||||
|
||||
func init() {
|
||||
Index.Merge(&ice.Context{
|
||||
Commands: map[string]*ice.Command{
|
||||
SPIDE: {Name: "spide name=icebergs@key auto", Help: "结构图", Meta: kit.Dict(
|
||||
"display", "/plugin/story/spide.js",
|
||||
), Action: map[string]*ice.Action{
|
||||
mdb.INPUTS: {Name: "inputs", Help: "补全", Hand: func(m *ice.Message, arg ...string) {
|
||||
m.Cmdy(REPOS).Appendv(ice.MSG_APPEND, kit.Split("name,branch,commit"))
|
||||
}},
|
||||
code.INNER: {Name: "web.code.inner"},
|
||||
ctx.COMMAND: {Name: "ctx.command"},
|
||||
}, Hand: func(m *ice.Message, c *ice.Context, cmd string, arg ...string) {
|
||||
if len(arg) == 0 {
|
||||
// 仓库列表
|
||||
m.Option(ice.MSG_DISPLAY, "table")
|
||||
m.Cmdy(REPOS, arg)
|
||||
return
|
||||
}
|
||||
Index.Merge(&ice.Context{Commands: map[string]*ice.Command{
|
||||
SPIDE: {Name: "spide name=icebergs auto", Help: "结构图", Meta: kit.Dict(
|
||||
kit.MDB_DISPLAY, "/plugin/story/spide.js",
|
||||
), Action: map[string]*ice.Action{
|
||||
ctx.COMMAND: {Name: "ctx.command"},
|
||||
code.INNER: {Name: "web.code.inner"},
|
||||
}, Hand: func(m *ice.Message, c *ice.Context, cmd string, arg ...string) {
|
||||
if len(arg) == 0 {
|
||||
// 仓库列表
|
||||
m.Option(ice.MSG_DISPLAY, "table")
|
||||
m.Cmdy(REPOS, arg)
|
||||
return
|
||||
}
|
||||
|
||||
if wd, _ := os.Getwd(); arg[0] == path.Base(wd) {
|
||||
m.Option(nfs.DIR_ROOT, path.Join("src"))
|
||||
} else {
|
||||
m.Option(nfs.DIR_ROOT, path.Join("usr", arg[0]))
|
||||
}
|
||||
if len(arg) == 1 {
|
||||
// 目录列表
|
||||
m.Option(nfs.DIR_DEEP, "true")
|
||||
m.Cmdy(nfs.DIR, "./")
|
||||
return
|
||||
}
|
||||
if wd, _ := os.Getwd(); arg[0] == path.Base(wd) {
|
||||
m.Option(nfs.DIR_ROOT, path.Join("src"))
|
||||
} else {
|
||||
m.Option(nfs.DIR_ROOT, path.Join("usr", arg[0]))
|
||||
}
|
||||
if len(arg) == 1 {
|
||||
// 目录列表
|
||||
m.Option(nfs.DIR_DEEP, "true")
|
||||
m.Cmdy(nfs.DIR, "./")
|
||||
return
|
||||
}
|
||||
|
||||
if m.Option(cli.CMD_DIR, m.Option(nfs.DIR_ROOT)); strings.HasSuffix(arg[1], ".go") {
|
||||
tags := m.Cmdx(cli.SYSTEM, "gotags", arg[1])
|
||||
if m.Option(cli.CMD_DIR, m.Option(nfs.DIR_ROOT)); strings.HasSuffix(arg[1], ".go") {
|
||||
tags := m.Cmdx(cli.SYSTEM, "gotags", arg[1])
|
||||
|
||||
for _, line := range strings.Split(tags, "\n") {
|
||||
if len(line) == 0 || strings.HasPrefix(line, "!_") {
|
||||
continue
|
||||
}
|
||||
|
||||
ls := kit.Split(line, "\t ", "\t ", "\t ")
|
||||
name := ls[3] + ":" + ls[0]
|
||||
switch ls[3] {
|
||||
case "m":
|
||||
if strings.HasPrefix(ls[5], "ctype") {
|
||||
name = strings.TrimPrefix(ls[5], "ctype:") + ":" + ls[0]
|
||||
} else if strings.HasPrefix(ls[6], "ntype") {
|
||||
name = "-" + ls[0]
|
||||
} else {
|
||||
|
||||
}
|
||||
case "w":
|
||||
t := ls[len(ls)-1]
|
||||
name = "-" + ls[0] + ":" + strings.TrimPrefix(t, "type:")
|
||||
}
|
||||
|
||||
m.Push("name", name)
|
||||
m.Push("file", ls[1])
|
||||
m.Push("line", strings.TrimSuffix(ls[2], ";\""))
|
||||
m.Push("type", ls[3])
|
||||
m.Push("extra", strings.Join(ls[4:], " "))
|
||||
for _, line := range strings.Split(tags, "\n") {
|
||||
if len(line) == 0 || strings.HasPrefix(line, "!_") {
|
||||
continue
|
||||
}
|
||||
} else {
|
||||
tags := m.Cmdx(cli.SYSTEM, "ctags", "-f", "-", arg[1])
|
||||
|
||||
for _, line := range strings.Split(tags, "\n") {
|
||||
if len(line) == 0 || strings.HasPrefix(line, "!_") {
|
||||
continue
|
||||
ls := kit.Split(line, "\t ", "\t ", "\t ")
|
||||
name := ls[3] + ":" + ls[0]
|
||||
switch ls[3] {
|
||||
case "m":
|
||||
if strings.HasPrefix(ls[5], "ctype") {
|
||||
name = strings.TrimPrefix(ls[5], "ctype:") + ":" + ls[0]
|
||||
} else if strings.HasPrefix(ls[6], "ntype") {
|
||||
name = "-" + ls[0]
|
||||
} else {
|
||||
|
||||
}
|
||||
|
||||
ls := kit.Split(line, "\t ", "\t ", "\t ")
|
||||
m.Push("name", ls[0])
|
||||
m.Push("file", ls[1])
|
||||
m.Push("line", "1")
|
||||
case "w":
|
||||
t := ls[len(ls)-1]
|
||||
name = "-" + ls[0] + ":" + strings.TrimPrefix(t, "type:")
|
||||
}
|
||||
|
||||
m.Push("name", name)
|
||||
m.Push("file", ls[1])
|
||||
m.Push("line", strings.TrimSuffix(ls[2], ";\""))
|
||||
m.Push("type", ls[3])
|
||||
m.Push("extra", strings.Join(ls[4:], " "))
|
||||
}
|
||||
m.SortInt(kit.MDB_LINE)
|
||||
}},
|
||||
},
|
||||
})
|
||||
} else {
|
||||
tags := m.Cmdx(cli.SYSTEM, "ctags", "-f", "-", arg[1])
|
||||
|
||||
for _, line := range strings.Split(tags, "\n") {
|
||||
if len(line) == 0 || strings.HasPrefix(line, "!_") {
|
||||
continue
|
||||
}
|
||||
|
||||
ls := kit.Split(line, "\t ", "\t ", "\t ")
|
||||
m.Push("name", ls[0])
|
||||
m.Push("file", ls[1])
|
||||
m.Push("line", "1")
|
||||
}
|
||||
}
|
||||
m.SortInt(kit.MDB_LINE)
|
||||
}},
|
||||
}})
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user