forked from x/icebergs
43 lines
1.2 KiB
Go
43 lines
1.2 KiB
Go
package code
|
|
|
|
import (
|
|
"path"
|
|
|
|
ice "shylinux.com/x/icebergs"
|
|
"shylinux.com/x/icebergs/base/cli"
|
|
"shylinux.com/x/icebergs/base/mdb"
|
|
kit "shylinux.com/x/toolkits"
|
|
)
|
|
|
|
const PY = "py"
|
|
const (
|
|
PYTHON2 = "python2"
|
|
)
|
|
|
|
func init() {
|
|
Index.Merge(&ice.Context{Configs: map[string]*ice.Config{
|
|
PY: {Name: "py", Help: "脚本", Value: kit.Data(INSTALL, kit.List(kit.Dict(
|
|
cli.OSID, cli.ALPINE, ice.CMD, kit.List("apk", "add", PYTHON2),
|
|
)))},
|
|
}, Commands: map[string]*ice.Command{
|
|
PY: {Name: "py", Help: "脚本", Action: map[string]*ice.Action{
|
|
ice.CTX_INIT: {Hand: func(m *ice.Message, arg ...string) {
|
|
m.Cmd(mdb.ENGINE, mdb.CREATE, PY, m.PrefixKey())
|
|
}},
|
|
mdb.ENGINE: {Hand: func(m *ice.Message, arg ...string) {
|
|
if !InstallSoftware(m.Spawn(), PYTHON2, m.Configv(INSTALL)) {
|
|
return
|
|
}
|
|
if kit.FileExists(kit.Path(arg[2], arg[1])) {
|
|
m.Cmdy(cli.SYSTEM, PYTHON2, kit.Path(arg[2], arg[1]))
|
|
} else if b, ok := ice.Info.Pack[path.Join(arg[2], arg[1])]; ok && len(b) > 0 {
|
|
m.Cmdy(cli.SYSTEM, PYTHON2, "-c", string(b))
|
|
}
|
|
m.Echo(ice.NL)
|
|
}},
|
|
}, Hand: func(m *ice.Message, c *ice.Context, cmd string, arg ...string) {
|
|
|
|
}},
|
|
}})
|
|
}
|