-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathOrganizationsApi.cs
748 lines (659 loc) · 34.1 KB
/
OrganizationsApi.cs
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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using InfluxDB.Client.Api.Domain;
using InfluxDB.Client.Api.Service;
using InfluxDB.Client.Core;
namespace InfluxDB.Client
{
public interface IOrganizationsApi
{
/// <summary>
/// Creates a new organization and sets <see cref="InfluxDB.Client.Api.Domain.Organization.Id" /> with the new identifier.
/// </summary>
/// <param name="name"></param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>Created organization</returns>
Task<Organization> CreateOrganizationAsync(string name, CancellationToken cancellationToken = default);
/// <summary>
/// Creates a new organization and sets <see cref="Organization.Id" /> with the new identifier.
/// </summary>
/// <param name="organization">the organization to create</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>created organization</returns>
Task<Organization> CreateOrganizationAsync(Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// Update an organization.
/// </summary>
/// <param name="organization">organization update to apply</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>updated organization</returns>
Task<Organization> UpdateOrganizationAsync(Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// Delete an organization.
/// </summary>
/// <param name="orgId">ID of organization to delete</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>delete has been accepted</returns>
Task DeleteOrganizationAsync(string orgId, CancellationToken cancellationToken = default);
/// <summary>
/// Delete an organization.
/// </summary>
/// <param name="organization">organization to delete</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>delete has been accepted</returns>
Task DeleteOrganizationAsync(Organization organization, CancellationToken cancellationToken = default);
/// <summary>
/// Clone an organization.
/// </summary>
/// <param name="clonedName">name of cloned organization</param>
/// <param name="orgId">ID of organization to clone</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>cloned organization</returns>
Task<Organization> CloneOrganizationAsync(string clonedName, string orgId,
CancellationToken cancellationToken = default);
/// <summary>
/// Clone an organization.
/// </summary>
/// <param name="clonedName">name of cloned organization</param>
/// <param name="organization">organization to clone</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>cloned organization</returns>
Task<Organization> CloneOrganizationAsync(string clonedName, Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// Retrieve an organization.
/// </summary>
/// <param name="orgId">ID of organization to get</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>organization details</returns>
Task<Organization> FindOrganizationByIdAsync(string orgId, CancellationToken cancellationToken = default);
/// <summary>
/// List all organizations.
/// </summary>
/// <param name="limit"> (optional, default to 20)</param>
/// <param name="offset"> (optional)</param>
/// <param name="descending"> (optional, default to false)</param>
/// <param name="org">Filter organizations to a specific organization name. (optional)</param>
/// <param name="orgID">Filter organizations to a specific organization ID. (optional)</param>
/// <param name="userID">Filter organizations to a specific user ID. (optional)</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>List all organizations</returns>
Task<List<Organization>> FindOrganizationsAsync(int? limit = null, int? offset = null,
bool? descending = null, string org = null, string orgID = null, string userID = null,
CancellationToken cancellationToken = default);
/// <summary>
/// List of secret keys the are stored for Organization. For example:
/// <code>
/// github_api_key,
/// some_other_key,
/// a_secret_key
/// </code>
/// </summary>
/// <param name="organization">the organization for get secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the secret keys</returns>
Task<List<string>> GetSecretsAsync(Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// List of secret keys the are stored for Organization. For example:
/// <code>
/// github_api_key,
/// some_other_key,
/// a_secret_key
/// </code>
/// </summary>
/// <param name="orgId">the organization for get secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the secret keys</returns>
Task<List<string>> GetSecretsAsync(string orgId, CancellationToken cancellationToken = default);
/// <summary>
/// Patches all provided secrets and updates any previous values.
/// </summary>
/// <param name="secrets">secrets to update/add</param>
/// <param name="organization">the organization for put secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
Task PutSecretsAsync(Dictionary<string, string> secrets, Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// Patches all provided secrets and updates any previous values.
/// </summary>
/// <param name="secrets">secrets to update/add</param>
/// <param name="orgId">the organization for put secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
Task PutSecretsAsync(Dictionary<string, string> secrets, string orgId,
CancellationToken cancellationToken = default);
/// <summary>
/// Delete provided secrets.
/// </summary>
/// <param name="secrets">secrets to delete</param>
/// <param name="organization">the organization for delete secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>keys successfully patched</returns>
Task DeleteSecretsAsync(List<string> secrets, Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// Delete provided secrets.
/// </summary>
/// <param name="secrets">secrets to delete</param>
/// <param name="orgId">the organization for delete secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>keys successfully patched</returns>
Task DeleteSecretsAsync(List<string> secrets, string orgId,
CancellationToken cancellationToken = default);
/// <summary>
/// Delete provided secrets.
/// </summary>
/// <param name="secrets">secrets to delete</param>
/// <param name="orgId">the organization for delete secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>keys successfully patched</returns>
Task DeleteSecretsAsync(SecretKeys secrets, string orgId, CancellationToken cancellationToken = default);
/// <summary>
/// List all members of an organization.
/// </summary>
/// <param name="organization">organization of the members</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the List all members of an organization</returns>
Task<List<ResourceMember>> GetMembersAsync(Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// List all members of an organization.
/// </summary>
/// <param name="orgId">ID of organization to get members</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the List all members of an organization</returns>
Task<List<ResourceMember>> GetMembersAsync(string orgId,
CancellationToken cancellationToken = default);
/// <summary>
/// Add organization member.
/// </summary>
/// <param name="member">the member of an organization</param>
/// <param name="organization">the organization of a member</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>created mapping</returns>
Task<ResourceMember> AddMemberAsync(User member, Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// Add organization member.
/// </summary>
/// <param name="memberId">the ID of a member</param>
/// <param name="orgId">the ID of an organization</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>created mapping</returns>
Task<ResourceMember> AddMemberAsync(string memberId, string orgId,
CancellationToken cancellationToken = default);
/// <summary>
/// Removes a member from an organization.
/// </summary>
/// <param name="member">the member of an organization</param>
/// <param name="organization">the organization of a member</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
Task DeleteMemberAsync(User member, Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// Removes a member from an organization.
/// </summary>
/// <param name="memberId">the ID of a member</param>
/// <param name="orgId">the ID of an organization</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
Task DeleteMemberAsync(string memberId, string orgId, CancellationToken cancellationToken = default);
/// <summary>
/// List all owners of an organization.
/// </summary>
/// <param name="organization">organization of the owners</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the List all owners of an organization</returns>
Task<List<ResourceOwner>> GetOwnersAsync(Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// List all owners of an organization.
/// </summary>
/// <param name="orgId">ID of organization to get owners</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the List all owners of an organization</returns>
Task<List<ResourceOwner>> GetOwnersAsync(string orgId,
CancellationToken cancellationToken = default);
/// <summary>
/// Add organization owner.
/// </summary>
/// <param name="owner">the owner of an organization</param>
/// <param name="organization">the organization of a owner</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>created mapping</returns>
Task<ResourceOwner> AddOwnerAsync(User owner, Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// Add organization owner.
/// </summary>
/// <param name="ownerId">the ID of a owner</param>
/// <param name="orgId">the ID of an organization</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>created mapping</returns>
Task<ResourceOwner> AddOwnerAsync(string ownerId, string orgId,
CancellationToken cancellationToken = default);
/// <summary>
/// Removes a owner from an organization.
/// </summary>
/// <param name="owner">the owner of an organization</param>
/// <param name="organization">the organization of a owner</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
Task DeleteOwnerAsync(User owner, Organization organization,
CancellationToken cancellationToken = default);
/// <summary>
/// Removes a owner from an organization.
/// </summary>
/// <param name="ownerId">the ID of a owner</param>
/// <param name="orgId">the ID of an organization</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
Task DeleteOwnerAsync(string ownerId, string orgId, CancellationToken cancellationToken = default);
}
public class OrganizationsApi : IOrganizationsApi
{
private readonly OrganizationsService _service;
private readonly SecretsService _secretsService;
protected internal OrganizationsApi(OrganizationsService service, SecretsService secretsService)
{
Arguments.CheckNotNull(service, nameof(service));
Arguments.CheckNotNull(secretsService, nameof(secretsService));
_service = service;
_secretsService = secretsService;
}
/// <summary>
/// Creates a new organization and sets <see cref="InfluxDB.Client.Api.Domain.Organization.Id" /> with the new identifier.
/// </summary>
/// <param name="name"></param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>Created organization</returns>
public Task<Organization> CreateOrganizationAsync(string name, CancellationToken cancellationToken = default)
{
Arguments.CheckNonEmptyString(name, nameof(name));
var organization = new Organization(null, name);
return CreateOrganizationAsync(organization, cancellationToken);
}
/// <summary>
/// Creates a new organization and sets <see cref="Organization.Id" /> with the new identifier.
/// </summary>
/// <param name="organization">the organization to create</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>created organization</returns>
public Task<Organization> CreateOrganizationAsync(Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(organization, nameof(organization));
var request = new PostOrganizationRequest(organization.Name, organization.Description);
return _service.PostOrgsAsync(request, cancellationToken: cancellationToken);
}
/// <summary>
/// Update an organization.
/// </summary>
/// <param name="organization">organization update to apply</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>updated organization</returns>
public Task<Organization> UpdateOrganizationAsync(Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(organization, nameof(organization));
var request = new PatchOrganizationRequest(organization.Name, organization.Description);
return _service.PatchOrgsIDAsync(organization.Id, request, cancellationToken: cancellationToken);
}
/// <summary>
/// Delete an organization.
/// </summary>
/// <param name="orgId">ID of organization to delete</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>delete has been accepted</returns>
public Task DeleteOrganizationAsync(string orgId, CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(orgId, nameof(orgId));
return _service.DeleteOrgsIDAsync(orgId, cancellationToken: cancellationToken);
}
/// <summary>
/// Delete an organization.
/// </summary>
/// <param name="organization">organization to delete</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>delete has been accepted</returns>
public Task DeleteOrganizationAsync(Organization organization, CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(organization, nameof(organization));
return DeleteOrganizationAsync(organization.Id, cancellationToken);
}
/// <summary>
/// Clone an organization.
/// </summary>
/// <param name="clonedName">name of cloned organization</param>
/// <param name="orgId">ID of organization to clone</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>cloned organization</returns>
public async Task<Organization> CloneOrganizationAsync(string clonedName, string orgId,
CancellationToken cancellationToken = default)
{
Arguments.CheckNonEmptyString(clonedName, nameof(clonedName));
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
var org = await FindOrganizationByIdAsync(orgId, cancellationToken).ConfigureAwait(false);
return await CloneOrganizationAsync(clonedName, org, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Clone an organization.
/// </summary>
/// <param name="clonedName">name of cloned organization</param>
/// <param name="organization">organization to clone</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>cloned organization</returns>
public Task<Organization> CloneOrganizationAsync(string clonedName, Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNonEmptyString(clonedName, nameof(clonedName));
Arguments.CheckNotNull(organization, nameof(organization));
var cloned = new Organization(null, clonedName);
return CreateOrganizationAsync(cloned, cancellationToken);
}
/// <summary>
/// Retrieve an organization.
/// </summary>
/// <param name="orgId">ID of organization to get</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>organization details</returns>
public Task<Organization> FindOrganizationByIdAsync(string orgId, CancellationToken cancellationToken = default)
{
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
return _service.GetOrgsIDAsync(orgId, cancellationToken: cancellationToken);
}
/// <summary>
/// List all organizations.
/// </summary>
/// <param name="limit"> (optional, default to 20)</param>
/// <param name="offset"> (optional)</param>
/// <param name="descending"> (optional, default to false)</param>
/// <param name="org">Filter organizations to a specific organization name. (optional)</param>
/// <param name="orgID">Filter organizations to a specific organization ID. (optional)</param>
/// <param name="userID">Filter organizations to a specific user ID. (optional)</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>List all organizations</returns>
public async Task<List<Organization>> FindOrganizationsAsync(int? limit = null, int? offset = null,
bool? descending = null, string org = null, string orgID = null, string userID = null,
CancellationToken cancellationToken = default)
{
var response = await _service.GetOrgsAsync(limit: limit, offset: offset, descending: descending, org: org,
orgID: orgID, userID: userID, cancellationToken: cancellationToken).ConfigureAwait(false);
return response.Orgs;
}
/// <summary>
/// List of secret keys the are stored for Organization. For example:
/// <code>
/// github_api_key,
/// some_other_key,
/// a_secret_key
/// </code>
/// </summary>
/// <param name="organization">the organization for get secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the secret keys</returns>
public Task<List<string>> GetSecretsAsync(Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(organization, nameof(organization));
return GetSecretsAsync(organization.Id, cancellationToken);
}
/// <summary>
/// List of secret keys the are stored for Organization. For example:
/// <code>
/// github_api_key,
/// some_other_key,
/// a_secret_key
/// </code>
/// </summary>
/// <param name="orgId">the organization for get secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the secret keys</returns>
public async Task<List<string>> GetSecretsAsync(string orgId, CancellationToken cancellationToken = default)
{
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
var response = await _secretsService.GetOrgsIDSecretsAsync(orgId, cancellationToken: cancellationToken)
.ConfigureAwait(false);
return response.Secrets;
}
/// <summary>
/// Patches all provided secrets and updates any previous values.
/// </summary>
/// <param name="secrets">secrets to update/add</param>
/// <param name="organization">the organization for put secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
public Task PutSecretsAsync(Dictionary<string, string> secrets, Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(secrets, nameof(secrets));
Arguments.CheckNotNull(organization, nameof(organization));
return PutSecretsAsync(secrets, organization.Id, cancellationToken);
}
/// <summary>
/// Patches all provided secrets and updates any previous values.
/// </summary>
/// <param name="secrets">secrets to update/add</param>
/// <param name="orgId">the organization for put secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
public Task PutSecretsAsync(Dictionary<string, string> secrets, string orgId,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(secrets, nameof(secrets));
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
return _secretsService.PatchOrgsIDSecretsAsync(orgId, secrets, cancellationToken: cancellationToken);
}
/// <summary>
/// Delete provided secrets.
/// </summary>
/// <param name="secrets">secrets to delete</param>
/// <param name="organization">the organization for delete secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>keys successfully patched</returns>
public Task DeleteSecretsAsync(List<string> secrets, Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(secrets, nameof(secrets));
Arguments.CheckNotNull(organization, nameof(organization));
return DeleteSecretsAsync(secrets, organization.Id, cancellationToken);
}
/// <summary>
/// Delete provided secrets.
/// </summary>
/// <param name="secrets">secrets to delete</param>
/// <param name="orgId">the organization for delete secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>keys successfully patched</returns>
public Task DeleteSecretsAsync(List<string> secrets, string orgId,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(secrets, nameof(secrets));
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
return DeleteSecretsAsync(new SecretKeys(secrets), orgId, cancellationToken);
}
/// <summary>
/// Delete provided secrets.
/// </summary>
/// <param name="secrets">secrets to delete</param>
/// <param name="orgId">the organization for delete secrets</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>keys successfully patched</returns>
public Task DeleteSecretsAsync(SecretKeys secrets, string orgId, CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(secrets, nameof(secrets));
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
return _secretsService.PostOrgsIDSecretsAsync(orgId, secrets, cancellationToken: cancellationToken);
}
/// <summary>
/// List all members of an organization.
/// </summary>
/// <param name="organization">organization of the members</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the List all members of an organization</returns>
public Task<List<ResourceMember>> GetMembersAsync(Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(organization, nameof(organization));
return GetMembersAsync(organization.Id, cancellationToken);
}
/// <summary>
/// List all members of an organization.
/// </summary>
/// <param name="orgId">ID of organization to get members</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the List all members of an organization</returns>
public async Task<List<ResourceMember>> GetMembersAsync(string orgId,
CancellationToken cancellationToken = default)
{
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
var response = await _service.GetOrgsIDMembersAsync(orgId, cancellationToken: cancellationToken)
.ConfigureAwait(false);
return response.Users;
}
/// <summary>
/// Add organization member.
/// </summary>
/// <param name="member">the member of an organization</param>
/// <param name="organization">the organization of a member</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>created mapping</returns>
public Task<ResourceMember> AddMemberAsync(User member, Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(organization, nameof(organization));
Arguments.CheckNotNull(member, nameof(member));
return AddMemberAsync(member.Id, organization.Id, cancellationToken);
}
/// <summary>
/// Add organization member.
/// </summary>
/// <param name="memberId">the ID of a member</param>
/// <param name="orgId">the ID of an organization</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>created mapping</returns>
public Task<ResourceMember> AddMemberAsync(string memberId, string orgId,
CancellationToken cancellationToken = default)
{
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
Arguments.CheckNonEmptyString(memberId, nameof(memberId));
return _service.PostOrgsIDMembersAsync(orgId, new AddResourceMemberRequestBody(memberId),
cancellationToken: cancellationToken);
}
/// <summary>
/// Removes a member from an organization.
/// </summary>
/// <param name="member">the member of an organization</param>
/// <param name="organization">the organization of a member</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
public Task DeleteMemberAsync(User member, Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(organization, nameof(organization));
Arguments.CheckNotNull(member, nameof(member));
return DeleteMemberAsync(member.Id, organization.Id, cancellationToken);
}
/// <summary>
/// Removes a member from an organization.
/// </summary>
/// <param name="memberId">the ID of a member</param>
/// <param name="orgId">the ID of an organization</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
public Task DeleteMemberAsync(string memberId, string orgId, CancellationToken cancellationToken = default)
{
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
Arguments.CheckNonEmptyString(memberId, nameof(memberId));
return _service.DeleteOrgsIDMembersIDAsync(memberId, orgId, cancellationToken: cancellationToken);
}
/// <summary>
/// List all owners of an organization.
/// </summary>
/// <param name="organization">organization of the owners</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the List all owners of an organization</returns>
public Task<List<ResourceOwner>> GetOwnersAsync(Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(organization, nameof(organization));
return GetOwnersAsync(organization.Id, cancellationToken);
}
/// <summary>
/// List all owners of an organization.
/// </summary>
/// <param name="orgId">ID of organization to get owners</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>the List all owners of an organization</returns>
public async Task<List<ResourceOwner>> GetOwnersAsync(string orgId,
CancellationToken cancellationToken = default)
{
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
var response = await _service.GetOrgsIDOwnersAsync(orgId, cancellationToken: cancellationToken)
.ConfigureAwait(false);
return response.Users;
}
/// <summary>
/// Add organization owner.
/// </summary>
/// <param name="owner">the owner of an organization</param>
/// <param name="organization">the organization of a owner</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>created mapping</returns>
public Task<ResourceOwner> AddOwnerAsync(User owner, Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(organization, nameof(organization));
Arguments.CheckNotNull(owner, nameof(owner));
return AddOwnerAsync(owner.Id, organization.Id, cancellationToken);
}
/// <summary>
/// Add organization owner.
/// </summary>
/// <param name="ownerId">the ID of a owner</param>
/// <param name="orgId">the ID of an organization</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns>created mapping</returns>
public Task<ResourceOwner> AddOwnerAsync(string ownerId, string orgId,
CancellationToken cancellationToken = default)
{
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
Arguments.CheckNonEmptyString(ownerId, nameof(ownerId));
return _service.PostOrgsIDOwnersAsync(orgId, new AddResourceMemberRequestBody(ownerId),
cancellationToken: cancellationToken);
}
/// <summary>
/// Removes a owner from an organization.
/// </summary>
/// <param name="owner">the owner of an organization</param>
/// <param name="organization">the organization of a owner</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
public Task DeleteOwnerAsync(User owner, Organization organization,
CancellationToken cancellationToken = default)
{
Arguments.CheckNotNull(organization, nameof(organization));
Arguments.CheckNotNull(owner, nameof(owner));
return DeleteOwnerAsync(owner.Id, organization.Id, cancellationToken);
}
/// <summary>
/// Removes a owner from an organization.
/// </summary>
/// <param name="ownerId">the ID of a owner</param>
/// <param name="orgId">the ID of an organization</param>
/// <param name="cancellationToken">Cancellation token</param>
/// <returns></returns>
public Task DeleteOwnerAsync(string ownerId, string orgId, CancellationToken cancellationToken = default)
{
Arguments.CheckNonEmptyString(orgId, nameof(orgId));
Arguments.CheckNonEmptyString(ownerId, nameof(ownerId));
return _service.DeleteOrgsIDOwnersIDAsync(ownerId, orgId, cancellationToken: cancellationToken);
}
}
}