forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_user.go
166 lines (145 loc) · 4.11 KB
/
create_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
package cmd
import (
"fmt"
"github.com/jenkins-x/jx/pkg/apis/jenkins.io/v1"
"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"
"io"
rbacv1 "k8s.io/api/rbac/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"strings"
)
const (
optionLogin = "login"
)
var (
createUserLong = templates.LongDesc(`
Creates a user
`)
createUserExample = templates.Examples(`
# Create an issue in the current project
jx create issue -t "something we should do"
# Create an issue with a title and a body
jx create issue -t "something we should do" --body "
some more
text
goes
here
""
"
`)
)
// CreateUserOptions the options for the create spring command
type CreateUserOptions struct {
CreateOptions
Role string
UserSpec v1.UserDetails
}
// NewCmdCreateUser creates a command object for the "create" command
func NewCmdCreateUser(f Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &CreateUserOptions{
CreateOptions: CreateOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "user",
Short: "Create a new User which is then provisioned by the user controller",
Aliases: []string{"env"},
Long: createUserLong,
Example: createUserExample,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().StringVarP(&options.UserSpec.Login, optionLogin, "l", "", "The user login name")
cmd.Flags().StringVarP(&options.UserSpec.Name, "name", "n", "", "The textual full name of the user")
cmd.Flags().StringVarP(&options.UserSpec.Email, "email", "e", "", "The users email address")
cmd.Flags().StringVarP(&options.Role, "role", "r", "", "The user's role")
options.addCommonFlags(cmd)
return cmd
}
// Run implements the command
func (o *CreateUserOptions) Run() error {
err := o.registerUserCRD()
if err != nil {
return err
}
err = o.registerEnvironmentRoleBindingCRD()
if err != nil {
return err
}
kubeClient, _, err := o.KubeClient()
if err != nil {
return err
}
jxClient, devNs, err := o.JXClientAndDevNamespace()
if err != nil {
return err
}
ns, err := kube.GetAdminNamespace(kubeClient, devNs)
if err != nil {
return err
}
_, names, err := kube.GetUsers(jxClient, ns)
if err != nil {
return err
}
spec := &o.UserSpec
login := spec.Login
if login == "" {
args := o.Args
if len(args) > 0 {
login = args[0]
}
}
if login == "" {
return util.MissingOption(optionLogin)
}
if util.StringArrayIndex(names, login) >= 0 {
return fmt.Errorf("The User %s already exists!", login)
}
name := spec.Name
if name == "" {
name = strings.Title(login)
}
user := kube.CreateUser(ns, login, name, spec.Email)
_, err = jxClient.JenkinsV1().Users(ns).Create(user)
if err != nil {
return fmt.Errorf("Failed to create User %s: %s", login, err)
}
log.Infof("Created User: %s\n", util.ColorInfo(login))
log.Infof("Binding user %s with role: %s\n", util.ColorInfo(login), o.Role)
envRoleBindingsList, err := jxClient.JenkinsV1().EnvironmentRoleBindings(ns).List(metav1.ListOptions{})
if err != nil {
return fmt.Errorf("Failed to retrieve environment role binding list for namespace %s: %s", ns, err)
}
foundRole := 0
for _, envRoleBinding := range envRoleBindingsList.Items {
if util.StringMatchesPattern(strings.Trim(o.Role, ""), strings.Trim(envRoleBinding.Spec.RoleRef.Name, "")) {
log.Infof("Role %s exists, binding user %s with role.\n", util.ColorInfo(o.Role), util.ColorInfo(login))
newSubject := rbacv1.Subject{
Name: o.UserSpec.Name,
Kind: "User", //TODO: should the default be user? Should we also pass kind as part of user creation step?
Namespace: ns,
}
envRoleBinding.Spec.Subjects = append(envRoleBinding.Spec.Subjects, newSubject)
foundRole = 1
break
}
}
if foundRole == 0 {
log.Warnf("Role %s doesn't exist, will not bind user %s with role\n", util.ColorWarning(o.Role), util.ColorWarning(login))
}
return nil
}