forked from sensu/sensu-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.go
80 lines (70 loc) · 1.59 KB
/
info.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package asset
import (
"errors"
"fmt"
"io"
"strings"
"github.com/sensu/sensu-go/cli"
"github.com/sensu/sensu-go/cli/commands/helpers"
"github.com/sensu/sensu-go/cli/elements/list"
"github.com/sensu/sensu-go/types"
"github.com/spf13/cobra"
)
// InfoCommand defines new asset info command
func InfoCommand(cli *cli.SensuCli) *cobra.Command {
cmd := &cobra.Command{
Use: "info [NAME]",
Short: "show detailed information on given asset",
SilenceUsage: true,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) != 1 {
_ = cmd.Help()
return errors.New("invalid argument(s) received")
}
// Fetch handlers from API
assetName := args[0]
r, err := cli.Client.FetchAsset(assetName)
if err != nil {
return err
}
// Determine the format to use to output the data
flag := helpers.GetChangedStringValueFlag("format", cmd.Flags())
format := cli.Config.Format()
return helpers.PrintFormatted(flag, format, r, cmd.OutOrStdout(), printToList)
},
}
helpers.AddFormatFlag(cmd.Flags())
return cmd
}
func printToList(v interface{}, writer io.Writer) error {
r, ok := v.(*types.Asset)
if !ok {
return fmt.Errorf("%t is not an Asset", v)
}
cfg := &list.Config{
Title: r.Name,
Rows: []*list.Row{
{
Label: "Name",
Value: r.Name,
},
{
Label: "Namespace",
Value: r.Namespace,
},
{
Label: "URL",
Value: r.URL,
},
{
Label: "SHA-512 Checksum",
Value: r.Sha512,
},
{
Label: "Filters",
Value: strings.Join(r.Filters, ", "),
},
},
}
return list.Print(writer, cfg)
}