2021-05-16 19:53:21 +00:00
|
|
|
// Here is the core api for the hilbi shell itself
|
|
|
|
// Basically, stuff about the shell itself and other functions
|
|
|
|
// go here.
|
|
|
|
package main
|
|
|
|
|
2021-05-16 21:13:28 +00:00
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
2021-05-16 22:10:46 +00:00
|
|
|
"github.com/pborman/getopt"
|
2021-05-16 21:13:28 +00:00
|
|
|
"github.com/yuin/gopher-lua"
|
|
|
|
"mvdan.cc/sh/v3/interp"
|
|
|
|
)
|
|
|
|
|
|
|
|
var exports = map[string]lua.LGFunction {
|
|
|
|
"run": run,
|
2021-05-16 22:10:46 +00:00
|
|
|
"flag": flag,
|
2021-05-27 23:06:17 +00:00
|
|
|
"cwd": cwd,
|
2021-05-16 21:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func HilbishLoader(L *lua.LState) int {
|
|
|
|
mod := L.SetFuncs(L.NewTable(), exports)
|
|
|
|
|
|
|
|
host, _ := os.Hostname()
|
|
|
|
|
|
|
|
L.SetField(mod, "ver", lua.LString(version))
|
|
|
|
L.SetField(mod, "user", lua.LString(curuser.Username))
|
|
|
|
L.SetField(mod, "host", lua.LString(host))
|
2021-06-12 01:49:28 +00:00
|
|
|
L.SetField(mod, "home", lua.LString(homedir))
|
2021-05-16 21:13:28 +00:00
|
|
|
|
|
|
|
L.Push(mod)
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Runs a command
|
|
|
|
func run(L *lua.LState) int {
|
|
|
|
var exitcode uint8 = 0
|
|
|
|
cmd := L.CheckString(1)
|
|
|
|
err := execCommand(cmd)
|
|
|
|
|
|
|
|
if code, ok := interp.IsExitStatus(err); ok {
|
|
|
|
exitcode = code
|
|
|
|
} else if err != nil {
|
|
|
|
exitcode = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
L.Push(lua.LNumber(exitcode))
|
|
|
|
return 1
|
2021-05-16 19:53:21 +00:00
|
|
|
}
|
|
|
|
|
2021-05-16 22:10:46 +00:00
|
|
|
func flag(L *lua.LState) int {
|
|
|
|
flagchar := L.CheckString(1)
|
|
|
|
|
|
|
|
L.Push(lua.LBool(getopt.Lookup([]rune(flagchar)[0]).Seen()))
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
2021-05-27 23:06:17 +00:00
|
|
|
|
|
|
|
func cwd(L *lua.LState) int {
|
|
|
|
cwd, _ := os.Getwd()
|
|
|
|
|
|
|
|
L.Push(lua.LString(cwd))
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|