forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stacks.go
69 lines (56 loc) · 2.11 KB
/
stacks.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
package commands
import (
"github.com/cloudfoundry/cli/cf/api/stacks"
"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/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/cloudfoundry/cli/flags"
)
type ListStacks struct {
ui terminal.UI
config core_config.Reader
stacksRepo stacks.StackRepository
}
func init() {
command_registry.Register(&ListStacks{})
}
func (cmd *ListStacks) MetaData() command_registry.CommandMetadata {
return command_registry.CommandMetadata{
Name: "stacks",
Description: T("List all stacks (a stack is a pre-built file system, including an operating system, that can run apps)"),
Usage: T("CF_NAME stacks"),
}
}
func (cmd *ListStacks) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) (reqs []requirements.Requirement, err error) {
if len(fc.Args()) != 0 {
cmd.ui.Failed(T("Incorrect Usage. Requires app name as argument\n\n") + command_registry.Commands.CommandUsage("stacks"))
}
reqs = append(reqs, requirementsFactory.NewLoginRequirement())
return
}
func (cmd *ListStacks) SetDependency(deps command_registry.Dependency, pluginCall bool) command_registry.Command {
cmd.ui = deps.Ui
cmd.config = deps.Config
cmd.stacksRepo = deps.RepoLocator.GetStackRepository()
return cmd
}
func (cmd *ListStacks) Execute(c flags.FlagContext) {
cmd.ui.Say(T("Getting stacks in org {{.OrganizationName}} / space {{.SpaceName}} as {{.Username}}...",
map[string]interface{}{"OrganizationName": terminal.EntityNameColor(cmd.config.OrganizationFields().Name),
"SpaceName": terminal.EntityNameColor(cmd.config.SpaceFields().Name),
"Username": terminal.EntityNameColor(cmd.config.Username())}))
stacks, apiErr := cmd.stacksRepo.FindAll()
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
cmd.ui.Ok()
cmd.ui.Say("")
table := terminal.NewTable(cmd.ui, []string{T("name"), T("description")})
for _, stack := range stacks {
table.Add(stack.Name, stack.Description)
}
table.Print()
}