forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
user.go
142 lines (113 loc) · 3.51 KB
/
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
package create
import (
"fmt"
"io"
"github.com/spf13/cobra"
"k8s.io/apimachinery/pkg/api/meta"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
userapi "github.com/openshift/origin/pkg/user/apis/user"
userclient "github.com/openshift/origin/pkg/user/generated/internalclientset/typed/user/internalversion"
)
const UserRecommendedName = "user"
var (
userLong = templates.LongDesc(`
This command can be used to create a user object.
Typically, users are created automatically during login. If automatic
creation is disabled (by using the "lookup" mapping method), users must
be created manually.
Corresponding identity and useridentitymapping objects must also be created
to allow logging in as the created user.`)
userExample = templates.Examples(`
# Create a user with the username "ajones" and the display name "Adam Jones"
%[1]s ajones --full-name="Adam Jones"`)
)
type CreateUserOptions struct {
Name string
FullName string
UserClient userclient.UserInterface
DryRun bool
Mapper meta.RESTMapper
OutputFormat string
Out io.Writer
Printer ObjectPrinter
}
// NewCmdCreateUser is a macro command to create a new user
func NewCmdCreateUser(name, fullName string, f *clientcmd.Factory, out io.Writer) *cobra.Command {
o := &CreateUserOptions{Out: out}
cmd := &cobra.Command{
Use: name + " USERNAME",
Short: "Manually create a user (only needed if automatic creation is disabled).",
Long: userLong,
Example: fmt.Sprintf(userExample, fullName),
Run: func(cmd *cobra.Command, args []string) {
cmdutil.CheckErr(o.Complete(cmd, f, args))
cmdutil.CheckErr(o.Validate())
cmdutil.CheckErr(o.Run())
},
}
cmd.Flags().StringVar(&o.FullName, "full-name", o.FullName, "Display name of the user")
cmdutil.AddDryRunFlag(cmd)
cmdutil.AddPrinterFlags(cmd)
return cmd
}
func (o *CreateUserOptions) Complete(cmd *cobra.Command, f *clientcmd.Factory, args []string) error {
switch len(args) {
case 0:
return fmt.Errorf("username is required")
case 1:
o.Name = args[0]
default:
return fmt.Errorf("exactly one argument (username) is supported, not: %v", args)
}
o.DryRun = cmdutil.GetFlagBool(cmd, "dry-run")
client, err := f.OpenshiftInternalUserClient()
if err != nil {
return err
}
o.UserClient = client.User()
o.Mapper, _ = f.Object()
o.OutputFormat = cmdutil.GetFlagString(cmd, "output")
o.Printer = func(obj runtime.Object, out io.Writer) error {
return f.PrintObject(cmd, false, o.Mapper, obj, out)
}
return nil
}
func (o *CreateUserOptions) Validate() error {
if len(o.Name) == 0 {
return fmt.Errorf("username is required")
}
if o.UserClient == nil {
return fmt.Errorf("UserClient is required")
}
if o.Mapper == nil {
return fmt.Errorf("Mapper is required")
}
if o.Out == nil {
return fmt.Errorf("Out is required")
}
if o.Printer == nil {
return fmt.Errorf("Printer is required")
}
return nil
}
func (o *CreateUserOptions) Run() error {
user := &userapi.User{}
user.Name = o.Name
user.FullName = o.FullName
actualUser := user
var err error
if !o.DryRun {
actualUser, err = o.UserClient.Users().Create(user)
if err != nil {
return err
}
}
if useShortOutput := o.OutputFormat == "name"; useShortOutput || len(o.OutputFormat) == 0 {
cmdutil.PrintSuccess(o.Mapper, useShortOutput, o.Out, "user", actualUser.Name, o.DryRun, "created")
return nil
}
return o.Printer(actualUser, o.Out)
}