-
Notifications
You must be signed in to change notification settings - Fork 787
/
delete_user.go
177 lines (159 loc) · 4.56 KB
/
delete_user.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
package cmd
import (
"fmt"
"strings"
"github.com/jenkins-x/jx/pkg/users"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/jenkins-x/jx/pkg/log"
"github.com/jenkins-x/jx/pkg/util"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1"
rbacv1 "k8s.io/api/rbac/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// DeleteUserOptions are the flags for delete commands
type DeleteUserOptions struct {
*CommonOptions
SelectAll bool
SelectFilter string
Confirm bool
}
var (
deleteUserLong = templates.LongDesc(`
Deletes one or more users
`)
deleteUserExample = templates.Examples(`
# Delete the user with the login of cheese
jx delete user cheese
`)
)
// NewCmdDeleteUser creates a command object
// retrieves one or more resources from a server.
func NewCmdDeleteUser(commonOpts *CommonOptions) *cobra.Command {
options := &DeleteUserOptions{
CommonOptions: commonOpts,
}
cmd := &cobra.Command{
Use: "user",
Short: "Deletes one or more users",
Long: deleteUserLong,
Example: deleteUserExample,
Aliases: []string{"users"},
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().BoolVarP(&options.SelectAll, "all", "a", false, "Should we default to selecting all the matched users for deletion")
cmd.Flags().StringVarP(&options.SelectFilter, "filter", "f", "", "Fitlers the list of users you can pick from")
cmd.Flags().BoolVarP(&options.Confirm, "yes", "y", false, "Confirms we should uninstall this installation")
return cmd
}
// Run implements this command
func (o *DeleteUserOptions) Run() error {
surveyOpts := survey.WithStdio(o.In, o.Out, o.Err)
err := o.registerUserCRD()
if err != nil {
return err
}
jxClient, ns, err := o.JXClientAndAdminNamespace()
if err != nil {
return err
}
_, userNames, err := users.GetUsers(jxClient, ns)
if err != nil {
return err
}
names := o.Args
if len(names) == 0 {
if o.BatchMode {
return fmt.Errorf("Missing user login name argument")
}
names, err = util.SelectNamesWithFilter(userNames, "Which users do you want to delete: ", o.SelectAll, o.SelectFilter, "", o.In, o.Out, o.Err)
if err != nil {
return err
}
}
if o.BatchMode {
if !o.Confirm {
return fmt.Errorf("In batch mode you must specify the '-y' flag to confirm")
}
} else {
log.Warnf("You are about to delete these users '%s' on the Git provider. This operation CANNOT be undone!",
strings.Join(names, ","))
flag := false
prompt := &survey.Confirm{
Message: "Are you sure you want to delete these all these users?",
Default: false,
}
err = survey.AskOne(prompt, &flag, nil, surveyOpts)
if err != nil {
return err
}
if !flag {
return nil
}
}
for _, name := range names {
err = o.deleteUser(name)
if err != nil {
log.Warnf("Failed to delete user %s: %s\n", name, err)
} else {
log.Infof("Deleted user %s\n", util.ColorInfo(name))
}
log.Infof("Attempting to unbind user %s from associated role\n", util.ColorInfo(name))
err = o.deleteUserFromRoleBinding(name, ns)
if err != nil {
log.Warnf("Problem to unbind user %s from associated role\n", util.ColorWarning(name))
}
}
return nil
}
func (o *DeleteUserOptions) deleteUser(name string) error {
jxClient, devNs, err := o.JXClientAndDevNamespace()
if err != nil {
return err
}
kubeClient, err := o.KubeClient()
if err != nil {
return err
}
ns, err := kube.GetAdminNamespace(kubeClient, devNs)
if err != nil {
return err
}
return users.DeleteUser(jxClient, ns, name)
}
func (o *DeleteUserOptions) deleteUserFromRoleBinding(name string, ns string) error {
jxClient, devNs, err := o.JXClientAndDevNamespace()
if err != nil {
return err
}
foundUser := 0
envRoleBindingsList, err := jxClient.JenkinsV1().EnvironmentRoleBindings(devNs).List(metav1.ListOptions{})
for _, envRoleBinding := range envRoleBindingsList.Items {
subjects := envRoleBinding.Spec.Subjects
if subjects != nil {
filteredEnvRoleBinding := subjects[:0]
for _, subject := range subjects {
if util.StringMatchesPattern(strings.Trim(name, ""), strings.Trim(subject.Name, "")) && util.StringMatchesPattern(strings.Trim(ns, ""), strings.Trim(subject.Namespace, "")) {
subjectToDel := rbacv1.Subject{
Name: name,
Namespace: ns,
}
filteredEnvRoleBinding = append(filteredEnvRoleBinding, subjectToDel)
log.Infof("Found user %s to unbind from role\n", util.ColorInfo(name))
foundUser = 1
break
}
}
if foundUser == 1 {
break
}
}
}
return nil
}