-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.go
322 lines (263 loc) · 7.96 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
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
package backlog
import (
"encoding/json"
"path"
"strconv"
)
// UserID is ID of user.
type UserID int
func (id UserID) validate() error {
if id < 1 {
return newValidationError("userID must not be less than 1")
}
return nil
}
func (id UserID) String() string {
return strconv.Itoa(int(id))
}
func getUser(get clientGet, spath string) (*User, error) {
resp, err := get(spath, nil)
if err != nil {
return nil, err
}
defer resp.Body.Close()
v := User{}
if err := json.NewDecoder(resp.Body).Decode(&v); err != nil {
return nil, err
}
return &v, nil
}
func getUserList(get clientGet, spath string, query *QueryParams) ([]*User, error) {
resp, err := get(spath, query)
if err != nil {
return nil, err
}
defer resp.Body.Close()
v := []*User{}
if err := json.NewDecoder(resp.Body).Decode(&v); err != nil {
return nil, err
}
return v, nil
}
func addUser(post clientPost, spath string, form *FormParams) (*User, error) {
resp, err := post(spath, form)
if err != nil {
return nil, err
}
defer resp.Body.Close()
v := User{}
if err := json.NewDecoder(resp.Body).Decode(&v); err != nil {
return nil, err
}
return &v, nil
}
func updateUser(patch clientPatch, spath string, form *FormParams) (*User, error) {
resp, err := patch(spath, form)
if err != nil {
return nil, err
}
defer resp.Body.Close()
v := User{}
if err := json.NewDecoder(resp.Body).Decode(&v); err != nil {
return nil, err
}
return &v, nil
}
func deleteUser(delete clientDelete, spath string, form *FormParams) (*User, error) {
resp, err := delete(spath, form)
if err != nil {
return nil, err
}
defer resp.Body.Close()
v := User{}
if err := json.NewDecoder(resp.Body).Decode(&v); err != nil {
return nil, err
}
return &v, nil
}
// UserService has methods for user
type UserService struct {
method *method
Activity *UserActivityService
Option *UserOptionService
}
// All returns all users in your space.
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/get-user-list
func (s *UserService) All() ([]*User, error) {
return getUserList(s.method.Get, "users", nil)
}
// One returns a user in your space.
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/get-user
func (s *UserService) One(id int) (*User, error) {
uID := UserID(id)
if err := uID.validate(); err != nil {
return nil, err
}
spath := path.Join("users", uID.String())
return getUser(s.method.Get, spath)
}
// Own returns your own user.
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/get-own-user
func (s *UserService) Own() (*User, error) {
return getUser(s.method.Get, "users/myself")
}
// ToDo: func (s *UserService) Icon()
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/get-user-icon
// Add adds a user to your space.
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/add-user
func (s *UserService) Add(userID, password, name, mailAddress string, roleType Role) (*User, error) {
if userID == "" {
return nil, newValidationError("userID must not be empty")
}
form := NewFormParams()
if err := withFormPassword(password).set(form); err != nil {
return nil, err
}
if err := withFormName(name).set(form); err != nil {
return nil, err
}
if err := withFormMailAddress(mailAddress).set(form); err != nil {
return nil, err
}
if err := withFormRoleType(roleType).set(form); err != nil {
return nil, err
}
form.Set("userId", userID)
return addUser(s.method.Post, "users", form)
}
// Update updates a user in your space.
//
// This method can specify the options returned by methods in "*Client.User.Option".
//
// Use the following methods:
// WithFormName
// WithFormPassword
// WithFormMailAddress
// WithFormRoleType
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/update-user
func (s *UserService) Update(id int, options ...*FormOption) (*User, error) {
uID := UserID(id)
if err := uID.validate(); err != nil {
return nil, err
}
validOptions := []formType{formName, formPassword, formMailAddress, formRoleType}
for _, option := range options {
if err := option.validate(validOptions); err != nil {
return nil, err
}
}
form := NewFormParams()
for _, option := range options {
if err := option.set(form); err != nil {
return nil, err
}
}
spath := path.Join("users", uID.String())
return updateUser(s.method.Patch, spath, form)
}
// Delete deletes a user from your space.
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/delete-user
func (s *UserService) Delete(id int) (*User, error) {
uID := UserID(id)
if err := uID.validate(); err != nil {
return nil, err
}
spath := path.Join("users", uID.String())
return deleteUser(s.method.Delete, spath, nil)
}
// ProjectUserService has methods for user of project.
type ProjectUserService struct {
method *method
}
// All returns all users in the project.
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/get-project-user-list
func (s *ProjectUserService) All(projectIDOrKey string, excludeGroupMembers bool) ([]*User, error) {
if err := validateProjectIDOrKey(projectIDOrKey); err != nil {
return nil, err
}
query := NewQueryParams()
query.Set("excludeGroupMembers", strconv.FormatBool(excludeGroupMembers))
spath := path.Join("projects", projectIDOrKey, "users")
return getUserList(s.method.Get, spath, query)
}
// Add adds a user to the project.
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/add-project-user
func (s *ProjectUserService) Add(projectIDOrKey string, userID int) (*User, error) {
if err := validateProjectIDOrKey(projectIDOrKey); err != nil {
return nil, err
}
uID := UserID(userID)
if err := uID.validate(); err != nil {
return nil, err
}
form := NewFormParams()
form.Set("userId", uID.String())
spath := path.Join("projects", projectIDOrKey, "users")
return addUser(s.method.Post, spath, form)
}
// Delete deletes a user from the project.
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/delete-project-user
func (s *ProjectUserService) Delete(projectIDOrKey string, userID int) (*User, error) {
if err := validateProjectIDOrKey(projectIDOrKey); err != nil {
return nil, err
}
uID := UserID(userID)
if err := uID.validate(); err != nil {
return nil, err
}
form := NewFormParams()
form.Set("userId", uID.String())
spath := path.Join("projects", projectIDOrKey, "users")
return deleteUser(s.method.Delete, spath, form)
}
// AddAdmin adds a admin user to the project.
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/add-project-administrator
func (s *ProjectUserService) AddAdmin(projectIDOrKey string, userID int) (*User, error) {
if err := validateProjectIDOrKey(projectIDOrKey); err != nil {
return nil, err
}
uID := UserID(userID)
if err := uID.validate(); err != nil {
return nil, err
}
form := NewFormParams()
form.Set("userId", uID.String())
spath := path.Join("projects", projectIDOrKey, "administrators")
return addUser(s.method.Post, spath, form)
}
// AdminAll returns all of admin users in the project.
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/get-list-of-project-administrators
func (s *ProjectUserService) AdminAll(projectIDOrKey string) ([]*User, error) {
if err := validateProjectIDOrKey(projectIDOrKey); err != nil {
return nil, err
}
spath := path.Join("projects", projectIDOrKey, "administrators")
return getUserList(s.method.Get, spath, nil)
}
// DeleteAdmin deletes a admin user from the project.
//
// Backlog API docs: https://developer.nulab.com/docs/backlog/api/2/delete-project-administrator
func (s *ProjectUserService) DeleteAdmin(projectIDOrKey string, userID int) (*User, error) {
if err := validateProjectIDOrKey(projectIDOrKey); err != nil {
return nil, err
}
uID := UserID(userID)
if err := uID.validate(); err != nil {
return nil, err
}
form := NewFormParams()
form.Set("userId", uID.String())
spath := path.Join("projects", projectIDOrKey, "administrators")
return deleteUser(s.method.Delete, spath, form)
}