-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathuser.go
125 lines (105 loc) · 4 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
package client
import (
"context"
"net/url"
"github.com/cloudfoundry/go-cfclient/v3/internal/path"
"github.com/cloudfoundry/go-cfclient/v3/resource"
)
type UserClient commonClient
// UserListOptions list filters
type UserListOptions struct {
*ListOptions
// list of user guids to filter by
GUIDs Filter `qs:"guids"`
// list of usernames to filter by. Mutually exclusive with partial_usernames
UserNames Filter `qs:"usernames"`
// list of strings to search by. When using this query parameter, all the users that
// contain the string provided in their username will be returned. Mutually exclusive with usernames
PartialUsernames Filter `qs:"partial_usernames"`
// list of user origins (user stores) to filter by, for example, users authenticated by
// UAA have the origin “uaa”; users authenticated by an LDAP provider have the
// origin ldap when filtering by origins, usernames must be included
Origins Filter `qs:"origins"`
}
// NewUserListOptions creates new options to pass to list
func NewUserListOptions() *UserListOptions {
return &UserListOptions{
ListOptions: NewListOptions(),
}
}
func (o UserListOptions) ToQueryString() (url.Values, error) {
return o.ListOptions.ToQueryString(o)
}
// Create a new user via GUID
func (c *UserClient) Create(ctx context.Context, r *resource.UserCreate) (*resource.User, error) {
return c.createUserCall(ctx, r)
}
// CreateWithUsername creates a new user via Username and Origin
func (c *UserClient) CreateWithUsername(ctx context.Context, r *resource.UserCreateWithUsername) (*resource.User, error) {
return c.createUserCall(ctx, r)
}
// Common Code for creating the user via API
func (c *UserClient) createUserCall(ctx context.Context, r any) (*resource.User, error) {
var user resource.User
_, err := c.client.post(ctx, "/v3/users", r, &user)
if err != nil {
return nil, err
}
return &user, nil
}
// Delete the specified user
func (c *UserClient) Delete(ctx context.Context, guid string) (string, error) {
return c.client.delete(ctx, path.Format("/v3/users/%s", guid))
}
// First returns the first user matching the options or an error when less than 1 match
func (c *UserClient) First(ctx context.Context, opts *UserListOptions) (*resource.User, error) {
return First[*UserListOptions, *resource.User](opts, func(opts *UserListOptions) ([]*resource.User, *Pager, error) {
return c.List(ctx, opts)
})
}
// Get the specified user
func (c *UserClient) Get(ctx context.Context, guid string) (*resource.User, error) {
var user resource.User
err := c.client.get(ctx, path.Format("/v3/users/%s", guid), &user)
if err != nil {
return nil, err
}
return &user, nil
}
// List pages all users the user has access to
func (c *UserClient) List(ctx context.Context, opts *UserListOptions) ([]*resource.User, *Pager, error) {
if opts == nil {
opts = NewUserListOptions()
}
var res resource.UserList
err := c.client.list(ctx, "/v3/users", opts.ToQueryString, &res)
if err != nil {
return nil, nil, err
}
pager := NewPager(res.Pagination)
return res.Resources, pager, nil
}
// ListAll retrieves all users the user has access to
func (c *UserClient) ListAll(ctx context.Context, opts *UserListOptions) ([]*resource.User, error) {
if opts == nil {
opts = NewUserListOptions()
}
return AutoPage[*UserListOptions, *resource.User](opts, func(opts *UserListOptions) ([]*resource.User, *Pager, error) {
return c.List(ctx, opts)
})
}
// Single returns a single user matching the options or an error if not exactly 1 match
func (c *UserClient) Single(ctx context.Context, opts *UserListOptions) (*resource.User, error) {
return Single[*UserListOptions, *resource.User](opts, func(opts *UserListOptions) ([]*resource.User, *Pager, error) {
return c.List(ctx, opts)
})
}
// Update the specified attributes of a user
func (c *UserClient) Update(ctx context.Context, guid string, r *resource.UserUpdate) (*resource.User, error) {
var user resource.User
_, err := c.client.patch(ctx, path.Format("/v3/users/%s", guid), r, &user)
if err != nil {
return nil, err
}
return &user, nil
}