-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathlist.go
102 lines (88 loc) · 2.98 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// Copyright 2020 MongoDB Inc
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package disks
import (
"context"
"fmt"
"github.com/mongodb/mongodb-atlas-cli/atlascli/internal/cli"
"github.com/mongodb/mongodb-atlas-cli/atlascli/internal/cli/require"
"github.com/mongodb/mongodb-atlas-cli/atlascli/internal/config"
"github.com/mongodb/mongodb-atlas-cli/atlascli/internal/store"
"github.com/mongodb/mongodb-atlas-cli/atlascli/internal/usage"
"github.com/spf13/cobra"
)
type ListsOpts struct {
cli.ProjectOpts
cli.OutputOpts
cli.ListOpts
host string
port int
store store.ProcessDisksLister
}
func (opts *ListsOpts) initStore(ctx context.Context) func() error {
return func() error {
var err error
opts.store, err = store.New(store.AuthenticatedPreset(config.Default()), store.WithContext(ctx))
return err
}
}
func (opts *ListsOpts) Run() error {
listOpts := opts.NewAtlasListOptions()
r, err := opts.store.ProcessDisks(opts.ConfigProjectID(), opts.host, opts.port, listOpts)
if err != nil {
return err
}
return opts.Print(r)
}
var listTemplate = `PARTITION NAME{{range valueOrEmptySlice .Results}}
{{.PartitionName}}{{end}}
`
// atlas metric(s) disks lists <hostname:port>.
func ListBuilder() *cobra.Command {
opts := &ListsOpts{}
cmd := &cobra.Command{
Use: "list <hostname:port>",
Long: `To return the hostname and port needed for this command, run:
$ atlas processes list
` + fmt.Sprintf(usage.RequiredRole, "Project Read Only"),
Short: "Return all disks or disk partitions on the specified host for your project.",
Aliases: []string{"ls"},
Args: require.ExactArgs(1),
Annotations: map[string]string{
"hostname:portDesc": "Hostname and port number of the instance running the MongoDB process.",
"output": listTemplate,
},
Example: ` # Return a JSON-formatted list of disks and partitions for the host atlas-lnmtkm-shard-00-00.ajlj3.mongodb.net:27017
atlas metrics disks list atlas-lnmtkm-shard-00-00.ajlj3.mongodb.net:27017 --output json`,
PreRunE: func(cmd *cobra.Command, _ []string) error {
return opts.PreRunE(
opts.ValidateProjectID,
opts.initStore(cmd.Context()),
opts.InitOutput(cmd.OutOrStdout(), listTemplate),
)
},
RunE: func(_ *cobra.Command, args []string) error {
var err error
opts.host, opts.port, err = cli.GetHostnameAndPort(args[0])
if err != nil {
return err
}
return opts.Run()
},
}
opts.AddListOptsFlags(cmd)
opts.AddProjectOptsFlags(cmd)
opts.AddOutputOptFlags(cmd)
return cmd
}