-
Notifications
You must be signed in to change notification settings - Fork 63
/
list.go
85 lines (70 loc) · 2.13 KB
/
list.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
81
82
83
84
85
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2023, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package list
import (
"context"
"fmt"
"os"
"github.com/MakeNowJust/heredoc"
"github.com/spf13/cobra"
kraftcloud "sdk.kraft.cloud"
"kraftkit.sh/cmdfactory"
"kraftkit.sh/config"
"kraftkit.sh/internal/cli/kraft/cloud/utils"
"kraftkit.sh/log"
)
type ListOptions struct {
Output string `long:"output" short:"o" usage:"Set output format. Options: table,yaml,json,full" default:"table"`
Watch bool `long:"watch" short:"w" usage:"After listing watch for changes."`
metro string
}
func NewCmd() *cobra.Command {
cmd, err := cmdfactory.New(&ListOptions{}, cobra.Command{
Short: "List all volumes at a metro for your account",
Use: "list",
Aliases: []string{"ls"},
Long: heredoc.Doc(`
List all volumes in your account.
`),
Example: heredoc.Doc(`
# List all volumes in your account.
$ kraft cloud vol ls
# List all volumes in your account in JSON format.
$ kraft cloud volume list -o json
`),
Annotations: map[string]string{
cmdfactory.AnnotationHelpGroup: "kraftcloud-vol",
},
})
if err != nil {
panic(err)
}
return cmd
}
func (opts *ListOptions) Pre(cmd *cobra.Command, _ []string) error {
opts.metro = cmd.Flag("metro").Value.String()
if opts.metro == "" {
opts.metro = os.Getenv("KRAFTCLOUD_METRO")
}
if opts.metro == "" {
return fmt.Errorf("kraftcloud metro is unset")
}
log.G(cmd.Context()).WithField("metro", opts.metro).Debug("using")
return nil
}
func (opts *ListOptions) Run(ctx context.Context, args []string) error {
auth, err := config.GetKraftCloudAuthConfigFromContext(ctx)
if err != nil {
return fmt.Errorf("could not retrieve credentials: %w", err)
}
client := kraftcloud.NewVolumesClient(
kraftcloud.WithToken(config.GetKraftCloudTokenAuthConfig(*auth)),
)
volumes, err := client.WithMetro(opts.metro).List(ctx)
if err != nil {
return fmt.Errorf("could not list volumes: %w", err)
}
return utils.PrintVolumes(ctx, opts.Output, volumes...)
}