-
Notifications
You must be signed in to change notification settings - Fork 3
/
crowd.go
548 lines (447 loc) · 12.6 KB
/
crowd.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
package crowd
// ////////////////////////////////////////////////////////////////////////////////// //
// //
// Copyright (c) 2021 ESSENTIAL KAOS //
// Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0> //
// //
// ////////////////////////////////////////////////////////////////////////////////// //
import (
"encoding/base64"
"encoding/xml"
"errors"
"fmt"
"net/url"
"runtime"
"strings"
"time"
"github.com/valyala/fasthttp"
)
// ////////////////////////////////////////////////////////////////////////////////// //
// API is Confluence API struct
type API struct {
Client *fasthttp.Client // Client is client for http requests
url string // confluence URL
basicAuth string // basic auth
}
// ////////////////////////////////////////////////////////////////////////////////// //
// API errors
var (
ErrInitEmptyURL = errors.New("URL can't be empty")
ErrInitEmptyApp = errors.New("App can't be empty")
ErrInitEmptyPassword = errors.New("Password can't be empty")
ErrNoPerms = errors.New("Application does not have permission to use Crowd")
ErrUserNoFound = errors.New("User could not be found")
ErrGroupNoFound = errors.New("Group could not be found")
)
// ////////////////////////////////////////////////////////////////////////////////// //
// NewAPI create new API struct
func NewAPI(url, app, password string) (*API, error) {
switch {
case url == "":
return nil, ErrInitEmptyURL
case app == "":
return nil, ErrInitEmptyApp
case password == "":
return nil, ErrInitEmptyPassword
}
return &API{
Client: &fasthttp.Client{
Name: getUserAgent("", ""),
MaxIdleConnDuration: 5 * time.Second,
ReadTimeout: 3 * time.Second,
WriteTimeout: 3 * time.Second,
MaxConnsPerHost: 150,
},
url: url,
basicAuth: genBasicAuthHeader(app, password),
}, nil
}
// SimplifyAttributes convert slice with attributes to map name->value
func SimplifyAttributes(attrs Attributes) map[string]string {
result := make(map[string]string)
for _, attr := range attrs {
result[attr.Name] = strings.Join(attr.Values, " ")
}
return result
}
// SetUserAgent set user-agent string based on app name and version
func (api *API) SetUserAgent(app, version string) {
api.Client.Name = getUserAgent(app, version)
}
// ////////////////////////////////////////////////////////////////////////////////// //
// GetUser returns a user
func (api *API) GetUser(userName string, withAttributes bool) (*User, error) {
url := "rest/usermanagement/1/user?username=" + esc(userName)
if withAttributes {
url += "&expand=attributes"
}
result := &User{}
statusCode, err := api.doRequest("GET", url, result, nil)
if err != nil {
return nil, err
}
switch statusCode {
case 200:
return result, nil
case 403:
return nil, ErrNoPerms
default:
return nil, makeUnknownError(statusCode)
}
}
// GetUserAttributes returns a list of user attributes
func (api *API) GetUserAttributes(userName string) (Attributes, error) {
result := &UserAttributes{}
statusCode, err := api.doRequest(
"GET", "rest/usermanagement/1/user/attribute?username="+esc(userName),
result, nil,
)
if err != nil {
return nil, err
}
switch statusCode {
case 200:
return result.Attributes, nil
case 403:
return nil, ErrNoPerms
case 404:
return nil, ErrUserNoFound
default:
return nil, makeUnknownError(statusCode)
}
}
// SetUserAttributes stores all the user attributes for an existing user
func (api *API) SetUserAttributes(userName string, attrs *UserAttributes) error {
statusCode, err := api.doRequest(
"POST", "rest/usermanagement/1/user/attribute?username="+esc(userName),
nil, attrs,
)
if err != nil {
return err
}
switch statusCode {
case 204:
return nil
case 403:
return ErrNoPerms
case 404:
return ErrUserNoFound
default:
return makeUnknownError(statusCode)
}
}
// DeleteUserAttributes deletes a user attribute
func (api *API) DeleteUserAttributes(userName, attrName string) error {
url := fmt.Sprintf(
"rest/usermanagement/1/user/attribute?username=%s&attributename=%s",
esc(userName), esc(attrName),
)
statusCode, err := api.doRequest("DELETE", url, nil, nil)
if err != nil {
return err
}
if err != nil {
return err
}
switch statusCode {
case 204:
return nil
case 403:
return ErrNoPerms
case 404:
return ErrUserNoFound
default:
return makeUnknownError(statusCode)
}
}
// GetUserGroups returns the groups that the user is a member of
func (api *API) GetUserGroups(userName, groupType string) ([]*Group, error) {
result := &struct {
Groups []*Group `xml:"group"`
}{}
url := fmt.Sprintf(
"rest/usermanagement/1/user/group/%s?expand=group&username=%s",
esc(groupType), esc(userName),
)
statusCode, err := api.doRequest("GET", url, result, nil)
if err != nil {
return nil, err
}
switch statusCode {
case 200:
return result.Groups, nil
case 403:
return nil, ErrNoPerms
default:
return nil, makeUnknownError(statusCode)
}
}
// GetUserDirectGroups returns the groups that the user is a direct member of
func (api *API) GetUserDirectGroups(userName string) ([]*Group, error) {
return api.GetUserGroups(userName, GROUP_DIRECT)
}
// GetUserNestedGroups returns the groups that the user is a nested member of
func (api *API) GetUserNestedGroups(userName string) ([]*Group, error) {
return api.GetUserGroups(userName, GROUP_NESTED)
}
// GetGroup returns a group
func (api *API) GetGroup(groupName string, withAttributes bool) (*Group, error) {
url := "rest/usermanagement/1/group?groupname=" + esc(groupName)
if withAttributes {
url += "&expand=attributes"
}
result := &Group{}
statusCode, err := api.doRequest("GET", url, result, nil)
if err != nil {
return nil, err
}
switch statusCode {
case 200:
return result, nil
case 403:
return nil, ErrNoPerms
default:
return nil, makeUnknownError(statusCode)
}
}
// GetGroupAttributes returns a list of group attributes
func (api *API) GetGroupAttributes(groupName string) (Attributes, error) {
result := &GroupAttributes{}
statusCode, err := api.doRequest(
"GET", "rest/usermanagement/1/group/attribute?groupname="+esc(groupName),
result, nil,
)
if err != nil {
return nil, err
}
switch statusCode {
case 200:
return result.Attributes, nil
case 403:
return nil, ErrNoPerms
case 404:
return nil, ErrGroupNoFound
default:
return nil, makeUnknownError(statusCode)
}
}
// SetGroupAttributes stores all the group attributes
func (api *API) SetGroupAttributes(groupName string, attrs *GroupAttributes) error {
statusCode, err := api.doRequest(
"POST", "rest/usermanagement/1/group/attribute?groupname="+esc(groupName),
nil, attrs,
)
if err != nil {
return err
}
switch statusCode {
case 204:
return nil
case 403:
return ErrNoPerms
case 404:
return ErrGroupNoFound
default:
return makeUnknownError(statusCode)
}
}
// DeleteGroupAttributes deletes a group attribute
func (api *API) DeleteGroupAttributes(groupName, attrName string) error {
url := fmt.Sprintf(
"rest/usermanagement/1/group/attribute?groupname=%s&attributename=%s",
esc(groupName), esc(attrName),
)
statusCode, err := api.doRequest("DELETE", url, nil, nil)
if err != nil {
return err
}
if err != nil {
return err
}
switch statusCode {
case 204:
return nil
case 403:
return ErrNoPerms
case 404:
return ErrGroupNoFound
default:
return makeUnknownError(statusCode)
}
}
// GetGroupUsers returns the users that are members of the specified group
func (api *API) GetGroupUsers(groupName, groupType string) ([]*User, error) {
result := &struct {
Users []*User `xml:"user"`
}{}
url := fmt.Sprintf(
"rest/usermanagement/1/group/user/%s?expand=user&groupname=%s",
esc(groupType), esc(groupName),
)
statusCode, err := api.doRequest("GET", url, result, nil)
if err != nil {
return nil, err
}
switch statusCode {
case 200:
return result.Users, nil
case 403:
return nil, ErrNoPerms
default:
return nil, makeUnknownError(statusCode)
}
}
// GetGroupDirectUsers returns the users that are direct members of the specified group
func (api *API) GetGroupDirectUsers(groupName string) ([]*User, error) {
return api.GetGroupUsers(groupName, GROUP_DIRECT)
}
// GetGroupNestedUsers returns the users that are nested members of the specified group
func (api *API) GetGroupNestedUsers(groupName string) ([]*User, error) {
return api.GetGroupUsers(groupName, GROUP_NESTED)
}
// GetMemberships returns full details of all group memberships, with users and
// nested groups
func (api *API) GetMemberships() ([]*Membership, error) {
result := &struct {
Memberships []*Membership `xml:"membership"`
}{}
statusCode, err := api.doRequest(
"GET", "rest/usermanagement/1/group/membership",
result, nil,
)
if err != nil {
return nil, err
}
switch statusCode {
case 200:
return result.Memberships, nil
case 403:
return nil, ErrNoPerms
default:
return nil, makeUnknownError(statusCode)
}
}
// SearchUsers searches for users with the specified search restriction
func (api *API) SearchUsers(cql string) ([]*User, error) {
result := &struct {
Users []*User `xml:"user"`
}{}
statusCode, err := api.doRequest(
"GET", "rest/usermanagement/1/search?entity-type=user&expand=user&restriction="+esc(cql),
result, nil,
)
if err != nil {
return nil, err
}
switch statusCode {
case 200:
return result.Users, nil
case 403:
return nil, ErrNoPerms
default:
return nil, makeUnknownError(statusCode)
}
}
// SearchGroups searches for groups with the specified search restriction
func (api *API) SearchGroups(cql string) ([]*Group, error) {
result := &struct {
Groups []*Group `xml:"group"`
}{}
statusCode, err := api.doRequest(
"GET", "rest/usermanagement/1/search?entity-type=group&expand=group&restriction="+esc(cql),
result, nil,
)
if err != nil {
return nil, err
}
switch statusCode {
case 200:
return result.Groups, nil
case 403:
return nil, ErrNoPerms
default:
return nil, makeUnknownError(statusCode)
}
}
// ////////////////////////////////////////////////////////////////////////////////// //
// codebeat:disable[ARITY]
// doRequest create and execute request
func (api *API) doRequest(method, uri string, result, body interface{}) (int, error) {
req := api.acquireRequest(method, uri)
resp := fasthttp.AcquireResponse()
defer fasthttp.ReleaseRequest(req)
defer fasthttp.ReleaseResponse(resp)
if body != nil {
bodyData, err := xml.Marshal(body)
if err != nil {
return -1, err
}
req.SetBody(append([]byte(xml.Header), bodyData...))
}
err := api.Client.Do(req, resp)
if err != nil {
return -1, err
}
statusCode := resp.StatusCode()
if statusCode != 200 && statusCode < 500 {
return statusCode, decodeInternalError(resp.Body())
}
if result == nil {
return statusCode, nil
}
err = xml.Unmarshal(resp.Body(), result)
return statusCode, err
}
// codebeat:enable[ARITY]
// acquireRequest acquire new request with given params
func (api *API) acquireRequest(method, uri string) *fasthttp.Request {
req := fasthttp.AcquireRequest()
req.SetRequestURI(api.url + uri)
if method != "GET" {
req.Header.SetMethod(method)
}
if method == "POST" {
req.Header.Set("Content-Type", "application/xml")
req.Header.Add("Accept", "application/xml")
}
// Set auth header
req.Header.Add("Authorization", "Basic "+api.basicAuth)
return req
}
// ////////////////////////////////////////////////////////////////////////////////// //
// decodeInternalError decode xml-encoded error
func decodeInternalError(data []byte) error {
ce := &crowdError{}
err := xml.Unmarshal(data, ce)
if err != nil {
return nil
}
return ce.Error()
}
// getUserAgent generate user-agent string for client
func getUserAgent(app, version string) string {
if app != "" && version != "" {
return fmt.Sprintf(
"%s/%s %s/%s (go; %s; %s-%s)",
app, version, NAME, VERSION, runtime.Version(),
runtime.GOARCH, runtime.GOOS,
)
}
return fmt.Sprintf(
"%s/%s (go; %s; %s-%s)",
NAME, VERSION, runtime.Version(),
runtime.GOARCH, runtime.GOOS,
)
}
// genBasicAuthHeader generate basic auth header
func genBasicAuthHeader(username, password string) string {
return base64.StdEncoding.EncodeToString([]byte(username + ":" + password))
}
// makeUnknownError create error struct for unknown error
func makeUnknownError(statusCode int) error {
return fmt.Errorf("Unknown error occurred (status code %d)", statusCode)
}
// esc escapes the string so it can be safely placed inside a URL query
func esc(s string) string {
return url.QueryEscape(s)
}