forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rename_service_broker.go
67 lines (54 loc) · 1.83 KB
/
rename_service_broker.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
package servicebroker
import (
"github.com/cloudfoundry/cli/cf/api"
"github.com/cloudfoundry/cli/cf/command_metadata"
"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/codegangsta/cli"
)
type RenameServiceBroker struct {
ui terminal.UI
config core_config.Reader
repo api.ServiceBrokerRepository
}
func NewRenameServiceBroker(ui terminal.UI, config core_config.Reader, repo api.ServiceBrokerRepository) (cmd RenameServiceBroker) {
cmd.ui = ui
cmd.config = config
cmd.repo = repo
return
}
func (cmd RenameServiceBroker) Metadata() command_metadata.CommandMetadata {
return command_metadata.CommandMetadata{
Name: "rename-service-broker",
Description: T("Rename a service broker"),
Usage: T("CF_NAME rename-service-broker SERVICE_BROKER NEW_SERVICE_BROKER"),
}
}
func (cmd RenameServiceBroker) GetRequirements(requirementsFactory requirements.Factory, c *cli.Context) (reqs []requirements.Requirement, err error) {
if len(c.Args()) != 2 {
cmd.ui.FailWithUsage(c)
}
reqs = append(reqs, requirementsFactory.NewLoginRequirement())
return
}
func (cmd RenameServiceBroker) Run(c *cli.Context) {
serviceBroker, apiErr := cmd.repo.FindByName(c.Args()[0])
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
cmd.ui.Say(T("Renaming service broker {{.OldName}} to {{.NewName}} as {{.Username}}",
map[string]interface{}{
"OldName": terminal.EntityNameColor(serviceBroker.Name),
"NewName": terminal.EntityNameColor(c.Args()[1]),
"Username": terminal.EntityNameColor(cmd.config.Username())}))
newName := c.Args()[1]
apiErr = cmd.repo.Rename(serviceBroker.Guid, newName)
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
cmd.ui.Ok()
}