mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 09:58:53 -05:00
129 lines
2.9 KiB
Go
129 lines
2.9 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"runtime"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/turbot/pipe-fittings/v2/constants"
|
|
"github.com/turbot/steampipe/v2/pkg/cmdconfig"
|
|
)
|
|
|
|
func generateCompletionScriptsCmd() *cobra.Command {
|
|
var cmd = &cobra.Command{
|
|
Use: "completion [bash|zsh|fish]",
|
|
Args: cobra.ArbitraryArgs,
|
|
DisableFlagsInUseLine: true,
|
|
ValidArgs: []string{"bash", "zsh", "fish"},
|
|
Run: runGenCompletionScriptsCmd,
|
|
Short: "Generate completion scripts",
|
|
}
|
|
|
|
cmd.ResetFlags()
|
|
|
|
cmd.SetHelpFunc(completionHelp)
|
|
|
|
cmdconfig.OnCmd(cmd).AddBoolFlag(constants.ArgHelp, false, "Help for completion", cmdconfig.FlagOptions.WithShortHand("h"))
|
|
|
|
return cmd
|
|
}
|
|
|
|
func includeBashHelp(base string) string {
|
|
buildUp := base
|
|
buildUp = fmt.Sprintf(`%s
|
|
Bash:`, buildUp)
|
|
|
|
if runtime.GOOS == "darwin" {
|
|
buildUp = fmt.Sprintf(`%s
|
|
# Load for the current session:
|
|
$ source <(steampipe completion bash)
|
|
|
|
# Load for every session (requires shell restart):
|
|
$ steampipe completion bash > $(brew --prefix)/etc/bash_completion.d/steampipe
|
|
`, buildUp)
|
|
} else if runtime.GOOS == "linux" {
|
|
buildUp = fmt.Sprintf(`%s
|
|
# Load for the current session:
|
|
$ source <(steampipe completion bash)
|
|
|
|
# Load for every session (requires shell restart):
|
|
$ steampipe completion bash > /etc/bash_completion.d/steampipe
|
|
`, buildUp)
|
|
}
|
|
|
|
return buildUp
|
|
}
|
|
|
|
func includeZshHelp(base string) string {
|
|
buildUp := base
|
|
|
|
if runtime.GOOS == "darwin" {
|
|
buildUp = fmt.Sprintf(`%s
|
|
Zsh:
|
|
# Load for every session:
|
|
$ steampipe completion zsh > "${fpath[1]}/_steampipe" && compinit
|
|
`, buildUp)
|
|
}
|
|
|
|
return buildUp
|
|
}
|
|
|
|
func includeFishHelp(base string) string {
|
|
buildUp := base
|
|
|
|
buildUp = fmt.Sprintf(`%s
|
|
fish:
|
|
# Load for the current session:
|
|
$ steampipe completion fish | source
|
|
|
|
# Load for every session (requires shell restart):
|
|
$ steampipe completion fish > ~/.config/fish/completions/steampipe.fish
|
|
`, buildUp)
|
|
|
|
return buildUp
|
|
}
|
|
|
|
func completionHelp(cmd *cobra.Command, _ []string) {
|
|
helpString := ""
|
|
|
|
if runtime.GOOS == "darwin" {
|
|
helpString = `
|
|
Note: Completions must be enabled in your environment. Please refer to: https://steampipe.io/docs/reference/cli-args#steampipe-completion
|
|
|
|
To load completions:
|
|
`
|
|
} else if runtime.GOOS == "linux" {
|
|
helpString = `
|
|
To load completions:
|
|
`
|
|
}
|
|
|
|
helpString = includeBashHelp(helpString)
|
|
helpString = includeZshHelp(helpString)
|
|
helpString = includeFishHelp(helpString)
|
|
|
|
fmt.Println(helpString)
|
|
fmt.Println(cmd.UsageString())
|
|
}
|
|
|
|
func runGenCompletionScriptsCmd(cmd *cobra.Command, args []string) {
|
|
if len(args) != 1 {
|
|
completionHelp(cmd, args)
|
|
return
|
|
}
|
|
|
|
completionFor := args[0]
|
|
|
|
switch completionFor {
|
|
case "bash":
|
|
cmd.Root().GenBashCompletionV2(os.Stdout, false)
|
|
case "zsh":
|
|
cmd.Root().GenZshCompletionNoDesc(os.Stdout)
|
|
case "fish":
|
|
cmd.Root().GenFishCompletion(os.Stdout, false)
|
|
default:
|
|
completionHelp(cmd, args)
|
|
}
|
|
}
|