-
Notifications
You must be signed in to change notification settings - Fork 2k
/
quota_list.go
119 lines (94 loc) · 2.42 KB
/
quota_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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package command
import (
"fmt"
"sort"
"strings"
"github.com/hashicorp/nomad/api"
"github.com/posener/complete"
)
type QuotaListCommand struct {
Meta
}
func (c *QuotaListCommand) Help() string {
helpText := `
Usage: nomad quota list [options]
List is used to list available quota specifications.
General Options:
` + generalOptionsUsage() + `
List Options:
-json
Output the quota specifications in a JSON format.
-t
Format and display the quota specifications using a Go template.
`
return strings.TrimSpace(helpText)
}
func (c *QuotaListCommand) AutocompleteFlags() complete.Flags {
return mergeAutocompleteFlags(c.Meta.AutocompleteFlags(FlagSetClient),
complete.Flags{
"-json": complete.PredictNothing,
"-t": complete.PredictAnything,
})
}
func (c *QuotaListCommand) AutocompleteArgs() complete.Predictor {
return complete.PredictNothing
}
func (c *QuotaListCommand) Synopsis() string {
return "List quota specifications"
}
func (c *QuotaListCommand) Name() string { return "quota list" }
func (c *QuotaListCommand) Run(args []string) int {
var json bool
var tmpl string
flags := c.Meta.FlagSet(c.Name(), FlagSetClient)
flags.Usage = func() { c.Ui.Output(c.Help()) }
flags.BoolVar(&json, "json", false, "")
flags.StringVar(&tmpl, "t", "", "")
if err := flags.Parse(args); err != nil {
return 1
}
// Check that we got no arguments
args = flags.Args()
if l := len(args); l != 0 {
c.Ui.Error("This command takes no arguments")
c.Ui.Error(commandErrorText(c))
return 1
}
// Get the HTTP client
client, err := c.Meta.Client()
if err != nil {
c.Ui.Error(fmt.Sprintf("Error initializing client: %s", err))
return 1
}
quotas, _, err := client.Quotas().List(nil)
if err != nil {
c.Ui.Error(fmt.Sprintf("Error retrieving quotas: %s", err))
return 1
}
if json || len(tmpl) > 0 {
out, err := Format(json, tmpl, quotas)
if err != nil {
c.Ui.Error(err.Error())
return 1
}
c.Ui.Output(out)
return 0
}
c.Ui.Output(formatQuotaSpecs(quotas))
return 0
}
func formatQuotaSpecs(quotas []*api.QuotaSpec) string {
if len(quotas) == 0 {
return "No quotas found"
}
// Sort the output by quota name
sort.Slice(quotas, func(i, j int) bool { return quotas[i].Name < quotas[j].Name })
rows := make([]string, len(quotas)+1)
rows[0] = "Name|Description"
for i, qs := range quotas {
rows[i+1] = fmt.Sprintf("%s|%s",
qs.Name,
qs.Description)
}
return formatList(rows)
}