-
Notifications
You must be signed in to change notification settings - Fork 20
/
runstatus_service_list.go
71 lines (56 loc) · 1.6 KB
/
runstatus_service_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
package cmd
import (
"fmt"
"strings"
"github.com/spf13/cobra"
)
type runstatusServiceListItemOutput struct {
ID int `page:"id" output:"-"`
Service string `json:"service"`
State string `json:"state"`
Page string `page:"page"`
}
type runstatusServiceListOutput []runstatusServiceListItemOutput
func (o *runstatusServiceListOutput) toJSON() { outputJSON(o) }
func (o *runstatusServiceListOutput) toText() { outputText(o) }
func (o *runstatusServiceListOutput) toTable() {
for i := range *o {
(*o)[i].State = strings.ToUpper(strings.Replace((*o)[i].State, "_", " ", -1))
}
outputTable(o)
}
func init() {
runstatusServiceCmd.AddCommand(&cobra.Command{
Use: "list [PAGE]...",
Short: "List services",
Long: fmt.Sprintf(`This command lists existing runstat.us services.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&runstatusServiceListOutput{}), ", ")),
Aliases: gListAlias,
RunE: func(cmd *cobra.Command, args []string) error {
return output(runstatusListServices(args))
},
})
}
func runstatusListServices(pageNames []string) (outputter, error) {
pages, err := getRunstatusPages(pageNames)
if err != nil {
return nil, err
}
out := runstatusServiceListOutput{}
for _, page := range pages {
services, err := csRunstatus.ListRunstatusServices(gContext, page)
if err != nil {
return nil, err
}
for _, service := range services {
out = append(out, runstatusServiceListItemOutput{
ID: service.ID,
Service: service.Name,
State: service.State,
Page: page.Subdomain,
})
}
}
return &out, nil
}