2021-03-19 19:11:59 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2021-03-28 21:11:57 +00:00
|
|
|
"os/user"
|
2021-03-20 04:01:24 +00:00
|
|
|
"syscall"
|
2021-03-19 19:11:59 +00:00
|
|
|
"os/signal"
|
|
|
|
"strings"
|
2021-03-20 16:57:18 +00:00
|
|
|
"io"
|
2021-03-30 23:47:02 +00:00
|
|
|
hooks "hilbish/golibs/bait"
|
2021-03-20 04:01:24 +00:00
|
|
|
|
|
|
|
"github.com/akamensky/argparse"
|
|
|
|
"github.com/bobappleyard/readline"
|
2021-03-19 23:03:11 +00:00
|
|
|
"github.com/yuin/gopher-lua"
|
2021-03-24 18:50:22 +00:00
|
|
|
|
2021-03-19 19:11:59 +00:00
|
|
|
)
|
|
|
|
|
2021-04-03 17:13:45 +00:00
|
|
|
const version = "0.3.0-dev"
|
2021-03-19 23:03:11 +00:00
|
|
|
var l *lua.LState
|
2021-03-28 22:58:58 +00:00
|
|
|
// User's prompt, this will get set when lua side is initialized
|
2021-03-19 23:03:11 +00:00
|
|
|
var prompt string
|
2021-03-28 22:58:58 +00:00
|
|
|
// Map of builtin/custom commands defined in the commander lua module
|
2021-03-20 22:51:05 +00:00
|
|
|
var commands = map[string]bool{}
|
2021-03-28 22:58:58 +00:00
|
|
|
// Command aliases
|
2021-03-21 21:19:51 +00:00
|
|
|
var aliases = map[string]string{}
|
2021-03-30 23:47:02 +00:00
|
|
|
var bait hooks.Bait
|
2021-04-02 02:12:03 +00:00
|
|
|
var homedir string
|
2021-03-19 23:03:11 +00:00
|
|
|
|
2021-03-19 19:11:59 +00:00
|
|
|
func main() {
|
2021-03-20 04:01:24 +00:00
|
|
|
parser := argparse.NewParser("hilbish", "A shell for lua and flower lovers")
|
|
|
|
verflag := parser.Flag("v", "version", &argparse.Options{
|
|
|
|
Required: false,
|
2021-03-25 00:58:31 +00:00
|
|
|
Help: "Prints Hilbish version",
|
|
|
|
})
|
|
|
|
setshflag := parser.Flag("S", "set-shell-env", &argparse.Options{
|
|
|
|
Required: false,
|
|
|
|
Help: "Sets $SHELL to Hilbish's executed path",
|
2021-03-20 04:01:24 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
err := parser.Parse(os.Args)
|
2021-03-28 22:58:58 +00:00
|
|
|
// If invalid flags or --help/-h,
|
2021-03-20 04:01:24 +00:00
|
|
|
if err != nil {
|
2021-03-28 22:58:58 +00:00
|
|
|
// Print usage
|
2021-03-20 04:01:24 +00:00
|
|
|
fmt.Print(parser.Usage(err))
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
if *verflag {
|
|
|
|
fmt.Printf("Hilbish v%s\n", version)
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
2021-03-28 22:58:58 +00:00
|
|
|
// Set $SHELL if the user wants to
|
2021-03-25 00:58:31 +00:00
|
|
|
if *setshflag { os.Setenv("SHELL", os.Args[0]) }
|
2021-03-21 07:51:44 +00:00
|
|
|
|
2021-04-02 02:12:03 +00:00
|
|
|
homedir, _ = os.UserHomeDir()
|
2021-03-28 22:58:58 +00:00
|
|
|
// If user's config doesn't exixt,
|
2021-03-25 16:07:51 +00:00
|
|
|
if _, err := os.Stat(homedir + "/.hilbishrc.lua"); os.IsNotExist(err) {
|
2021-03-30 23:47:02 +00:00
|
|
|
// Read default from current directory
|
|
|
|
// (this is assuming the current dir is Hilbish's git)
|
|
|
|
input, err := os.ReadFile(".hilbishrc.lua")
|
|
|
|
if err != nil {
|
|
|
|
// If it wasnt found, go to "real default"
|
|
|
|
input, err = os.ReadFile("/usr/share/hilbish/.hilbishrc.lua")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("could not find .hilbishrc.lua or /usr/share/hilbish/.hilbishrc.lua")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-28 22:58:58 +00:00
|
|
|
// Create it using either default config we found
|
2021-03-25 16:07:51 +00:00
|
|
|
err = os.WriteFile(homedir + "/.hilbishrc.lua", input, 0644)
|
|
|
|
if err != nil {
|
2021-03-28 22:58:58 +00:00
|
|
|
// If that fails, bail
|
2021-03-25 16:07:51 +00:00
|
|
|
fmt.Println("Error creating config file")
|
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2021-03-21 07:51:44 +00:00
|
|
|
|
2021-03-19 19:11:59 +00:00
|
|
|
HandleSignals()
|
2021-03-19 23:03:11 +00:00
|
|
|
LuaInit()
|
2021-03-19 19:11:59 +00:00
|
|
|
|
2021-03-24 18:50:22 +00:00
|
|
|
readline.Completer = readline.FilenameCompleter
|
2021-04-02 02:12:03 +00:00
|
|
|
readline.LoadHistory(homedir + "/.hilbish-history")
|
2021-03-28 21:11:57 +00:00
|
|
|
|
2021-03-19 19:11:59 +00:00
|
|
|
for {
|
2021-03-26 05:06:14 +00:00
|
|
|
cmdString, err := readline.String(fmtPrompt())
|
2021-03-20 16:57:18 +00:00
|
|
|
if err == io.EOF {
|
2021-03-28 22:58:58 +00:00
|
|
|
// Exit if user presses ^D (ctrl + d)
|
2021-03-20 16:57:18 +00:00
|
|
|
fmt.Println("")
|
|
|
|
break
|
|
|
|
}
|
2021-03-19 19:11:59 +00:00
|
|
|
if err != nil {
|
2021-03-28 22:58:58 +00:00
|
|
|
// If we get a completely random error, print
|
2021-03-19 19:11:59 +00:00
|
|
|
fmt.Fprintln(os.Stderr, err)
|
|
|
|
}
|
2021-03-28 22:58:58 +00:00
|
|
|
|
|
|
|
// I have no idea if we need this anymore
|
2021-03-19 19:11:59 +00:00
|
|
|
cmdString = strings.TrimSuffix(cmdString, "\n")
|
2021-04-03 17:13:45 +00:00
|
|
|
RunInput(cmdString)
|
2021-03-19 19:11:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-28 22:58:58 +00:00
|
|
|
// This semi cursed function formats our prompt (obviously)
|
2021-03-26 05:06:14 +00:00
|
|
|
func fmtPrompt() string {
|
2021-03-28 21:11:57 +00:00
|
|
|
user, _ := user.Current()
|
|
|
|
host, _ := os.Hostname()
|
|
|
|
cwd, _ := os.Getwd()
|
2021-03-28 22:58:58 +00:00
|
|
|
|
2021-03-28 21:11:57 +00:00
|
|
|
cwd = strings.Replace(cwd, user.HomeDir, "~", 1)
|
2021-03-28 22:58:58 +00:00
|
|
|
|
2021-03-28 21:11:57 +00:00
|
|
|
args := []string{
|
2021-03-28 22:58:58 +00:00
|
|
|
"d", cwd,
|
|
|
|
"h", host,
|
|
|
|
"u", user.Name,
|
2021-03-28 21:11:57 +00:00
|
|
|
}
|
2021-03-28 22:58:58 +00:00
|
|
|
|
2021-03-28 21:11:57 +00:00
|
|
|
for i, v := range args {
|
|
|
|
if i % 2 == 0 {
|
|
|
|
args[i] = "%" + v
|
|
|
|
}
|
|
|
|
}
|
2021-03-28 22:58:58 +00:00
|
|
|
|
2021-03-28 21:11:57 +00:00
|
|
|
r := strings.NewReplacer(args...)
|
|
|
|
nprompt := r.Replace(prompt)
|
2021-03-28 22:58:58 +00:00
|
|
|
|
2021-03-28 21:11:57 +00:00
|
|
|
return nprompt
|
2021-03-26 05:06:14 +00:00
|
|
|
}
|
|
|
|
|
2021-03-28 22:58:58 +00:00
|
|
|
// do i even have to say
|
2021-03-19 19:11:59 +00:00
|
|
|
func HandleSignals() {
|
2021-03-20 04:01:24 +00:00
|
|
|
c := make(chan os.Signal)
|
|
|
|
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
|
|
|
go func() {
|
|
|
|
<-c
|
|
|
|
}()
|
2021-03-19 23:03:11 +00:00
|
|
|
}
|
|
|
|
|