forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
space_users.go
120 lines (101 loc) · 3.59 KB
/
space_users.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package user
import (
"fmt"
"code.cloudfoundry.org/cli/cf"
"code.cloudfoundry.org/cli/cf/actors/userprint"
"code.cloudfoundry.org/cli/cf/api"
"code.cloudfoundry.org/cli/cf/api/spaces"
"code.cloudfoundry.org/cli/cf/commandregistry"
"code.cloudfoundry.org/cli/cf/configuration/coreconfig"
"code.cloudfoundry.org/cli/cf/flags"
. "code.cloudfoundry.org/cli/cf/i18n"
"code.cloudfoundry.org/cli/cf/models"
"code.cloudfoundry.org/cli/cf/requirements"
"code.cloudfoundry.org/cli/cf/terminal"
"code.cloudfoundry.org/cli/plugin/models"
)
type SpaceUsers struct {
ui terminal.UI
config coreconfig.Reader
spaceRepo spaces.SpaceRepository
userRepo api.UserRepository
orgReq requirements.OrganizationRequirement
pluginModel *[]plugin_models.GetSpaceUsers_Model
pluginCall bool
}
func init() {
commandregistry.Register(&SpaceUsers{})
}
func (cmd *SpaceUsers) MetaData() commandregistry.CommandMetadata {
return commandregistry.CommandMetadata{
Name: "space-users",
Description: T("Show space users by role"),
Usage: []string{
T("CF_NAME space-users ORG SPACE"),
},
}
}
func (cmd *SpaceUsers) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) ([]requirements.Requirement, error) {
if len(fc.Args()) != 2 {
cmd.ui.Failed(T("Incorrect Usage. Requires arguments\n\n") + commandregistry.Commands.CommandUsage("space-users"))
return nil, fmt.Errorf("Incorrect usage: %d arguments of %d required", len(fc.Args()), 2)
}
cmd.orgReq = requirementsFactory.NewOrganizationRequirement(fc.Args()[0])
reqs := []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
cmd.orgReq,
}
return reqs, nil
}
func (cmd *SpaceUsers) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.config = deps.Config
cmd.userRepo = deps.RepoLocator.GetUserRepository()
cmd.spaceRepo = deps.RepoLocator.GetSpaceRepository()
cmd.pluginCall = pluginCall
cmd.pluginModel = deps.PluginModels.SpaceUsers
return cmd
}
func (cmd *SpaceUsers) Execute(c flags.FlagContext) error {
spaceName := c.Args()[1]
org := cmd.orgReq.GetOrganization()
space, err := cmd.spaceRepo.FindByNameInOrg(spaceName, org.GUID)
if err != nil {
return err
}
printer := cmd.printer(org, space, cmd.config.Username())
printer.PrintUsers(space.GUID, cmd.config.Username())
return nil
}
func (cmd *SpaceUsers) printer(org models.Organization, space models.Space, username string) userprint.UserPrinter {
var roles = []models.Role{models.RoleSpaceManager, models.RoleSpaceDeveloper, models.RoleSpaceAuditor}
if cmd.pluginCall {
return userprint.NewSpaceUsersPluginPrinter(
cmd.pluginModel,
cmd.userLister(),
roles,
)
}
cmd.ui.Say(T("Getting users in org {{.TargetOrg}} / space {{.TargetSpace}} as {{.CurrentUser}}",
map[string]interface{}{
"TargetOrg": terminal.EntityNameColor(org.Name),
"TargetSpace": terminal.EntityNameColor(space.Name),
"CurrentUser": terminal.EntityNameColor(username),
}))
return &userprint.SpaceUsersUIPrinter{
UI: cmd.ui,
UserLister: cmd.userLister(),
Roles: roles,
RoleDisplayNames: map[models.Role]string{
models.RoleSpaceManager: T("SPACE MANAGER"),
models.RoleSpaceDeveloper: T("SPACE DEVELOPER"),
models.RoleSpaceAuditor: T("SPACE AUDITOR"),
},
}
}
func (cmd *SpaceUsers) userLister() func(spaceGUID string, role models.Role) ([]models.UserFields, error) {
if cmd.config.IsMinAPIVersion(cf.ListUsersInOrgOrSpaceWithoutUAAMinimumAPIVersion) {
return cmd.userRepo.ListUsersInSpaceForRoleWithNoUAA
}
return cmd.userRepo.ListUsersInSpaceForRole
}