-
Notifications
You must be signed in to change notification settings - Fork 928
/
update_service.go
194 lines (165 loc) · 6.32 KB
/
update_service.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package service
import (
"errors"
"fmt"
"strings"
"code.cloudfoundry.org/cli/cf"
"code.cloudfoundry.org/cli/cf/actors/planbuilder"
"code.cloudfoundry.org/cli/cf/api"
"code.cloudfoundry.org/cli/cf/commandregistry"
"code.cloudfoundry.org/cli/cf/configuration/coreconfig"
"code.cloudfoundry.org/cli/cf/flags"
. "code.cloudfoundry.org/cli/cf/i18n"
"code.cloudfoundry.org/cli/cf/models"
"code.cloudfoundry.org/cli/cf/requirements"
"code.cloudfoundry.org/cli/cf/terminal"
"code.cloudfoundry.org/cli/cf/uihelpers"
"code.cloudfoundry.org/cli/util/json"
)
type UpdateService struct {
ui terminal.UI
config coreconfig.Reader
serviceRepo api.ServiceRepository
planBuilder planbuilder.PlanBuilder
}
func init() {
commandregistry.Register(&UpdateService{})
}
func (cmd *UpdateService) MetaData() commandregistry.CommandMetadata {
baseUsage := T("CF_NAME update-service SERVICE_INSTANCE [-p NEW_PLAN] [-c PARAMETERS_AS_JSON] [-t TAGS]")
paramsUsage := T(` Optionally provide service-specific configuration parameters in a valid JSON object in-line.
CF_NAME update-service -c '{"name":"value","name":"value"}'
Optionally provide a file containing service-specific configuration parameters in a valid JSON object.
The path to the parameters file can be an absolute or relative path to a file.
CF_NAME update-service -c PATH_TO_FILE
Example of valid JSON object:
{
"cluster_nodes": {
"count": 5,
"memory_mb": 1024
}
}`)
tagsUsage := T(` Optionally provide a list of comma-delimited tags that will be written to the VCAP_SERVICES environment variable for any bound applications.`)
fs := make(map[string]flags.FlagSet)
fs["p"] = &flags.StringFlag{ShortName: "p", Usage: T("Change service plan for a service instance")}
fs["c"] = &flags.StringFlag{ShortName: "c", Usage: T("Valid JSON object containing service-specific configuration parameters, provided either in-line or in a file. For a list of supported configuration parameters, see documentation for the particular service offering.")}
fs["t"] = &flags.StringFlag{ShortName: "t", Usage: T("User provided tags")}
return commandregistry.CommandMetadata{
Name: "update-service",
Description: T("Update a service instance"),
Usage: []string{
baseUsage,
"\n\n",
paramsUsage,
"\n\n",
tagsUsage,
},
Examples: []string{
`CF_NAME update-service mydb -p gold`,
`CF_NAME update-service mydb -c '{"ram_gb":4}'`,
`CF_NAME update-service mydb -c ~/workspace/tmp/instance_config.json`,
`CF_NAME update-service mydb -t "list,of, tags"`,
},
Flags: fs,
}
}
func (cmd *UpdateService) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) ([]requirements.Requirement, error) {
if len(fc.Args()) != 1 {
cmd.ui.Failed(T("Incorrect Usage. Requires an argument\n\n") + commandregistry.Commands.CommandUsage("update-service"))
return nil, fmt.Errorf("Incorrect usage: %d arguments of %d required", len(fc.Args()), 1)
}
reqs := []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
requirementsFactory.NewTargetedSpaceRequirement(),
}
if fc.String("p") != "" {
reqs = append(reqs, requirementsFactory.NewMinAPIVersionRequirement("Updating a plan", cf.UpdateServicePlanMinimumAPIVersion))
}
return reqs, nil
}
func (cmd *UpdateService) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.config = deps.Config
cmd.serviceRepo = deps.RepoLocator.GetServiceRepository()
cmd.planBuilder = deps.PlanBuilder
return cmd
}
func (cmd *UpdateService) Execute(c flags.FlagContext) error {
planName := c.String("p")
params := c.String("c")
tagsSet := c.IsSet("t")
tagsList := c.String("t")
if planName == "" && params == "" && tagsSet == false {
cmd.ui.Ok()
cmd.ui.Say(T("No changes were made"))
return nil
}
serviceInstanceName := c.Args()[0]
serviceInstance, err := cmd.serviceRepo.FindInstanceByName(serviceInstanceName)
if err != nil {
return err
}
paramsMap, err := json.ParseJSONFromFileOrString(params)
if err != nil {
return errors.New(T("Invalid configuration provided for -c flag. Please provide a valid JSON object or path to a file containing a valid JSON object."))
}
tags := uihelpers.ParseTags(tagsList)
var plan models.ServicePlanFields
if planName != "" {
plan, err = cmd.findPlan(serviceInstance, planName)
if err != nil {
return err
}
}
cmd.printUpdatingServiceInstanceMessage(serviceInstanceName)
err = cmd.serviceRepo.UpdateServiceInstance(serviceInstance.GUID, plan.GUID, paramsMap, tags)
if err != nil {
return err
}
err = printSuccessMessageForServiceInstance(serviceInstanceName, cmd.serviceRepo, cmd.ui)
if err != nil {
return err
}
return nil
}
func (cmd *UpdateService) findPlan(serviceInstance models.ServiceInstance, planName string) (plan models.ServicePlanFields, err error) {
plans, err := cmd.planBuilder.GetPlansForServiceForOrg(serviceInstance.ServiceOffering.GUID, cmd.config.OrganizationFields().Name)
if err != nil {
return
}
for _, p := range plans {
if p.Name == planName {
plan = p
return
}
}
err = errors.New(T("Plan does not exist for the {{.ServiceName}} service",
map[string]interface{}{"ServiceName": serviceInstance.ServiceOffering.Label}))
return
}
func (cmd *UpdateService) printUpdatingServiceInstanceMessage(serviceInstanceName string) {
cmd.ui.Say(T("Updating service instance {{.ServiceName}} as {{.UserName}}...",
map[string]interface{}{
"ServiceName": terminal.EntityNameColor(serviceInstanceName),
"UserName": terminal.EntityNameColor(cmd.config.Username()),
}))
}
func printSuccessMessageForServiceInstance(serviceInstanceName string, serviceRepo api.ServiceRepository, ui terminal.UI) error {
instance, apiErr := serviceRepo.FindInstanceByName(serviceInstanceName)
if apiErr != nil {
return apiErr
}
if instance.ServiceInstanceFields.LastOperation.State == "in progress" {
ui.Ok()
ui.Say("")
ui.Say(T("{{.State}} in progress. Use '{{.ServicesCommand}}' or '{{.ServiceCommand}}' to check operation status.",
map[string]interface{}{
"State": strings.Title(instance.ServiceInstanceFields.LastOperation.Type),
"ServicesCommand": terminal.CommandColor("cf services"),
"ServiceCommand": terminal.CommandColor(fmt.Sprintf("cf service %s", serviceInstanceName)),
}))
} else {
ui.Ok()
}
return nil
}