forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unset_org_role.go
85 lines (71 loc) · 2.5 KB
/
unset_org_role.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
package user
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/models"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/codegangsta/cli"
)
type UnsetOrgRole struct {
ui terminal.UI
config core_config.Reader
userRepo api.UserRepository
userReq requirements.UserRequirement
orgReq requirements.OrganizationRequirement
}
func NewUnsetOrgRole(ui terminal.UI, config core_config.Reader, userRepo api.UserRepository) (cmd *UnsetOrgRole) {
cmd = new(UnsetOrgRole)
cmd.ui = ui
cmd.config = config
cmd.userRepo = userRepo
return
}
func (cmd *UnsetOrgRole) Metadata() command_metadata.CommandMetadata {
return command_metadata.CommandMetadata{
Name: "unset-org-role",
Description: T("Remove an org role from a user"),
Usage: T("CF_NAME unset-org-role USERNAME ORG ROLE\n\n") +
T("ROLES:\n") +
T(" OrgManager - Invite and manage users, select and change plans, and set spending limits\n") +
T(" BillingManager - Create and manage the billing account and payment info\n") +
T(" OrgAuditor - Read-only access to org info and reports\n"),
}
}
func (cmd *UnsetOrgRole) GetRequirements(requirementsFactory requirements.Factory, c *cli.Context) (reqs []requirements.Requirement, err error) {
if len(c.Args()) != 3 {
cmd.ui.FailWithUsage(c)
}
cmd.userReq = requirementsFactory.NewUserRequirement(c.Args()[0])
if cmd.orgReq == nil {
cmd.orgReq = requirementsFactory.NewOrganizationRequirement(c.Args()[1])
} else {
cmd.orgReq.SetOrganizationName(c.Args()[1])
}
reqs = []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
cmd.userReq,
cmd.orgReq,
}
return
}
func (cmd *UnsetOrgRole) Run(c *cli.Context) {
role := models.UserInputToOrgRole[c.Args()[2]]
user := cmd.userReq.GetUser()
org := cmd.orgReq.GetOrganization()
cmd.ui.Say(T("Removing role {{.Role}} from user {{.TargetUser}} in org {{.TargetOrg}} as {{.CurrentUser}}...",
map[string]interface{}{
"Role": terminal.EntityNameColor(role),
"TargetUser": terminal.EntityNameColor(c.Args()[0]),
"TargetOrg": terminal.EntityNameColor(c.Args()[1]),
"CurrentUser": terminal.EntityNameColor(cmd.config.Username()),
}))
apiErr := cmd.userRepo.UnsetOrgRole(user.Guid, org.Guid, role)
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
cmd.ui.Ok()
}