-
Notifications
You must be signed in to change notification settings - Fork 1
/
user.go
243 lines (206 loc) · 5.03 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
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
package harbor
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"strings"
"github.com/XuHaoIgeneral/goharbor/models"
)
const (
PATH_FMT_USER_CREATE = "/api/users"
PATH_FMT_USER_LIST = "/api/users"
PATH_FMT_USER_SEARCH = "/api/users/search?username=%s"
PATH_FMT_USER_PASSWORD = "/api/users/%d/password"
PATH_FMT_USER_DELETE = "/api/users/%d"
)
type UserInit struct {
Username string
Password string
Realname string
Email string
}
type UserOption struct {
Username string
Email string
PageOption
}
type UserUpPwd struct {
OldPassword string `json:"old_password"`
NewPassword string `json:"new_password"`
}
func (opt *UserOption) Urls() url.Values {
v := opt.PageOption.Urls()
if opt.Username != "" {
v.Set("username", opt.Username)
}
if opt.Email != "" {
v.Set("email", opt.Email)
}
return v
}
func (c *Client) SearchUser(ctx context.Context, username string) ([]*models.SearchUser, error) {
var ret []*models.SearchUser
path := fmt.Sprintf(PATH_FMT_USER_SEARCH, username)
req, err := http.NewRequest(http.MethodGet, c.host+path, nil)
if err != nil {
return ret, err
}
err = c.doJson(ctx, req, &ret)
if err != nil {
return ret, err
}
return ret, nil
}
func (c *Client) ListUser(ctx context.Context, opt *UserOption) ([]*models.Users, error) {
var ret []*models.Users
path := PATH_FMT_USER_LIST
if opt != nil {
path += "?" + opt.Urls().Encode()
}
req, err := http.NewRequest(http.MethodGet, c.host+path, nil)
if err != nil {
return ret, err
}
err = c.doJson(ctx, req, &ret)
if err != nil {
return ret, err
}
return ret, nil
}
func (c *Client) UserIsExist(ctx context.Context, username string) (bool, error) {
_, err := c.GetUserByName(ctx, username)
if err != nil {
return false, fmt.Errorf("username=%s is not find", username)
}
return true, nil
}
func (c *Client) GetUserByName(ctx context.Context, username string) (*models.SearchUser, error) {
users, err := c.SearchUser(ctx, username)
if err != nil {
return nil, err
}
// 加入全匹配规则
user := new(models.SearchUser)
switch len(users) {
case 0:
return nil, NotFoundError
case 1:
if users[0].Username != username {
return nil, NotFoundError
}
user = users[0]
default:
isUser := false
for _, u := range users {
if u.Username == username {
user = u
isUser = true
break
}
}
if !isUser {
return nil, NotFoundError
}
}
return user, nil
}
func (c *Client) CreateUser(ctx context.Context, opt *UserInit) (bool, error) {
path := PATH_FMT_USER_CREATE
if opt == nil {
return false, ERROR_THE_GINSENG
}
ret := &models.InitUser{
Username: opt.Username,
Password: opt.Password,
Realname: opt.Realname,
Email: opt.Email,
}
// struct to string
out, err := json.Marshal(ret)
if err != nil {
return false, err
}
str_out := string(out)
req_body := strings.NewReader(str_out)
req, err := http.NewRequest(http.MethodPost, c.host+path, req_body)
if err != nil {
return false, err
}
code, body, err := c.do(ctx, req)
if err != nil {
return false, err
}
defer body.Close()
body_byte, err := ioutil.ReadAll(body)
body_str := string(body_byte)
switch code {
case 200, 201:
return true, nil
default:
return false, fmt.Errorf("error info : %s", body_str)
}
}
// TODO:harbor api is false. the same as update password and reset password
func (c *Client) UpdateUserPwd(ctx context.Context, username string, upwd *UserUpPwd) (bool, error) {
if upwd == nil {
return false, ERROR_THE_GINSENG
}
user, err := c.GetUserByName(ctx, username)
if err != nil {
return false, err
}
userId := user.UserId
path := fmt.Sprintf(PATH_FMT_USER_PASSWORD, userId)
out, err := json.Marshal(upwd)
str_out := string(out)
req_body := strings.NewReader(str_out)
req, err := http.NewRequest(http.MethodPut, c.host+path, req_body)
if err != nil {
return false, err
}
code, body, err := c.do(ctx, req)
if err != nil {
return false, err
}
defer body.Close()
body_byte, err := ioutil.ReadAll(body)
body_str := string(body_byte)
switch code {
case 200, 201:
return true, nil
default:
return false, fmt.Errorf("error info : %s", body_str)
}
}
func (c *Client) DeleteUser(ctx context.Context, username string) (deleted bool, err error) {
user, err := c.GetUserByName(ctx, username)
if err != nil {
return false, err
}
userId := user.UserId
path := fmt.Sprintf(PATH_FMT_USER_DELETE, userId)
req, err := http.NewRequest(http.MethodDelete, c.host+path, nil)
if err != nil {
return false, err
}
code, body, err := c.do(ctx, req)
if err != nil {
return false, err
}
defer body.Close()
body_byte, err := ioutil.ReadAll(body)
body_str := string(body_byte)
switch code {
case 200, 201:
return true, nil
default:
return false, fmt.Errorf("error info : %s", body_str)
}
}
// TODO:Harbor's pwd manage is `Chaos`,pls commit ur code!!!
func (c *Client) ResetPwd(ctx context.Context, username string, newPassword string) (reseted bool, err error) {
return c.UpdateUserPwd(ctx, username, &UserUpPwd{NewPassword: newPassword, OldPassword: newPassword})
}