-
Notifications
You must be signed in to change notification settings - Fork 20
/
runstatus_list.go
73 lines (59 loc) · 1.59 KB
/
runstatus_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
package cmd
import (
"fmt"
"strings"
"github.com/spf13/cobra"
)
type runstatusPageListItemOutput struct {
ID int `json:"id" output:"-"`
Name string `json:"name"`
PublicURL string `json:"public_url"`
}
type runstatusPageListOutput []runstatusPageListItemOutput
func (o *runstatusPageListOutput) toJSON() { outputJSON(o) }
func (o *runstatusPageListOutput) toText() { outputText(o) }
func (o *runstatusPageListOutput) toTable() { outputTable(o) }
func init() {
runstatusCmd.AddCommand(&cobra.Command{
Use: "list [FILTER]...",
Short: "List runstat.us pages",
Long: fmt.Sprintf(`This command lists existing runstat.us pages.
Optional patterns can be provided to filter results by name.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&runstatusPageListOutput{}), ", ")),
Aliases: gListAlias,
RunE: func(cmd *cobra.Command, args []string) error {
return output(listRunstatusPages(args))
},
})
}
func listRunstatusPages(filters []string) (outputter, error) {
pages, err := csRunstatus.ListRunstatusPages(gContext)
if err != nil {
return nil, err
}
out := runstatusPageListOutput{}
for _, p := range pages {
keep := true
if len(filters) > 0 {
keep = false
s := strings.ToLower(p.Subdomain)
for _, filter := range filters {
substr := strings.ToLower(filter)
if strings.Contains(s, substr) {
keep = true
break
}
}
}
if !keep {
continue
}
out = append(out, runstatusPageListItemOutput{
ID: p.ID,
Name: p.Subdomain,
PublicURL: p.PublicURL,
})
}
return &out, nil
}