-
Notifications
You must be signed in to change notification settings - Fork 929
/
orgs_command.go
77 lines (62 loc) · 1.75 KB
/
orgs_command.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
package v2
import (
"code.cloudfoundry.org/cli/actor/sharedaction"
"code.cloudfoundry.org/cli/actor/v2action"
"code.cloudfoundry.org/cli/command"
"code.cloudfoundry.org/cli/command/v2/shared"
"code.cloudfoundry.org/cli/util/ui"
)
//go:generate counterfeiter . OrgsActor
type OrgsActor interface {
GetOrganizations() ([]v2action.Organization, v2action.Warnings, error)
}
type OrgsCommand struct {
usage interface{} `usage:"CF_NAME orgs"`
UI command.UI
Config command.Config
SharedActor command.SharedActor
Actor OrgsActor
}
func (cmd *OrgsCommand) Setup(config command.Config, ui command.UI) error {
cmd.Config = config
cmd.UI = ui
cmd.SharedActor = sharedaction.NewActor()
ccClient, _, err := shared.NewClients(config, ui, true)
if err != nil {
return err
}
cmd.Actor = v2action.NewActor(ccClient, nil, config)
return nil
}
func (cmd OrgsCommand) Execute(args []string) error {
err := cmd.SharedActor.CheckTarget(cmd.Config, false, false)
if err != nil {
return shared.HandleError(err)
}
user, err := cmd.Config.CurrentUser()
if err != nil {
return err
}
cmd.UI.DisplayTextWithFlavor("Getting orgs as {{.CurrentUser}}...", map[string]interface{}{
"CurrentUser": user.Name,
})
cmd.UI.DisplayNewline()
orgs, warnings, err := cmd.Actor.GetOrganizations()
cmd.UI.DisplayWarnings(warnings)
if err != nil {
return shared.HandleError(err)
}
if len(orgs) == 0 {
cmd.UI.DisplayText("No orgs found.")
} else {
cmd.displayOrgs(orgs)
}
return nil
}
func (cmd OrgsCommand) displayOrgs(orgs []v2action.Organization) {
table := [][]string{{cmd.UI.TranslateText("name")}}
for _, org := range orgs {
table = append(table, []string{org.Name})
}
cmd.UI.DisplayTableWithHeader("", table, ui.DefaultTableSpacePadding)
}