-
Notifications
You must be signed in to change notification settings - Fork 13
/
team.go
599 lines (536 loc) · 14.9 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
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
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
package opslevel
import (
"fmt"
"html"
"slices"
)
type Contact struct {
Address string
DisplayName string
Id 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 *ID `json:"teamId,omitempty"`
TeamAlias string `json:"teamAlias,omitempty"`
}
type ContactUpdateInput struct {
Id ID `json:"id"`
Type *ContactType `json:"type,omitempty"`
DisplayName string `json:"displayName,omitempty"`
Address string `json:"address,omitempty"`
}
type ContactDeleteInput struct {
Id ID `json:"id"`
}
// Has no json struct tags as this is nested in returned data structs
type TeamId struct {
Alias string
Id ID
}
type Team struct {
TeamId
Aliases []string
Contacts []Contact
Group GroupId
HTMLUrl string
Manager User
Members *UserConnection
Name string
ParentTeam TeamId
Responsibilities string
Tags *TagConnection
}
// Had to create this to prevent circular references on User because Team has UserConnection
type TeamIdConnection struct {
Nodes []TeamId
PageInfo PageInfo
TotalCount int
}
type TeamConnection struct {
Nodes []Team
PageInfo PageInfo
TotalCount int
}
type TeamCreateInput struct {
Name string `json:"name"`
ManagerEmail string `json:"managerEmail,omitempty"`
Responsibilities string `json:"responsibilities,omitempty"`
Group *IdentifierInput `json:"group"`
Contacts *[]ContactInput `json:"contacts,omitempty"`
ParentTeam *IdentifierInput `json:"parentTeam"`
}
type TeamUpdateInput struct {
Id ID `json:"id"`
Alias string `json:"alias,omitempty"`
Name string `json:"name,omitempty"`
ManagerEmail string `json:"managerEmail,omitempty"`
Group *IdentifierInput `json:"group"`
Responsibilities string `json:"responsibilities,omitempty"`
ParentTeam *IdentifierInput `json:"parentTeam"`
}
type TeamDeleteInput struct {
Id ID `json:"id,omitempty"`
Alias string `json:"alias,omitempty"`
}
type TeamMembership struct {
Team TeamId `graphql:"team"`
Role string `graphql:"role"`
User UserId `graphql:"user"`
}
type TeamMembershipUserInput struct {
User UserIdentifierInput `json:"user"`
}
type TeamMembershipCreateInput struct {
TeamId ID `json:"teamId"`
Members []TeamMembershipUserInput `json:"members"`
}
type TeamMembershipDeleteInput struct {
TeamId ID `json:"teamId"`
Members []TeamMembershipUserInput `json:"members"`
}
func (t *Team) ResourceId() ID {
return t.Id
}
func (t *Team) ResourceType() TaggableResource {
return TaggableResourceTeam
}
//#region Helpers
func (self *Team) Hydrate(client *Client) error {
self.Responsibilities = html.UnescapeString(self.Responsibilities)
if self.Members == nil {
self.Members = &UserConnection{}
}
if self.Members.PageInfo.HasNextPage {
variables := client.InitialPageVariablesPointer()
(*variables)["after"] = self.Members.PageInfo.End
_, err := self.GetMembers(client, variables)
if err != nil {
return err
}
}
if self.Tags == nil {
self.Tags = &TagConnection{}
}
if self.Tags.PageInfo.HasNextPage {
variables := client.InitialPageVariablesPointer()
(*variables)["after"] = self.Tags.PageInfo.End
_, err := self.GetTags(client, variables)
if err != nil {
return err
}
}
return nil
}
func (t *Team) GetMembers(client *Client, variables *PayloadVariables) (*UserConnection, error) {
var q struct {
Account struct {
Team struct {
Members UserConnection `graphql:"members(after: $after, first: $first)"`
} `graphql:"team(id: $team)"`
}
}
if t.Id == "" {
return nil, fmt.Errorf("Unable to get Members, invalid team id: '%s'", t.Id)
}
if variables == nil {
variables = client.InitialPageVariablesPointer()
}
(*variables)["team"] = t.Id
if err := client.Query(&q, *variables, WithName("TeamMembersList")); err != nil {
return nil, err
}
if t.Members == nil {
members := UserConnection{}
t.Members = &members
}
t.Members.Nodes = append(t.Members.Nodes, q.Account.Team.Members.Nodes...)
t.Members.PageInfo = q.Account.Team.Members.PageInfo
t.Members.TotalCount += q.Account.Team.Members.TotalCount
for t.Members.PageInfo.HasNextPage {
(*variables)["after"] = t.Members.PageInfo.End
_, err := t.GetMembers(client, variables)
if err != nil {
return nil, err
}
}
return t.Members, nil
}
func (t *Team) GetTags(client *Client, variables *PayloadVariables) (*TagConnection, error) {
var q struct {
Account struct {
Team struct {
Tags TagConnection `graphql:"tags(after: $after, first: $first)"`
} `graphql:"team(id: $team)"`
}
}
if t.Id == "" {
return nil, fmt.Errorf("Unable to get Tags, invalid team id: '%s'", t.Id)
}
if variables == nil {
variables = client.InitialPageVariablesPointer()
}
(*variables)["team"] = t.Id
if err := client.Query(&q, *variables, WithName("TeamTagsList")); err != nil {
return nil, err
}
if t.Tags == nil {
t.Tags = &TagConnection{}
}
// Add unique tags only
for _, tagNode := range q.Account.Team.Tags.Nodes {
if !slices.Contains[[]Tag, Tag](t.Tags.Nodes, tagNode) {
t.Tags.Nodes = append(t.Tags.Nodes, tagNode)
}
}
t.Tags.PageInfo = q.Account.Team.Tags.PageInfo
t.Tags.TotalCount += q.Account.Team.Tags.TotalCount
for t.Tags.PageInfo.HasNextPage {
(*variables)["after"] = t.Tags.PageInfo.End
_, err := t.GetTags(client, variables)
if err != nil {
return nil, err
}
}
return t.Tags, nil
}
func BuildMembershipInput(members []string) (output []TeamMembershipUserInput) {
for _, email := range members {
output = append(output, TeamMembershipUserInput{User: UserIdentifierInput{Email: email}})
}
return
}
func CreateContactSlack(channel string, name *string) ContactInput {
return ContactInput{
Type: ContactTypeSlack,
DisplayName: name,
Address: channel,
}
}
func CreateContactSlackHandle(channel string, name *string) ContactInput {
return ContactInput{
Type: ContactTypeSlackHandle,
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,
}
}
func (s *Team) HasTag(key string, value string) bool {
for _, tag := range s.Tags.Nodes {
if tag.Key == key && tag.Value == value {
return true
}
}
return false
}
//#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, WithName("TeamCreate")); 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) ([]TeamMembership, error) {
var m struct {
Payload struct {
Members []TeamMembership `graphql:"memberships"`
Errors []OpsLevelErrors
} `graphql:"teamMembershipCreate(input: $input)"`
}
v := PayloadVariables{
"input": TeamMembershipCreateInput{
TeamId: team.Id,
Members: BuildMembershipInput(emails),
},
}
err := client.Mutate(&m, v, WithName("TeamMembershipCreate"))
return m.Payload.Members, HandleErrors(err, m.Payload.Errors)
}
func (client *Client) AddMember(team *TeamId, email string) ([]TeamMembership, error) {
emails := []string{email}
return client.AddMembers(team, emails)
}
func (client *Client) AddContact(team string, contact ContactInput) (*Contact, error) {
var m struct {
Payload struct {
Contact Contact
Errors []OpsLevelErrors
} `graphql:"contactCreate(input: $input)"`
}
contactInput := ContactCreateInput{
Type: contact.Type,
DisplayName: *contact.DisplayName,
Address: contact.Address,
}
if IsID(team) {
contactInput.TeamId = NewID(team)
} else {
contactInput.TeamAlias = team
}
v := PayloadVariables{
"input": contactInput,
}
err := client.Mutate(&m, v, WithName("ContactCreate"))
return &m.Payload.Contact, HandleErrors(err, 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": alias,
}
if err := client.Query(&q, v, WithName("TeamGet")); 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 ID) (*Team, error) {
return client.GetTeam(id)
}
func (client *Client) GetTeam(id ID) (*Team, error) {
var q struct {
Account struct {
Team Team `graphql:"team(id: $id)"`
}
}
v := PayloadVariables{
"id": id,
}
if err := client.Query(&q, v, WithName("TeamGet")); 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
}
}
}
err := client.Query(&q, nil, WithName("TeamCount"))
return int(q.Account.Teams.TotalCount), HandleErrors(err, nil)
}
func (client *Client) ListTeams(variables *PayloadVariables) (*TeamConnection, error) {
var q struct {
Account struct {
Teams TeamConnection `graphql:"teams(after: $after, first: $first)"`
}
}
if variables == nil {
variables = client.InitialPageVariablesPointer()
}
if err := client.Query(&q, *variables, WithName("TeamList")); err != nil {
return &TeamConnection{}, err
}
for q.Account.Teams.PageInfo.HasNextPage {
(*variables)["after"] = q.Account.Teams.PageInfo.End
resp, err := client.ListTeams(variables)
if err != nil {
return &TeamConnection{}, err
}
for _, node := range resp.Nodes {
if err := node.Hydrate(client); err != nil {
return &TeamConnection{}, err
}
q.Account.Teams.Nodes = append(q.Account.Teams.Nodes, node)
}
q.Account.Teams.PageInfo = resp.PageInfo
q.Account.Teams.TotalCount += resp.TotalCount
}
return &q.Account.Teams, nil
}
func (client *Client) ListTeamsWithManager(email string, variables *PayloadVariables) (*TeamConnection, error) {
var q struct {
Account struct {
Teams TeamConnection `graphql:"teams(managerEmail: $email, after: $after, first: $first)"`
}
}
if variables == nil {
variables = client.InitialPageVariablesPointer()
}
(*variables)["email"] = email
if err := client.Query(&q, *variables, WithName("TeamList")); err != nil {
return &TeamConnection{}, err
}
for q.Account.Teams.PageInfo.HasNextPage {
(*variables)["after"] = q.Account.Teams.PageInfo.End
resp, err := client.ListTeamsWithManager(email, variables)
if err != nil {
return &TeamConnection{}, err
}
for _, node := range resp.Nodes {
if err := node.Hydrate(client); err != nil {
return &TeamConnection{}, err
}
q.Account.Teams.Nodes = append(q.Account.Teams.Nodes, node)
}
q.Account.Teams.PageInfo = resp.PageInfo
q.Account.Teams.TotalCount += resp.TotalCount
}
return &q.Account.Teams, nil
}
//#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, WithName("TeamUpdate")); 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 ID, contact ContactInput) (*Contact, error) {
var m struct {
Payload struct {
Contact Contact
Errors []OpsLevelErrors
} `graphql:"contactUpdate(input: $input)"`
}
input := ContactUpdateInput{
Id: id,
DisplayName: *contact.DisplayName,
Address: contact.Address,
}
if contact.Type == "" {
input.Type = nil
} else {
input.Type = &contact.Type
}
v := PayloadVariables{
"input": input,
}
err := client.Mutate(&m, v, WithName("ContactUpdate"))
return &m.Payload.Contact, HandleErrors(err, m.Payload.Errors)
}
//#endregion
//#region Delete
func (client *Client) DeleteTeamWithAlias(alias string) error {
var m struct {
Payload struct {
Id ID `graphql:"deletedTeamId"`
Alias string `graphql:"deletedTeamAlias"`
Errors []OpsLevelErrors `graphql:"errors"`
} `graphql:"teamDelete(input: $input)"`
}
v := PayloadVariables{
"input": TeamDeleteInput{
Alias: alias,
},
}
err := client.Mutate(&m, v, WithName("TeamDelete"))
return HandleErrors(err, m.Payload.Errors)
}
// Deprecated: use DeleteTeam instead
func (client *Client) DeleteTeamWithId(id ID) error {
return client.DeleteTeam(id)
}
func (client *Client) DeleteTeam(id ID) error {
var m struct {
Payload struct {
Id ID `graphql:"deletedTeamId"`
Alias string `graphql:"deletedTeamAlias"`
Errors []OpsLevelErrors `graphql:"errors"`
} `graphql:"teamDelete(input: $input)"`
}
v := PayloadVariables{
"input": TeamDeleteInput{
Id: id,
},
}
err := client.Mutate(&m, v, WithName("TeamDelete"))
return HandleErrors(err, 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),
},
}
err := client.Mutate(&m, v, WithName("TeamMembershipDelete"))
return m.Payload.Members, HandleErrors(err, 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 ID) error {
var m struct {
Payload struct {
Contact ID `graphql:"deletedContactId"`
Errors []OpsLevelErrors
} `graphql:"contactDelete(input: $input)"`
}
v := PayloadVariables{
"input": ContactDeleteInput{
Id: contact,
},
}
err := client.Mutate(&m, v, WithName("ContactDelete"))
return HandleErrors(err, m.Payload.Errors)
}
//#endregion