sq/cli/cmd_src.go
Neil O'Toole a1ba6578da
"add" command supports hiding password input (#132)
* renamed cmdFlagChanged to flagChanged

* initial stdin stuff working

* wip: mostly working as expected

* Docs and lots of cleanup

* Mostly docs

* fixed behavior of source.LocationWithPassword, and tests
2022-12-24 21:04:18 -07:00

52 lines
1016 B
Go

package cli
import (
"github.com/spf13/cobra"
)
func newSrcCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "src [@HANDLE]",
RunE: execSrc,
Example: ` # Get active data source
$ sq src
# Set @my1 as active data source
$ sq src @my1`,
Args: cobra.MaximumNArgs(1),
ValidArgsFunction: completeHandle(1),
Short: "Get or set active data source",
Long: `Get or set active data source. If no argument provided, get the active data
source. Otherwise, set @HANDLE as the active data source.`,
}
return cmd
}
func execSrc(cmd *cobra.Command, args []string) error {
rc := RunContextFrom(cmd.Context())
cfg := rc.Config
if len(args) == 0 {
// Get the active data source
src := cfg.Sources.Active()
if src == nil {
return nil
}
return rc.writers.srcw.Source(src)
}
src, err := cfg.Sources.SetActive(args[0])
if err != nil {
return err
}
err = rc.ConfigStore.Save(cfg)
if err != nil {
return err
}
return rc.writers.srcw.Source(src)
}