sq/cli/cmd_group.go

79 lines
1.6 KiB
Go
Raw Normal View History

package cli
import (
"strings"
"github.com/neilotoole/sq/cli/flag"
"github.com/spf13/cobra"
)
func newGroupCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "group [GROUP]",
RunE: execGroup,
Args: cobra.MaximumNArgs(1),
ValidArgsFunction: completeGroup(1),
Short: "Get or set active group",
Long: `Get or set active group. If no argument provided, get the active group.
Otherwise, set GROUP as the active group. An error is returned if GROUP does
not exist.
Use 'sq ls -g' to list groups.`,
Example: ` # Get active group ("dev" in this case).
$ sq group
dev
# Set "prod" as active group
$ sq group prod
prod
# Reset to the root group
$ sq group /
/`,
}
cmd.Flags().BoolP(flag.JSON, flag.JSONShort, false, flag.JSONUsage)
cmd.Flags().Bool(flag.Pretty, true, flag.PrettyUsage)
cmd.Flags().BoolP(flag.YAML, flag.YAMLShort, false, flag.YAMLUsage)
return cmd
}
func execGroup(cmd *cobra.Command, args []string) error {
rc := RunContextFrom(cmd.Context())
cfg := rc.Config
if len(args) == 0 {
// Get the active group
groupName := cfg.Collection.ActiveGroup()
tree, err := cfg.Collection.Tree(groupName)
if err != nil {
return err
}
return rc.writers.srcw.Group(tree)
}
group := strings.TrimSpace(args[0])
if group == "/" {
group = ""
}
if err := cfg.Collection.SetActiveGroup(group); err != nil {
return err
}
2023-04-22 16:37:07 +03:00
if err := rc.ConfigStore.Save(cmd.Context(), cfg); err != nil {
return err
}
groupName := cfg.Collection.ActiveGroup()
tree, err := cfg.Collection.Tree(groupName)
if err != nil {
return err
}
return rc.writers.srcw.Group(tree)
}