forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
org_users.go
110 lines (94 loc) · 3.15 KB
/
org_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
package user
import (
"fmt"
"code.cloudfoundry.org/cli/cf/actors/userprint"
"code.cloudfoundry.org/cli/cf/api"
"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 OrgUsers struct {
ui terminal.UI
config coreconfig.Reader
orgReq requirements.OrganizationRequirement
userRepo api.UserRepository
pluginModel *[]plugin_models.GetOrgUsers_Model
pluginCall bool
}
func init() {
commandregistry.Register(&OrgUsers{})
}
func (cmd *OrgUsers) MetaData() commandregistry.CommandMetadata {
fs := make(map[string]flags.FlagSet)
fs["a"] = &flags.BoolFlag{ShortName: "a", Usage: T("List all users in the org")}
return commandregistry.CommandMetadata{
Name: "org-users",
Description: T("Show org users by role"),
Usage: []string{
T("CF_NAME org-users ORG"),
},
Flags: fs,
}
}
func (cmd *OrgUsers) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) ([]requirements.Requirement, error) {
if len(fc.Args()) != 1 {
cmd.ui.Failed(T("Incorrect Usage. Requires an argument\n\n") + commandregistry.Commands.CommandUsage("org-users"))
return nil, fmt.Errorf("Incorrect usage: %d arguments of %d required", len(fc.Args()), 1)
}
cmd.orgReq = requirementsFactory.NewOrganizationRequirement(fc.Args()[0])
reqs := []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
cmd.orgReq,
}
return reqs, nil
}
func (cmd *OrgUsers) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.config = deps.Config
cmd.userRepo = deps.RepoLocator.GetUserRepository()
cmd.pluginCall = pluginCall
cmd.pluginModel = deps.PluginModels.OrgUsers
return cmd
}
func (cmd *OrgUsers) Execute(c flags.FlagContext) error {
org := cmd.orgReq.GetOrganization()
cmd.ui.Say(T("Getting users in org {{.TargetOrg}} as {{.CurrentUser}}...",
map[string]interface{}{
"TargetOrg": terminal.EntityNameColor(org.Name),
"CurrentUser": terminal.EntityNameColor(cmd.config.Username()),
}))
printer := cmd.printer(c)
printer.PrintUsers(org.GUID, cmd.config.Username())
return nil
}
func (cmd *OrgUsers) printer(c flags.FlagContext) userprint.UserPrinter {
var roles []models.Role
if c.Bool("a") {
roles = []models.Role{models.RoleOrgUser}
} else {
roles = []models.Role{models.RoleOrgManager, models.RoleBillingManager, models.RoleOrgAuditor}
}
if cmd.pluginCall {
return userprint.NewOrgUsersPluginPrinter(
cmd.pluginModel,
cmd.userRepo.ListUsersInOrgForRoleWithNoUAA,
roles,
)
}
return &userprint.OrgUsersUIPrinter{
UI: cmd.ui,
UserLister: cmd.userRepo.ListUsersInOrgForRoleWithNoUAA,
Roles: roles,
RoleDisplayNames: map[models.Role]string{
models.RoleOrgUser: T("USERS"),
models.RoleOrgManager: T("ORG MANAGER"),
models.RoleBillingManager: T("BILLING MANAGER"),
models.RoleOrgAuditor: T("ORG AUDITOR"),
},
}
}