forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rename_space.go
80 lines (67 loc) · 2.32 KB
/
rename_space.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
package space
import (
"github.com/cloudfoundry/cli/cf/api/spaces"
"github.com/cloudfoundry/cli/cf/commandregistry"
"github.com/cloudfoundry/cli/cf/configuration/coreconfig"
. "github.com/cloudfoundry/cli/cf/i18n"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/cloudfoundry/cli/flags"
)
type RenameSpace struct {
ui terminal.UI
config coreconfig.ReadWriter
spaceRepo spaces.SpaceRepository
spaceReq requirements.SpaceRequirement
}
func init() {
commandregistry.Register(&RenameSpace{})
}
func (cmd *RenameSpace) MetaData() commandregistry.CommandMetadata {
return commandregistry.CommandMetadata{
Name: "rename-space",
Description: T("Rename a space"),
Usage: []string{
T("CF_NAME rename-space SPACE NEW_SPACE"),
},
}
}
func (cmd *RenameSpace) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) []requirements.Requirement {
if len(fc.Args()) != 2 {
cmd.ui.Failed(T("Incorrect Usage. Requires SPACE_NAME NEW_SPACE_NAME as arguments\n\n") + commandregistry.Commands.CommandUsage("rename-space"))
}
cmd.spaceReq = requirementsFactory.NewSpaceRequirement(fc.Args()[0])
reqs := []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
requirementsFactory.NewTargetedOrgRequirement(),
cmd.spaceReq,
}
return reqs
}
func (cmd *RenameSpace) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.config = deps.Config
cmd.spaceRepo = deps.RepoLocator.GetSpaceRepository()
return cmd
}
func (cmd *RenameSpace) Execute(c flags.FlagContext) {
space := cmd.spaceReq.GetSpace()
newName := c.Args()[1]
cmd.ui.Say(T("Renaming space {{.OldSpaceName}} to {{.NewSpaceName}} in org {{.OrgName}} as {{.CurrentUser}}...",
map[string]interface{}{
"OldSpaceName": terminal.EntityNameColor(space.Name),
"NewSpaceName": terminal.EntityNameColor(newName),
"OrgName": terminal.EntityNameColor(cmd.config.OrganizationFields().Name),
"CurrentUser": terminal.EntityNameColor(cmd.config.Username()),
}))
apiErr := cmd.spaceRepo.Rename(space.GUID, newName)
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
if cmd.config.SpaceFields().GUID == space.GUID {
space.Name = newName
cmd.config.SetSpaceFields(space.SpaceFields)
}
cmd.ui.Ok()
}