complete/internal/install/fish.go

70 lines
1.5 KiB
Go
Raw Normal View History

2018-01-08 02:51:45 -06:00
package install
import (
"bytes"
"fmt"
"os"
"path/filepath"
"text/template"
)
// (un)install in fish
type fish struct {
configDir string
}
func (f fish) IsInstalled(cmd, bin string) bool {
completionFile := f.getCompletionFilePath(cmd)
if _, err := os.Stat(completionFile); err == nil {
return true
}
return false
}
2018-01-08 02:51:45 -06:00
func (f fish) Install(cmd, bin string) error {
if f.IsInstalled(cmd, bin) {
return fmt.Errorf("already installed at %s", f.getCompletionFilePath(cmd))
}
completionFile := f.getCompletionFilePath(cmd)
2018-09-10 02:50:41 -05:00
completeCmd, err := f.cmd(cmd, bin)
if err != nil {
return err
}
2018-01-08 02:51:45 -06:00
return createFile(completionFile, completeCmd)
}
func (f fish) Uninstall(cmd, bin string) error {
if !f.IsInstalled(cmd, bin) {
2018-01-08 02:51:45 -06:00
return fmt.Errorf("does not installed in %s", f.configDir)
}
completionFile := f.getCompletionFilePath(cmd)
2018-01-08 02:51:45 -06:00
return os.Remove(completionFile)
}
func (f fish) getCompletionFilePath(cmd string) string {
return filepath.Join(f.configDir, "completions", fmt.Sprintf("%s.fish", cmd))
}
2018-09-10 02:50:41 -05:00
func (f fish) cmd(cmd, bin string) (string, error) {
2018-01-08 02:51:45 -06:00
var buf bytes.Buffer
params := struct{ Cmd, Bin string }{cmd, bin}
2018-09-10 02:50:41 -05:00
tmpl := template.Must(template.New("cmd").Parse(`
2018-01-08 02:51:45 -06:00
function __complete_{{.Cmd}}
2019-02-07 15:07:13 -06:00
set -lx COMP_LINE (commandline -cp)
test -z (commandline -ct)
2018-01-08 02:51:45 -06:00
and set COMP_LINE "$COMP_LINE "
{{.Bin}}
end
2019-02-07 15:07:13 -06:00
complete -f -c {{.Cmd}} -a "(__complete_{{.Cmd}})"
2018-09-10 02:50:41 -05:00
`))
err := tmpl.Execute(&buf, params)
if err != nil {
return "", err
}
return buf.String(), nil
2018-01-08 02:51:45 -06:00
}