-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from auth0/feature/AOCLI-25
Add completion command
- Loading branch information
Showing
2 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
package cli | ||
|
||
import ( | ||
"os" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
func completionCmd(cli *cli) *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "completion [bash|zsh|fish|powershell]", | ||
Short: "generate completion script", | ||
Long: `To load completions: | ||
Bash: | ||
$ source <(auth0 completion bash) | ||
# To load completions for each session, execute once: | ||
Linux: | ||
$ auth0 completion bash > /etc/bash_completion.d/auth0 | ||
MacOS: | ||
$ auth0 completion bash > /usr/local/etc/bash_completion.d/auth0 | ||
Zsh: | ||
# If shell completion is not already enabled in your environment you will need | ||
# to enable it. You can execute the following once: | ||
$ echo "autoload -U compinit; compinit" >> ~/.zshrc | ||
# To load completions for each session, execute once: | ||
$ auth0 completion zsh > "${fpath[1]}/_auth0" | ||
# You will need to start a new shell for this setup to take effect. | ||
Fish: | ||
$ auth0 completion fish | source | ||
# To load completions for each session, execute once: | ||
$ auth0 completion fish > ~/.config/fish/completions/auth0.fish | ||
Powershell: | ||
PS> auth0 completion powershell | Out-String | Invoke-Expression | ||
# To load completions for every new session, run: | ||
PS> auth0 completion powershell > auth0.ps1 | ||
# and source this file from your powershell profile. | ||
`, | ||
DisableFlagsInUseLine: true, | ||
ValidArgs: []string{"bash", "zsh", "fish", "powershell"}, | ||
Args: cobra.ExactValidArgs(1), | ||
Run: func(cmd *cobra.Command, args []string) { | ||
switch args[0] { | ||
case "bash": | ||
err := cmd.Root().GenBashCompletion(os.Stdout) | ||
if err != nil { | ||
cli.renderer.Errorf(err.Error()) | ||
} | ||
case "zsh": | ||
err := cmd.Root().GenZshCompletion(os.Stdout) | ||
if err != nil { | ||
cli.renderer.Errorf(err.Error()) | ||
} | ||
case "fish": | ||
err := cmd.Root().GenFishCompletion(os.Stdout, true) | ||
if err != nil { | ||
cli.renderer.Errorf(err.Error()) | ||
} | ||
case "powershell": | ||
err := cmd.Root().GenPowerShellCompletion(os.Stdout) | ||
if err != nil { | ||
cli.renderer.Errorf(err.Error()) | ||
} | ||
} | ||
}, | ||
} | ||
|
||
return cmd | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters