-
Notifications
You must be signed in to change notification settings - Fork 928
/
bind_service.go
149 lines (124 loc) · 5.49 KB
/
bind_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
package service
import (
"fmt"
"code.cloudfoundry.org/cli/cf"
"code.cloudfoundry.org/cli/cf/api"
"code.cloudfoundry.org/cli/cf/commandregistry"
"code.cloudfoundry.org/cli/cf/configuration/coreconfig"
"code.cloudfoundry.org/cli/cf/errors"
"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/util/json"
)
//go:generate counterfeiter . Binder
type Binder interface {
BindApplication(app models.Application, serviceInstance models.ServiceInstance, paramsMap map[string]interface{}) (apiErr error)
}
type BindService struct {
ui terminal.UI
config coreconfig.Reader
serviceBindingRepo api.ServiceBindingRepository
appReq requirements.ApplicationRequirement
serviceInstanceReq requirements.ServiceInstanceRequirement
}
func init() {
commandregistry.Register(&BindService{})
}
func (cmd *BindService) MetaData() commandregistry.CommandMetadata {
baseUsage := T("CF_NAME bind-service APP_NAME SERVICE_INSTANCE [-c PARAMETERS_AS_JSON]")
paramsUsage := T(` Optionally provide service-specific configuration parameters in a valid JSON object in-line:
CF_NAME bind-service APP_NAME SERVICE_INSTANCE -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 bind-service APP_NAME SERVICE_INSTANCE -c PATH_TO_FILE
Example of valid JSON object:
{
"permissions": "read-only"
}`)
fs := make(map[string]flags.FlagSet)
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.")}
return commandregistry.CommandMetadata{
Name: "bind-service",
ShortName: "bs",
Description: T("Bind a service instance to an app"),
Usage: []string{
baseUsage,
"\n\n",
paramsUsage,
},
Examples: []string{
fmt.Sprintf("%s:", T(`Linux/Mac`)),
` CF_NAME bind-service myapp mydb -c '{"permissions":"read-only"}'`,
``,
fmt.Sprintf("%s:", T(`Windows Command Line`)),
` CF_NAME bind-service myapp mydb -c "{\"permissions\":\"read-only\"}"`,
``,
fmt.Sprintf("%s:", T(`Windows PowerShell`)),
` CF_NAME bind-service myapp mydb -c '{\"permissions\":\"read-only\"}'`,
``,
`CF_NAME bind-service myapp mydb -c ~/workspace/tmp/instance_config.json`,
},
Flags: fs,
}
}
func (cmd *BindService) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) ([]requirements.Requirement, error) {
if len(fc.Args()) != 2 {
cmd.ui.Failed(T("Incorrect Usage. Requires APP_NAME and SERVICE_INSTANCE as arguments\n\n") + commandregistry.Commands.CommandUsage("bind-service"))
return nil, fmt.Errorf("Incorrect usage: %d arguments of %d required", len(fc.Args()), 2)
}
serviceName := fc.Args()[1]
cmd.appReq = requirementsFactory.NewApplicationRequirement(fc.Args()[0])
cmd.serviceInstanceReq = requirementsFactory.NewServiceInstanceRequirement(serviceName)
reqs := []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
cmd.appReq,
cmd.serviceInstanceReq,
}
return reqs, nil
}
func (cmd *BindService) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.config = deps.Config
cmd.serviceBindingRepo = deps.RepoLocator.GetServiceBindingRepository()
return cmd
}
func (cmd *BindService) Execute(c flags.FlagContext) error {
app := cmd.appReq.GetApplication()
serviceInstance := cmd.serviceInstanceReq.GetServiceInstance()
params := c.String("c")
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."))
}
cmd.ui.Say(T("Binding service {{.ServiceInstanceName}} to app {{.AppName}} in org {{.OrgName}} / space {{.SpaceName}} as {{.CurrentUser}}...",
map[string]interface{}{
"ServiceInstanceName": terminal.EntityNameColor(serviceInstance.Name),
"AppName": terminal.EntityNameColor(app.Name),
"OrgName": terminal.EntityNameColor(cmd.config.OrganizationFields().Name),
"SpaceName": terminal.EntityNameColor(cmd.config.SpaceFields().Name),
"CurrentUser": terminal.EntityNameColor(cmd.config.Username()),
}))
err = cmd.BindApplication(app, serviceInstance, paramsMap)
if err != nil {
if httperr, ok := err.(errors.HTTPError); ok && httperr.ErrorCode() == errors.ServiceBindingAppServiceTaken {
cmd.ui.Ok()
cmd.ui.Warn(T("App {{.AppName}} is already bound to {{.ServiceName}}.",
map[string]interface{}{
"AppName": app.Name,
"ServiceName": serviceInstance.Name,
}))
return nil
}
return err
}
cmd.ui.Ok()
cmd.ui.Say(T("TIP: Use '{{.CFCommand}} {{.AppName}}' to ensure your env variable changes take effect",
map[string]interface{}{"CFCommand": terminal.CommandColor(cf.Name + " restage"), "AppName": app.Name}))
return nil
}
func (cmd *BindService) BindApplication(app models.Application, serviceInstance models.ServiceInstance, paramsMap map[string]interface{}) error {
return cmd.serviceBindingRepo.Create(serviceInstance.GUID, app.GUID, paramsMap)
}