-
Notifications
You must be signed in to change notification settings - Fork 928
/
services.go
137 lines (115 loc) · 3.69 KB
/
services.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package service
import (
"strings"
"code.cloudfoundry.org/cli/cf/commandregistry"
"code.cloudfoundry.org/cli/cf/flags"
. "code.cloudfoundry.org/cli/cf/i18n"
"code.cloudfoundry.org/cli/plugin/models"
"code.cloudfoundry.org/cli/cf/api"
"code.cloudfoundry.org/cli/cf/configuration/coreconfig"
"code.cloudfoundry.org/cli/cf/requirements"
"code.cloudfoundry.org/cli/cf/terminal"
)
type ListServices struct {
ui terminal.UI
config coreconfig.Reader
serviceSummaryRepo api.ServiceSummaryRepository
pluginModel *[]plugin_models.GetServices_Model
pluginCall bool
}
func init() {
commandregistry.Register(&ListServices{})
}
func (cmd *ListServices) MetaData() commandregistry.CommandMetadata {
return commandregistry.CommandMetadata{
Name: "services",
ShortName: "s",
Description: T("List all service instances in the target space"),
Usage: []string{
"CF_NAME services",
},
}
}
func (cmd *ListServices) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) ([]requirements.Requirement, error) {
usageReq := requirements.NewUsageRequirement(commandregistry.CLICommandUsagePresenter(cmd),
T("No argument required"),
func() bool {
return len(fc.Args()) != 0
},
)
reqs := []requirements.Requirement{
usageReq,
requirementsFactory.NewLoginRequirement(),
requirementsFactory.NewTargetedSpaceRequirement(),
}
return reqs, nil
}
func (cmd *ListServices) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.config = deps.Config
cmd.serviceSummaryRepo = deps.RepoLocator.GetServiceSummaryRepository()
cmd.pluginModel = deps.PluginModels.Services
cmd.pluginCall = pluginCall
return cmd
}
func (cmd *ListServices) Execute(fc flags.FlagContext) error {
cmd.ui.Say(T("Getting services in org {{.OrgName}} / space {{.SpaceName}} as {{.CurrentUser}}...",
map[string]interface{}{
"OrgName": terminal.EntityNameColor(cmd.config.OrganizationFields().Name),
"SpaceName": terminal.EntityNameColor(cmd.config.SpaceFields().Name),
"CurrentUser": terminal.EntityNameColor(cmd.config.Username()),
}))
serviceInstances, err := cmd.serviceSummaryRepo.GetSummariesInCurrentSpace()
if err != nil {
return err
}
cmd.ui.Ok()
cmd.ui.Say("")
if len(serviceInstances) == 0 {
cmd.ui.Say(T("No services found"))
return nil
}
table := cmd.ui.Table([]string{T("name"), T("service"), T("plan"), T("bound apps"), T("last operation")})
for _, instance := range serviceInstances {
var serviceColumn string
var serviceStatus string
if instance.IsUserProvided() {
serviceColumn = T("user-provided")
} else {
serviceColumn = instance.ServiceOffering.Label
}
serviceStatus = InstanceStateToStatus(instance.LastOperation.Type, instance.LastOperation.State, instance.IsUserProvided())
table.Add(
instance.Name,
serviceColumn,
instance.ServicePlan.Name,
strings.Join(instance.ApplicationNames, ", "),
serviceStatus,
)
if cmd.pluginCall {
s := plugin_models.GetServices_Model{
Name: instance.Name,
Guid: instance.GUID,
ServicePlan: plugin_models.GetServices_ServicePlan{
Name: instance.ServicePlan.Name,
Guid: instance.ServicePlan.GUID,
},
Service: plugin_models.GetServices_ServiceFields{
Name: instance.ServiceOffering.Label,
},
ApplicationNames: instance.ApplicationNames,
LastOperation: plugin_models.GetServices_LastOperation{
Type: instance.LastOperation.Type,
State: instance.LastOperation.State,
},
IsUserProvided: instance.IsUserProvided(),
}
*(cmd.pluginModel) = append(*(cmd.pluginModel), s)
}
}
err = table.Print()
if err != nil {
return err
}
return nil
}