forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rename_org.go
69 lines (59 loc) · 1.88 KB
/
rename_org.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
package organization
import (
"github.com/cloudfoundry/cli/cf/api"
"github.com/cloudfoundry/cli/cf/command_metadata"
"github.com/cloudfoundry/cli/cf/configuration"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/codegangsta/cli"
)
type RenameOrg struct {
ui terminal.UI
config configuration.ReadWriter
orgRepo api.OrganizationRepository
orgReq requirements.OrganizationRequirement
}
func NewRenameOrg(ui terminal.UI, config configuration.ReadWriter, orgRepo api.OrganizationRepository) (cmd *RenameOrg) {
cmd = new(RenameOrg)
cmd.ui = ui
cmd.config = config
cmd.orgRepo = orgRepo
return
}
func (cmd *RenameOrg) Metadata() command_metadata.CommandMetadata {
return command_metadata.CommandMetadata{
Name: "rename-org",
Description: T("Rename an org"),
Usage: T("CF_NAME rename-org ORG NEW_ORG"),
}
}
func (cmd *RenameOrg) GetRequirements(requirementsFactory requirements.Factory, c *cli.Context) (reqs []requirements.Requirement, err error) {
if len(c.Args()) != 2 {
cmd.ui.FailWithUsage(c)
}
cmd.orgReq = requirementsFactory.NewOrganizationRequirement(c.Args()[0])
reqs = []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
cmd.orgReq,
}
return
}
func (cmd *RenameOrg) Run(c *cli.Context) {
org := cmd.orgReq.GetOrganization()
newName := c.Args()[1]
cmd.ui.Say(T("Renaming org {{.OrgName}} to {{.NewName}} as {{.Username}}...",
map[string]interface{}{
"OrgName": terminal.EntityNameColor(org.Name),
"NewName": terminal.EntityNameColor(newName),
"Username": terminal.EntityNameColor(cmd.config.Username())}))
apiErr := cmd.orgRepo.Rename(org.Guid, newName)
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
cmd.ui.Ok()
if org.Guid == cmd.config.OrganizationFields().Guid {
org.Name = newName
cmd.config.SetOrganizationFields(org.OrganizationFields)
}
}