forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spaces.go
93 lines (78 loc) · 2.52 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package space
import (
"github.com/cloudfoundry/cli/cf/api/spaces"
"github.com/cloudfoundry/cli/cf/command_registry"
"github.com/cloudfoundry/cli/cf/configuration/core_config"
. "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/cloudfoundry/cli/flags"
"github.com/cloudfoundry/cli/plugin/models"
)
type ListSpaces struct {
ui terminal.UI
config core_config.Reader
spaceRepo spaces.SpaceRepository
pluginModel *[]plugin_models.GetSpaces_Model
pluginCall bool
}
func init() {
command_registry.Register(&ListSpaces{})
}
func (cmd *ListSpaces) MetaData() command_registry.CommandMetadata {
return command_registry.CommandMetadata{
Name: "spaces",
Description: T("List all spaces in an org"),
Usage: T("CF_NAME spaces"),
}
}
func (cmd *ListSpaces) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) (reqs []requirements.Requirement, err error) {
if len(fc.Args()) != 0 {
cmd.ui.Failed(T("Incorrect Usage. No argument required\n\n") + command_registry.Commands.CommandUsage("spaces"))
}
reqs = []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
requirementsFactory.NewTargetedOrgRequirement(),
}
return
}
func (cmd *ListSpaces) SetDependency(deps command_registry.Dependency, pluginCall bool) command_registry.Command {
cmd.ui = deps.Ui
cmd.config = deps.Config
cmd.spaceRepo = deps.RepoLocator.GetSpaceRepository()
cmd.pluginCall = pluginCall
cmd.pluginModel = deps.PluginModels.Spaces
return cmd
}
func (cmd *ListSpaces) Execute(c flags.FlagContext) {
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
if cmd.pluginCall {
s := plugin_models.GetSpaces_Model{}
s.Name = space.Name
s.Guid = space.Guid
*(cmd.pluginModel) = append(*(cmd.pluginModel), s)
}
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"))
}
}