-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactored flags and added completions for shells
- Loading branch information
Showing
7 changed files
with
170 additions
and
52 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,15 @@ | ||
package cmd | ||
|
||
import "github.com/keenmate/db-gen/common" | ||
|
||
const ( | ||
keyDebug = "debug" | ||
keyConnectionString = "connectionString" | ||
keyConfig = "config" | ||
) | ||
|
||
var commonFlags = []common.FlagArgument{ | ||
common.NewBoolFlag(keyDebug, "d", false, "Print debug logs and create debug files"), | ||
common.NewStringFlag(keyConfig, "s", "", "Connection string used to connect to database"), | ||
common.NewStringFlag(keyConnectionString, "c", "", "Path to configuration file"), | ||
} |
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,66 @@ | ||
package cmd | ||
|
||
import ( | ||
"fmt" | ||
"github.com/spf13/cobra" | ||
"os" | ||
) | ||
|
||
var completionCmd = &cobra.Command{ | ||
Use: "completion [bash|zsh|fish|powershell]", | ||
Short: "Generate completion script", | ||
Long: fmt.Sprintf(`To load completions: | ||
Bash: | ||
$ source <(%[1]s completion bash) | ||
# To load completions for each session, execute once: | ||
# Linux: | ||
$ %[1]s completion bash > /etc/bash_completion.d/%[1]s | ||
# macOS: | ||
$ %[1]s completion bash > $(brew --prefix)/etc/bash_completion.d/%[1]s | ||
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: | ||
$ %[1]s completion zsh > "${fpath[1]}/_%[1]s" | ||
# You will need to start a new shell for this setup to take effect. | ||
fish: | ||
$ %[1]s completion fish | source | ||
# To load completions for each session, execute once: | ||
$ %[1]s completion fish > ~/.config/fish/completions/%[1]s.fish | ||
PowerShell: | ||
PS> %[1]s completion powershell | Out-String | Invoke-Expression | ||
# To load completions for every new session, run: | ||
PS> %[1]s completion powershell > %[1]s.ps1 | ||
# and source this file from your PowerShell profile. | ||
`, rootCmd.Root().Name()), | ||
DisableFlagsInUseLine: true, | ||
ValidArgs: []string{"bash", "zsh", "fish", "powershell"}, | ||
Args: cobra.MatchAll(cobra.ExactArgs(1), cobra.OnlyValidArgs), | ||
Run: func(cmd *cobra.Command, args []string) { | ||
switch args[0] { | ||
case "bash": | ||
cmd.Root().GenBashCompletion(os.Stdout) | ||
case "zsh": | ||
cmd.Root().GenZshCompletion(os.Stdout) | ||
case "fish": | ||
cmd.Root().GenFishCompletion(os.Stdout, true) | ||
case "powershell": | ||
cmd.Root().GenPowerShellCompletionWithDesc(os.Stdout) | ||
} | ||
}, | ||
} |
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
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
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
This file was deleted.
Oops, something went wrong.
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,73 @@ | ||
package common | ||
|
||
import ( | ||
"github.com/spf13/cobra" | ||
"github.com/spf13/viper" | ||
) | ||
|
||
type FlagArgument interface { | ||
DefineFlag(command *cobra.Command) | ||
BindFlag(command *cobra.Command) | ||
} | ||
|
||
type StringFlag struct { | ||
key string | ||
shorthand string | ||
defaultValue string | ||
usage string | ||
} | ||
|
||
func (f *StringFlag) DefineFlag(command *cobra.Command) { | ||
command.Flags().StringP(f.key, f.shorthand, f.defaultValue, f.usage) | ||
|
||
} | ||
|
||
func (f *StringFlag) BindFlag(command *cobra.Command) { | ||
_ = viper.BindPFlag(f.key, command.Flags().Lookup(f.key)) | ||
} | ||
|
||
func NewStringFlag(key string, shorthand string, defaultValue string, usage string) *StringFlag { | ||
return &StringFlag{ | ||
key: key, | ||
shorthand: shorthand, | ||
defaultValue: defaultValue, | ||
usage: usage, | ||
} | ||
} | ||
|
||
type BoolFlag struct { | ||
key string | ||
shorthand string | ||
defaultValue bool | ||
usage string | ||
} | ||
|
||
func (f *BoolFlag) DefineFlag(command *cobra.Command) { | ||
command.Flags().BoolP(f.key, f.shorthand, f.defaultValue, f.usage) | ||
} | ||
|
||
func (f *BoolFlag) BindFlag(command *cobra.Command) { | ||
_ = viper.BindPFlag(f.key, command.Flags().Lookup(f.key)) | ||
} | ||
|
||
func NewBoolFlag(key string, shorthand string, defaultValue bool, usage string) *BoolFlag { | ||
return &BoolFlag{ | ||
key: key, | ||
shorthand: shorthand, | ||
defaultValue: defaultValue, | ||
usage: usage, | ||
} | ||
} | ||
|
||
// BindFlags we nned to separate binding from declaration if we dont have unique name for each flag | ||
func BindFlags(command *cobra.Command, flags []FlagArgument) { | ||
for _, flag := range flags { | ||
flag.BindFlag(command) | ||
} | ||
} | ||
|
||
func DefineFlags(command *cobra.Command, flags []FlagArgument) { | ||
for _, flag := range flags { | ||
flag.DefineFlag(command) | ||
} | ||
} |