forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spaces.go
70 lines (61 loc) · 1.91 KB
/
spaces.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
package space
import (
"github.com/cloudfoundry/cli/cf/api/spaces"
"github.com/cloudfoundry/cli/cf/command_metadata"
"github.com/cloudfoundry/cli/cf/configuration"
. "github.com/cloudfoundry/cli/cf/i18n"
"github.com/cloudfoundry/cli/cf/models"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/codegangsta/cli"
)
type ListSpaces struct {
ui terminal.UI
config configuration.Reader
spaceRepo spaces.SpaceRepository
}
func NewListSpaces(ui terminal.UI, config configuration.Reader, spaceRepo spaces.SpaceRepository) (cmd ListSpaces) {
cmd.ui = ui
cmd.config = config
cmd.spaceRepo = spaceRepo
return
}
func (cmd ListSpaces) Metadata() command_metadata.CommandMetadata {
return command_metadata.CommandMetadata{
Name: "spaces",
Description: T("List all spaces in an org"),
Usage: T("CF_NAME spaces"),
}
}
func (cmd ListSpaces) GetRequirements(requirementsFactory requirements.Factory, c *cli.Context) (reqs []requirements.Requirement, err error) {
reqs = []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
requirementsFactory.NewTargetedOrgRequirement(),
}
return
}
func (cmd ListSpaces) Run(c *cli.Context) {
cmd.ui.Say(T("Getting spaces in org {{.TargetOrgName}} as {{.CurrentUser}}...\n",
map[string]interface{}{
"TargetOrgName": terminal.EntityNameColor(cmd.config.OrganizationFields().Name),
"CurrentUser": terminal.EntityNameColor(cmd.config.Username()),
}))
foundSpaces := false
table := cmd.ui.Table([]string{T("name")})
apiErr := cmd.spaceRepo.ListSpaces(func(space models.Space) bool {
table.Add(space.Name)
foundSpaces = true
return true
})
table.Print()
if apiErr != nil {
cmd.ui.Failed(T("Failed fetching spaces.\n{{.ErrorDescription}}",
map[string]interface{}{
"ErrorDescription": apiErr.Error(),
}))
return
}
if !foundSpaces {
cmd.ui.Say(T("No spaces found"))
}
}