forked from OpsLevel/opslevel-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.go
510 lines (455 loc) · 11.8 KB
/
team.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
package opslevel
import (
"github.com/shurcooL/graphql"
)
type User struct {
Email string
HTMLUrl string
Id graphql.ID
Name string
Role UserRole
}
type UserConnection struct {
Nodes []User
PageInfo PageInfo
}
type Contact struct {
Address string
DisplayName string
Id graphql.ID
Type ContactType
}
type ContactInput struct {
Type ContactType `json:"type"`
DisplayName string `json:"displayName,omitEmpty"`
Address string `json:"address"`
}
type ContactCreateInput struct {
Type ContactType `json:"type"`
DisplayName string `json:"displayName,omitempty"`
Address string `json:"address"`
TeamId *graphql.ID `json:"teamId,omitempty"`
TeamAlias string `json:"teamAlias,omitempty"`
}
type ContactUpdateInput struct {
Id graphql.ID `json:"id"`
Type *ContactType `json:"type,omitempty"`
DisplayName string `json:"displayName,omitempty"`
Address string `json:"address,omitempty"`
}
type ContactDeleteInput struct {
Id graphql.ID `json:"id"`
}
type TeamId struct {
Alias string
Id graphql.ID
}
type Team struct {
TeamId
Aliases []string
Contacts []Contact
HTMLUrl string
Manager User
Members UserConnection
Name string
Responsibilities string
}
type TeamConnection struct {
Nodes []Team
PageInfo PageInfo
}
type TeamCreateInput struct {
Name string `json:"name"`
ManagerEmail string `json:"managerEmail,omitempty"`
Responsibilities string `json:"responsibilities,omitempty"`
Contacts []ContactInput `json:"contacts,omitempty"`
}
type TeamUpdateInput struct {
Id graphql.ID `json:"id,omitempty"`
Alias string `json:"alias,omitempty"`
Name string `json:"name,omitempty"`
ManagerEmail string `json:"managerEmail,omitempty"`
Responsibilities string `json:"responsibilities,omitempty"`
}
type TeamDeleteInput struct {
Id graphql.ID `json:"id,omitempty"`
Alias string `json:"alias,omitempty"`
}
type TeamMembershipUserInput struct {
Email string `json:"email"`
}
type TeamMembershipCreateInput struct {
TeamId graphql.ID `json:"teamId"`
Members []TeamMembershipUserInput `json:"members"`
}
type TeamMembershipDeleteInput struct {
TeamId graphql.ID `json:"teamId"`
Members []TeamMembershipUserInput `json:"members"`
}
//#region Helpers
func (conn *UserConnection) Hydrate(id graphql.ID, client *Client) error {
var q struct {
Account struct {
Team struct {
Members UserConnection `graphql:"members(after: $after, first: $first)"`
} `graphql:"team(id: $id)"`
}
}
v := PayloadVariables{
"id": id,
"first": client.pageSize,
}
q.Account.Team.Members.PageInfo = conn.PageInfo
for q.Account.Team.Members.PageInfo.HasNextPage {
v["after"] = q.Account.Team.Members.PageInfo.End
if err := client.Query(&q, v); err != nil {
return err
}
for _, item := range q.Account.Team.Members.Nodes {
conn.Nodes = append(conn.Nodes, item)
}
}
return nil
}
func (self *Team) Hydrate(client *Client) error {
if err := self.Members.Hydrate(self.Id, client); err != nil {
return err
}
return nil
}
func (conn *TeamConnection) Hydrate(client *Client) error {
var q struct {
Account struct {
Teams TeamConnection `graphql:"teams(after: $after, first: $first)"`
}
}
v := PayloadVariables{
"first": client.pageSize,
}
q.Account.Teams.PageInfo = conn.PageInfo
for q.Account.Teams.PageInfo.HasNextPage {
v["after"] = q.Account.Teams.PageInfo.End
if err := client.Query(&q, v); err != nil {
return err
}
for _, item := range q.Account.Teams.Nodes {
if err := (&item).Hydrate(client); err != nil {
return err
}
conn.Nodes = append(conn.Nodes, item)
}
}
return nil
}
func (conn *TeamConnection) Query(client *Client, q interface{}, v PayloadVariables) ([]Team, error) {
if err := client.Query(q, v); err != nil {
return conn.Nodes, err
}
if err := conn.Hydrate(client); err != nil {
return conn.Nodes, err
}
return conn.Nodes, nil
}
func BuildMembershipInput(members []string) (output []TeamMembershipUserInput) {
for _, email := range members {
output = append(output, TeamMembershipUserInput{Email: email})
}
return
}
func CreateContactSlack(channel string, name string) ContactInput {
return ContactInput{
Type: ContactTypeSlack,
DisplayName: name,
Address: channel,
}
}
func CreateContactEmail(email string, name string) ContactInput {
return ContactInput{
Type: ContactTypeEmail,
DisplayName: name,
Address: email,
}
}
func CreateContactWeb(address string, name string) ContactInput {
return ContactInput{
Type: ContactTypeWeb,
DisplayName: name,
Address: address,
}
}
//#endregion
//#region Create
func (client *Client) CreateTeam(input TeamCreateInput) (*Team, error) {
var m struct {
Payload struct {
Team Team
Errors []OpsLevelErrors
} `graphql:"teamCreate(input: $input)"`
}
v := PayloadVariables{
"input": input,
}
if err := client.Mutate(&m, v); err != nil {
return nil, err
}
if err := m.Payload.Team.Hydrate(client); err != nil {
return &m.Payload.Team, err
}
return &m.Payload.Team, FormatErrors(m.Payload.Errors)
}
func (client *Client) AddMembers(team *TeamId, emails []string) ([]User, error) {
var m struct {
Payload struct {
Members []User
Errors []OpsLevelErrors
} `graphql:"teamMembershipCreate(input: $input)"`
}
v := PayloadVariables{
"input": TeamMembershipCreateInput{
TeamId: team.Id,
Members: BuildMembershipInput(emails),
},
}
if err := client.Mutate(&m, v); err != nil {
return nil, err
}
return m.Payload.Members, FormatErrors(m.Payload.Errors)
}
func (client *Client) AddMember(team *TeamId, email string) ([]User, error) {
emails := []string{email}
return client.AddMembers(team, emails)
}
func (client *Client) AddContact(team *TeamId, contact ContactInput) (*Contact, error) {
var m struct {
Payload struct {
Contact Contact
Errors []OpsLevelErrors
} `graphql:"contactCreate(input: $input)"`
}
v := PayloadVariables{
"input": ContactCreateInput{
TeamId: &team.Id,
Type: contact.Type,
DisplayName: contact.DisplayName,
Address: contact.Address,
},
}
if err := client.Mutate(&m, v); err != nil {
return nil, err
}
return &m.Payload.Contact, FormatErrors(m.Payload.Errors)
}
func (client *Client) AddContactWithTeamAlias(team string, contact ContactInput) (*Contact, error) {
var m struct {
Payload struct {
Contact Contact
Errors []OpsLevelErrors
} `graphql:"contactCreate(input: $input)"`
}
v := PayloadVariables{
"input": ContactCreateInput{
TeamAlias: team,
Type: contact.Type,
DisplayName: contact.DisplayName,
Address: contact.Address,
},
}
if err := client.Mutate(&m, v); err != nil {
return nil, err
}
return &m.Payload.Contact, FormatErrors(m.Payload.Errors)
}
//#endregion
//#region Retrieve
func (client *Client) GetTeamWithAlias(alias string) (*Team, error) {
var q struct {
Account struct {
Team Team `graphql:"team(alias: $alias)"`
}
}
v := PayloadVariables{
"alias": graphql.String(alias),
}
if err := client.Query(&q, v); err != nil {
return nil, err
}
if err := q.Account.Team.Hydrate(client); err != nil {
return &q.Account.Team, err
}
return &q.Account.Team, nil
}
// Deprecated: use GetTeam instead
func (client *Client) GetTeamWithId(id graphql.ID) (*Team, error) {
return client.GetTeam(id)
}
func (client *Client) GetTeam(id graphql.ID) (*Team, error) {
var q struct {
Account struct {
Team Team `graphql:"team(id: $id)"`
}
}
v := PayloadVariables{
"id": id,
}
if err := client.Query(&q, v); err != nil {
return nil, err
}
if err := q.Account.Team.Hydrate(client); err != nil {
return &q.Account.Team, err
}
return &q.Account.Team, nil
}
func (client *Client) GetTeamCount() (int, error) {
var q struct {
Account struct {
Teams struct {
TotalCount int
}
}
}
if err := client.Query(&q, nil); err != nil {
return 0, err
}
return int(q.Account.Teams.TotalCount), nil
}
func (client *Client) ListTeams() ([]Team, error) {
var q struct {
Account struct {
Teams TeamConnection `graphql:"teams(after: $after, first: $first)"`
}
}
v := client.InitialPageVariables()
return q.Account.Teams.Query(client, &q, v)
}
func (client *Client) ListTeamsWithManager(email string) ([]Team, error) {
var q struct {
Account struct {
Teams TeamConnection `graphql:"teams(managerEmail: $email, after: $after, first: $first)"`
}
}
v := client.InitialPageVariables()
v["email"] = graphql.String(email)
return q.Account.Teams.Query(client, &q, v)
}
//#endregion
//#region Update
func (client *Client) UpdateTeam(input TeamUpdateInput) (*Team, error) {
var m struct {
Payload struct {
Team Team
Errors []OpsLevelErrors
} `graphql:"teamUpdate(input: $input)"`
}
v := PayloadVariables{
"input": input,
}
if err := client.Mutate(&m, v); err != nil {
return nil, err
}
if err := m.Payload.Team.Hydrate(client); err != nil {
return &m.Payload.Team, err
}
return &m.Payload.Team, FormatErrors(m.Payload.Errors)
}
func (client *Client) UpdateContact(id graphql.ID, contact ContactInput) (*Contact, error) {
var m struct {
Payload struct {
Contact Contact
Errors []OpsLevelErrors
} `graphql:"contactUpdate(input: $input)"`
}
v := PayloadVariables{
"input": ContactUpdateInput{
Id: id,
Type: &contact.Type,
DisplayName: contact.DisplayName,
Address: contact.Address,
},
}
if err := client.Mutate(&m, v); err != nil {
return nil, err
}
return &m.Payload.Contact, FormatErrors(m.Payload.Errors)
}
//#endregion
//#region Delete
func (client *Client) DeleteTeamWithAlias(alias string) error {
var m struct {
Payload struct {
Id graphql.ID `graphql:"deletedTeamId"`
Alias graphql.String `graphql:"deletedTeamAlias"`
Errors []OpsLevelErrors `graphql:"errors"`
} `graphql:"teamDelete(input: $input)"`
}
v := PayloadVariables{
"input": TeamDeleteInput{
Alias: alias,
},
}
if err := client.Mutate(&m, v); err != nil {
return err
}
return FormatErrors(m.Payload.Errors)
}
// Deprecated: use DeleteTeam instead
func (client *Client) DeleteTeamWithId(id graphql.ID) error {
return client.DeleteTeam(id)
}
func (client *Client) DeleteTeam(id graphql.ID) error {
var m struct {
Payload struct {
Id graphql.ID `graphql:"deletedTeamId"`
Alias graphql.String `graphql:"deletedTeamAlias"`
Errors []OpsLevelErrors `graphql:"errors"`
} `graphql:"teamDelete(input: $input)"`
}
v := PayloadVariables{
"input": TeamDeleteInput{
Id: id,
},
}
if err := client.Mutate(&m, v); err != nil {
return err
}
return FormatErrors(m.Payload.Errors)
}
func (client *Client) RemoveMembers(team *TeamId, emails []string) ([]User, error) {
var m struct {
Payload struct {
Members []User `graphql:"deletedMembers"`
Errors []OpsLevelErrors
} `graphql:"teamMembershipDelete(input: $input)"`
}
v := PayloadVariables{
"input": TeamMembershipDeleteInput{
TeamId: team.Id,
Members: BuildMembershipInput(emails),
},
}
if err := client.Mutate(&m, v); err != nil {
return nil, err
}
return m.Payload.Members, FormatErrors(m.Payload.Errors)
}
func (client *Client) RemoveMember(team *TeamId, email string) ([]User, error) {
emails := []string{email}
return client.RemoveMembers(team, emails)
}
func (client *Client) RemoveContact(contact graphql.ID) error {
var m struct {
Payload struct {
Contact graphql.ID `graphql:"deletedContactId"`
Errors []OpsLevelErrors
} `graphql:"contactDelete(input: $input)"`
}
v := PayloadVariables{
"input": ContactDeleteInput{
Id: contact,
},
}
if err := client.Mutate(&m, v); err != nil {
return err
}
return FormatErrors(m.Payload.Errors)
}
//#endregion