joao/cmd/get.go

137 lines
3.4 KiB
Go
Raw Normal View History

// Copyright © 2022 Roberto Hidalgo <joao@un.rob.mx>
2022-12-31 06:14:08 +00:00
// SPDX-License-Identifier: Apache-2.0
package cmd
import (
"encoding/json"
"fmt"
"strings"
2022-12-19 03:09:05 +00:00
"git.rob.mx/nidito/chinampa/pkg/command"
"git.rob.mx/nidito/joao/pkg/config"
"gopkg.in/yaml.v3"
)
2023-01-10 07:02:10 +00:00
var Get = &command.Command{
Path: []string{"get"},
Summary: "retrieves configuration",
Description: `
looks at the filesystem or remotely, using 1password (over the CLI if available, or 1password-connect, if configured).
2022-12-31 06:14:08 +00:00
` + "`--output`" + ` can be one of:
- **raw**:
- when querying for scalar values this will return a non-quoted version of the values
- when querying for trees or lists, this will output JSON
- **yaml**: formats the value at the given path as YAML
- **json**: formats the value at the given path as JSON
- **op**: formats the whole configuration as a 1Password item`,
Arguments: command.Arguments{
{
Name: "config",
Description: "The configuration to get from",
Required: true,
Values: &command.ValueSource{
Files: &[]string{"yaml", "yml"},
},
},
{
Name: "path",
Default: ".",
Description: "A dot-delimited path to extract from CONFIG",
Values: &command.ValueSource{
2022-12-23 05:38:37 +00:00
Func: config.AutocompleteKeysAndParents,
},
},
},
Options: command.Options{
"output": {
ShortName: "o",
Description: "the format to use for rendering output",
Default: "raw",
Values: &command.ValueSource{
2022-12-20 05:49:37 +00:00
Static: &[]string{"raw", "json", "yaml", "diff-yaml", "op"},
},
},
"redacted": {
Description: "Do not print secret values",
Type: "bool",
2023-01-10 07:02:10 +00:00
Default: false,
},
"remote": {
Description: "Get values from 1password",
Type: "bool",
2023-01-10 07:02:10 +00:00
Default: false,
},
},
Action: func(cmd *command.Command) error {
path := cmd.Arguments[0].ToValue().(string)
query := cmd.Arguments[1].ToValue().(string)
2022-11-16 07:38:04 +00:00
remote := cmd.Options["remote"].ToValue().(bool)
format := cmd.Options["output"].ToValue().(string)
redacted := cmd.Options["redacted"].ToValue().(bool)
2022-11-16 07:38:04 +00:00
2022-12-09 06:43:07 +00:00
cfg, err := config.Load(path, remote)
if err != nil {
return err
}
if query == "" || query == "." {
switch format {
2022-12-20 05:49:37 +00:00
case "yaml", "raw", "diff-yaml":
modes := []config.OutputMode{}
if redacted {
modes = append(modes, config.OutputModeRedacted)
}
if format == "diff-yaml" {
modes = append(modes, config.OutputModeNoComments, config.OutputModeSorted)
}
bytes, err := cfg.AsYAML(modes...)
if err != nil {
return err
}
_, err = cmd.Cobra.OutOrStdout().Write(bytes)
return err
case "json", "op":
bytes, err := cfg.AsJSON(redacted, format == "op")
if err != nil {
return err
}
_, err = cmd.Cobra.OutOrStdout().Write(bytes)
return err
}
return fmt.Errorf("unknown format %s", format)
}
parts := strings.Split(query, ".")
entry := cfg.Tree
for _, part := range parts {
entry = entry.ChildNamed(part)
if entry == nil {
return fmt.Errorf("value not found at %s of %s", part, query)
}
}
var bytes []byte
if len(entry.Content) > 0 {
val := entry.AsMap()
if format == "yaml" {
enc := yaml.NewEncoder(cmd.Cobra.OutOrStdout())
2022-11-16 07:38:04 +00:00
enc.SetIndent(2)
return enc.Encode(val)
}
bytes, err = json.Marshal(val)
if err != nil {
return err
}
} else {
bytes = []byte(entry.String())
}
_, err = cmd.Cobra.OutOrStdout().Write(bytes)
return err
},
2023-01-10 07:02:10 +00:00
}