-
Notifications
You must be signed in to change notification settings - Fork 787
/
create_user.go
132 lines (114 loc) · 2.98 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
package cmd
import (
"fmt"
"io"
"strings"
"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"
"gopkg.in/AlecAivazis/survey.v1/terminal"
)
const (
optionLogin = "login"
)
var (
createUserLong = templates.LongDesc(`
Creates a user
`)
createUserExample = templates.Examples(`
# Create a user
jx create user -e "user@email.com" --login username --name username"
`)
)
// CreateUserOptions the options for the create spring command
type CreateUserOptions struct {
CreateOptions
UserSpec v1.UserDetails
}
// NewCmdCreateUser creates a command object for the "create" command
func NewCmdCreateUser(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &CreateUserOptions{
CreateOptions: CreateOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
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")
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("You can configure the roles for the user via: %s\n", util.ColorInfo(fmt.Sprintf("jx edit userrole %s", login)))
return nil
}