forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unset_space_role.go
90 lines (76 loc) · 2.78 KB
/
unset_space_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
86
87
88
89
90
package user
import (
"github.com/cloudfoundry/cli/cf/api"
"github.com/cloudfoundry/cli/cf/api/spaces"
"github.com/cloudfoundry/cli/cf/command_metadata"
"github.com/cloudfoundry/cli/cf/configuration"
"github.com/cloudfoundry/cli/cf/models"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/codegangsta/cli"
)
type UnsetSpaceRole struct {
ui terminal.UI
config configuration.Reader
spaceRepo spaces.SpaceRepository
userRepo api.UserRepository
userReq requirements.UserRequirement
orgReq requirements.OrganizationRequirement
}
func NewUnsetSpaceRole(ui terminal.UI, config configuration.Reader, spaceRepo spaces.SpaceRepository, userRepo api.UserRepository) (cmd *UnsetSpaceRole) {
cmd = new(UnsetSpaceRole)
cmd.ui = ui
cmd.config = config
cmd.spaceRepo = spaceRepo
cmd.userRepo = userRepo
return
}
func (cmd *UnsetSpaceRole) Metadata() command_metadata.CommandMetadata {
return command_metadata.CommandMetadata{
Name: "unset-space-role",
Description: T("Remove a space role from a user"),
Usage: T("CF_NAME unset-space-role USERNAME ORG SPACE ROLE\n\n") +
T("ROLES:\n") +
T(" SpaceManager - Invite and manage users, and enable features for a given space\n") +
T(" SpaceDeveloper - Create and manage apps and services, and see logs and reports\n") +
T(" SpaceAuditor - View logs, reports, and settings on this space\n"),
}
}
func (cmd *UnsetSpaceRole) GetRequirements(requirementsFactory requirements.Factory, c *cli.Context) (reqs []requirements.Requirement, err error) {
if len(c.Args()) != 4 {
cmd.ui.FailWithUsage(c)
}
cmd.userReq = requirementsFactory.NewUserRequirement(c.Args()[0])
cmd.orgReq = requirementsFactory.NewOrganizationRequirement(c.Args()[1])
reqs = []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
cmd.userReq,
cmd.orgReq,
}
return
}
func (cmd *UnsetSpaceRole) Run(c *cli.Context) {
spaceName := c.Args()[2]
role := models.UserInputToSpaceRole[c.Args()[3]]
user := cmd.userReq.GetUser()
org := cmd.orgReq.GetOrganization()
space, apiErr := cmd.spaceRepo.FindByNameInOrg(spaceName, org.Guid)
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
cmd.ui.Say(T("Removing role {{.Role}} from user {{.TargetUser}} in org {{.TargetOrg}} / space {{.TargetSpace}} as {{.CurrentUser}}...",
map[string]interface{}{
"Role": terminal.EntityNameColor(role),
"TargetUser": terminal.EntityNameColor(user.Username),
"TargetOrg": terminal.EntityNameColor(org.Name),
"TargetSpace": terminal.EntityNameColor(space.Name),
"CurrentUser": terminal.EntityNameColor(cmd.config.Username()),
}))
apiErr = cmd.userRepo.UnsetSpaceRole(user.Guid, space.Guid, role)
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
cmd.ui.Ok()
}