-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathapp.dart
809 lines (724 loc) · 35.4 KB
/
app.dart
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
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
import 'dart:async';
import '../../protos/app/packages.dart';
import '../gen/app/v1/app.pbgrpc.dart';
import '../gen/common/v1/common.pb.dart';
import '../utils.dart';
import 'permissions.dart';
import 'package:google_protobuf/google/protobuf/struct.pb.dart';
typedef RobotPartLogPage = GetRobotPartLogsResponse;
/// gRPC client for connecting to Viam's App Service
///
/// All calls must be authenticated.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
class AppClient {
final AppServiceClient _client;
AppClient(this._client);
/// Get the id of the user with the email provided
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<String> getUserIdByEmail(String email) async {
final request = GetUserIDByEmailRequest()..email = email;
final GetUserIDByEmailResponse response = await _client.getUserIDByEmail(request);
return response.userId;
}
/// Create a new [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/). Future<Organization> createOrganization(String name) async {
Future<Organization> createOrganization(String name) async {
final request = CreateOrganizationRequest()..name = name;
final CreateOrganizationResponse response = await _client.createOrganization(request);
return response.organization;
}
/// List all the [Organization] the currently authenticated user has access to
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<Organization>> listOrganizations() async {
final listOrganizationsRequest = ListOrganizationsRequest();
final ListOrganizationsResponse response = await _client.listOrganizations(listOrganizationsRequest);
return response.organizations;
}
/// Get all [OrganizationIdentity]s that have access to a [Location].
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<OrganizationIdentity>> getOrganizationsWithAccessToLocation(String locationId) async {
final request = GetOrganizationsWithAccessToLocationRequest()..locationId = locationId;
final GetOrganizationsWithAccessToLocationResponse response = await _client.getOrganizationsWithAccessToLocation(request);
return response.organizationIdentities;
}
/// List the [Organization]s a user belongs to
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<OrgDetails>> listOrganizationsByUser(String userId) async {
final request = ListOrganizationsByUserRequest()..userId = userId;
final ListOrganizationsByUserResponse response = await _client.listOrganizationsByUser(request);
return response.orgs;
}
/// Get a specific [Organization] by ID
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<Organization> getOrganization(String organizationId) async {
final getOrganizationRequest = GetOrganizationRequest()..organizationId = organizationId;
final GetOrganizationResponse response = await _client.getOrganization(getOrganizationRequest);
return response.organization;
}
/// Checks for namespace availablity throughout all [Organization]s.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<bool> getOrganizationNamespaceAvailability(String publicNamespace) async {
final request = GetOrganizationNamespaceAvailabilityRequest()..publicNamespace = publicNamespace;
final GetOrganizationNamespaceAvailabilityResponse response = await _client.getOrganizationNamespaceAvailability(request);
return response.available;
}
/// Update an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<Organization> updateOrganization(String organizationId,
{String? name, String? publicNamespace, String? region, String? cid}) async {
final request = UpdateOrganizationRequest()..organizationId = organizationId;
if (name != null) request.name = name;
if (publicNamespace != null) request.publicNamespace = publicNamespace;
if (region != null) request.region = region;
if (cid != null) request.cid = cid;
final UpdateOrganizationResponse response = await _client.updateOrganization(request);
return response.organization;
}
/// Delete an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> deleteOrganization(String organizationId) async {
final request = DeleteOrganizationRequest()..organizationId = organizationId;
await _client.deleteOrganization(request);
}
/// List the members and pending invites for an [Organization].
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<ListOrganizationMembersResponse> listOrganizationMembers(String organizationId) async {
final request = ListOrganizationMembersRequest()..organizationId = organizationId;
final ListOrganizationMembersResponse response = await _client.listOrganizationMembers(request);
return response;
}
/// Send an invitation to to join an [Organization] to the specified email. Grant the level of permission defined in the [ViamAuthorization] object attached.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<OrganizationInvite> createOrganizationInvite(String organizationId, String email, List<ViamAuthorization> authorizations,
{bool sendEmailInvite = true}) async {
final List<Authorization> protoAuthorizations = [];
for (final authorization in authorizations) {
protoAuthorizations.add(authorization.toProto);
}
final request = CreateOrganizationInviteRequest(authorizations: protoAuthorizations)
..organizationId = organizationId
..email = email
..sendEmailInvite = sendEmailInvite;
final CreateOrganizationInviteResponse response = await _client.createOrganizationInvite(request);
return response.invite;
}
/// Update the [ViamAuthorization]s attached to an [Organization] invite
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<OrganizationInvite> updateOrganizationInviteAuthorizations(
String organizationId, String email, List<ViamAuthorization> addAuthorizations, List<ViamAuthorization> removeAuthorizations) async {
final List<Authorization> protoAddAuthorizations = [];
for (final authorization in addAuthorizations) {
protoAddAuthorizations.add(authorization.toProto);
}
final List<Authorization> protoRemoveAuthorizations = [];
for (final authorization in removeAuthorizations) {
protoRemoveAuthorizations.add(authorization.toProto);
}
final request = UpdateOrganizationInviteAuthorizationsRequest(
addAuthorizations: protoAddAuthorizations, removeAuthorizations: protoRemoveAuthorizations)
..organizationId = organizationId
..email = email;
final UpdateOrganizationInviteAuthorizationsResponse response = await _client.updateOrganizationInviteAuthorizations(request);
return response.invite;
}
/// Delete a member from an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> deleteOrganizationMember(String organizationId, String userId) async {
final request = DeleteOrganizationMemberRequest()
..organizationId = organizationId
..userId = userId;
await _client.deleteOrganizationMember(request);
}
/// Delete an invite to an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> deleteOrganizationInvite(String organizationId, String email) async {
final request = DeleteOrganizationInviteRequest()
..organizationId = organizationId
..email = email;
await _client.deleteOrganizationInvite(request);
}
/// Resend an invite to an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<OrganizationInvite> resendOrganizationInvite(String organizationId, String email) async {
final request = ResendOrganizationInviteRequest()
..organizationId = organizationId
..email = email;
final ResendOrganizationInviteResponse response = await _client.resendOrganizationInvite(request);
return response.invite;
}
/// Create a [Location]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<Location> createLocation(String organizationId, String name, {String? parentLocationId}) async {
final request = CreateLocationRequest()
..organizationId = organizationId
..name = name
..parentLocationId = parentLocationId ?? '';
final CreateLocationResponse response = await _client.createLocation(request);
return response.location;
}
/// Get a specific [Location] by ID
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<Location> getLocation(String locationId) async {
final getLocationRequest = GetLocationRequest()..locationId = locationId;
final GetLocationResponse response = await _client.getLocation(getLocationRequest);
return response.location;
}
/// Update a [Location]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<Location> updateLocation(String locationId, {String? name, String? parentLocationId, String? region}) async {
final request = UpdateLocationRequest()..locationId = locationId;
if (name != null) request.name = name;
if (parentLocationId != null) request.parentLocationId = parentLocationId;
if (region != null) request.region = region;
final UpdateLocationResponse response = await _client.updateLocation(request);
return response.location;
}
/// Delete a [Location]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> deleteLocation(String locationId) async {
final request = DeleteLocationRequest()..locationId = locationId;
await _client.deleteLocation(request);
}
/// List the [Location]s of a specific [Organization] that the currently authenticated user has access to
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<Location>> listLocations(String organizationId) async {
final listLocationsRequest = ListLocationsRequest()..organizationId = organizationId;
final ListLocationsResponse response = await _client.listLocations(listLocationsRequest);
return response.locations;
}
/// Share a [Location] with an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> shareLocation(String locationId, String organizationId) async {
final request = ShareLocationRequest()
..locationId = locationId
..organizationId = organizationId;
await _client.shareLocation(request);
}
/// Stop sharing a [Location] with an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> unshareLocation(String locationId, String organizationId) async {
final request = UnshareLocationRequest()
..locationId = locationId
..organizationId = organizationId;
await _client.unshareLocation(request);
}
/// Get a [LocationAuth] with a [Location]'s authorization secrets
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<LocationAuth> locationAuth(String locationId) async {
final request = LocationAuthRequest()..locationId = locationId;
final LocationAuthResponse response = await _client.locationAuth(request);
return response.auth;
}
/// Create a new generated [LocationAuth] in the [Location].
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<LocationAuth> createLocationSecret(String locationId) async {
final request = CreateLocationSecretRequest()..locationId = locationId;
final CreateLocationSecretResponse response = await _client.createLocationSecret(request);
return response.auth;
}
/// Delete a Secret from the [Location].
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> deleteLocationSecret(String locationId, String secretId) async {
final request = DeleteLocationSecretRequest()
..locationId = locationId
..secretId = secretId;
await _client.deleteLocationSecret(request);
}
/// Get a specific [Robot] by ID
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<Robot> getRobot(String robotId) async {
final getRobotRequest = GetRobotRequest()..id = robotId;
final GetRobotResponse response = await _client.getRobot(getRobotRequest);
return response.robot;
}
/// Get [RoverRentalRobot]s in an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<RoverRentalRobot>> getRoverRentalRobots(String orgId) async {
final request = GetRoverRentalRobotsRequest()..orgId = orgId;
final GetRoverRentalRobotsResponse response = await _client.getRoverRentalRobots(request);
return response.robots;
}
/// List the [RobotPart] of a specific [Robot] that the currently authenticated user has access to
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<RobotPart>> listRobotParts(String robotId) async {
final getRobotPartsRequest = GetRobotPartsRequest()..robotId = robotId;
final response = await _client.getRobotParts(getRobotPartsRequest);
return response.parts;
}
/// Get a specific [RobotPart] by ID
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<RobotPart> getRobotPart(String partId) async {
final getRobotPartRequest = GetRobotPartRequest()..id = partId;
final response = await _client.getRobotPart(getRobotPartRequest);
return response.part;
}
/// Get a page of [LogEntry] for a specific [RobotPart]. Logs are sorted by descending time (newest first)
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<RobotPartLogPage> getLogs(String partId, {String? filter, String? pageToken}) async {
final request = GetRobotPartLogsRequest()
..id = partId
..filter = filter ?? '';
if (pageToken != null) request.pageToken = pageToken;
return await _client.getRobotPartLogs(request);
}
/// Get a stream of [LogEntry] for a specific [RobotPart]. Logs are sorted by descending time (newest first)
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Stream<List<LogEntry>> tailLogs(String partId, {bool errorsOnly = false, String? filter}) {
final request = TailRobotPartLogsRequest()
..id = partId
..errorsOnly = errorsOnly
..filter = filter ?? '';
final response = _client.tailRobotPartLogs(request);
final stream = response.map((event) => event.logs);
return stream.asBroadcastStream(onCancel: (_) => response.cancel());
}
/// Get a specific [RobotPart] history by ID
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<RobotPartHistoryEntry>> getRobotPartHistory(String id) async {
final request = GetRobotPartHistoryRequest()..id = id;
final GetRobotPartHistoryResponse response = await _client.getRobotPartHistory(request);
return response.history;
}
/// Update a specific [RobotPart] by ID
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<RobotPart> updateRobotPart(String partId, String name, Map<String, dynamic> robotConfig) async {
final updateRobotPartRequest = UpdateRobotPartRequest()
..id = partId
..name = name
..robotConfig = robotConfig.toStruct();
final response = await _client.updateRobotPart(updateRobotPartRequest);
return response.part;
}
/// Create a new [RobotPart]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<String> newRobotPart(String robotId, String partName) async {
final request = NewRobotPartRequest()
..robotId = robotId
..partName = partName;
final NewRobotPartResponse response = await _client.newRobotPart(request);
return response.partId;
}
/// Delete a [RobotPart]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> deleteRobotPart(String partId) async {
final request = DeleteRobotPartRequest()..partId = partId;
await _client.deleteRobotPart(request);
}
/// Gets the [APIKey]'s for a [Robot]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<APIKeyWithAuthorizations>> getRobotApiKeys(String robotId) async {
final request = GetRobotAPIKeysRequest()..robotId = robotId;
final GetRobotAPIKeysResponse response = await _client.getRobotAPIKeys(request);
return response.apiKeys;
}
/// Marks the given [RobotPart] as the main part, and all the others as not
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> markPartAsMain(String partId) async {
final request = MarkPartAsMainRequest()..partId = partId;
await _client.markPartAsMain(request);
}
/// Marks [RobotPart] for restart. Once the [RobotPart] checks-in with the app the flag is reset on the [RobotPart]. Calling this multiple times before a [RobotPart] checks-in has no affect.
/// Note: This API may be removed in the near future.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> markPartForRestart(String partId) async {
final request = MarkPartForRestartRequest()..partId = partId;
await _client.markPartForRestart(request);
}
/// Create a new generated Secret in the [RobotPart]. Succeeds if there are no more than 2 active secrets after creation.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<RobotPart> createRobotPartSecret(String partId) async {
final request = CreateRobotPartSecretRequest()..partId = partId;
final CreateRobotPartSecretResponse response = await _client.createRobotPartSecret(request);
return response.part;
}
/// Delete a Secret from the [RobotPart].
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> deleteRobotPartSecret(String partId, String secretId) async {
final request = DeleteRobotPartSecretRequest()
..partId = partId
..secretId = secretId;
await _client.deleteRobotPartSecret(request);
}
/// List the [Robot] of a specific [Location] that the currently authenticated user has access to
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<Robot>> listRobots(String locationId) async {
final listRobotsRequest = ListRobotsRequest()..locationId = locationId;
final ListRobotsResponse response = await _client.listRobots(listRobotsRequest);
return response.robots;
}
/// Create a new smart machine with the included [name] in the passed in [locationId]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<String> newMachine(String name, String locationId) async {
final request = NewRobotRequest()
..name = name
..location = locationId;
final response = await _client.newRobot(request);
return response.id;
}
/// Update a [Robot]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<Robot> updateRobot(String id, String name, String location) async {
final request = UpdateRobotRequest()
..id = id
..name = name
..location = location;
final UpdateRobotResponse response = await _client.updateRobot(request);
return response.robot;
}
/// Delete a [Robot]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> deleteRobot(String id) async {
final request = DeleteRobotRequest()..id = id;
await _client.deleteRobot(request);
}
/// Get a list of [Fragment]s in an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<Fragment>> listFragments(String organizationId, bool showPublic, {List<FragmentVisibility>? fragmentVisibility}) async {
final request = ListFragmentsRequest()
..organizationId = organizationId
..showPublic = showPublic
..fragmentVisibility.addAll(fragmentVisibility ?? []);
final ListFragmentsResponse response = await _client.listFragments(request);
return response.fragments;
}
/// Get a specific [Fragment] by ID.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<Fragment> getFragment(String id) async {
final request = GetFragmentRequest()..id = id;
final response = await _client.getFragment(request);
return response.fragment;
}
/// Create a [Fragment]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<Fragment> createFragment(String name, Map<String, dynamic> config, String organizationId) async {
final request = CreateFragmentRequest()
..name = name
..config = config.toStruct()
..organizationId = organizationId;
final CreateFragmentResponse response = await _client.createFragment(request);
return response.fragment;
}
/// Update a [Fragment]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<Fragment> updateFragment(String id, String name, Map<String, dynamic> config,
{bool? public, FragmentVisibility? visibility}) async {
final request = UpdateFragmentRequest()
..id = id
..name = name
..config = config.toStruct();
if (public != null) request.public = public;
if (visibility != null) request.visibility = visibility;
final UpdateFragmentResponse response = await _client.updateFragment(request);
return response.fragment;
}
/// Delete a [Fragment]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> deleteFragment(String id) async {
final request = DeleteFragmentRequest()..id = id;
await _client.deleteFragment(request);
}
/// Creates an [Authorization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> addRole(ViamAuthorization authorization) async {
final request = AddRoleRequest()..authorization = authorization.toProto;
await _client.addRole(request);
}
/// Deletes an [Authorization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> removeRole(ViamAuthorization authorization) async {
final request = RemoveRoleRequest()..authorization = authorization.toProto;
await _client.removeRole(request);
}
/// Changes an [Authorization] to a new [Authorization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> changeRole(ViamAuthorization oldAuthorization, ViamAuthorization newAuthorization) async {
final request = ChangeRoleRequest()
..oldAuthorization = oldAuthorization.toProto
..newAuthorization = newAuthorization.toProto;
await _client.changeRole(request);
}
/// List the [Authorization]s available for the currently authenticated user
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<Authorization>> listAuthorizations(String organizationId, {List<String> resourceIds = const []}) async {
final request = ListAuthorizationsRequest()
..organizationId = organizationId
..resourceIds.addAll(resourceIds);
final response = await _client.listAuthorizations(request);
return response.authorizations;
}
/// Validates a [Permission] for the current user
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<Permission>> checkPermissions(ResourceType resourceType, String resourceId, List<Permission> permissions) async {
final request = CheckPermissionsRequest()
..permissions.add((AuthorizedPermissions()
..resourceType = resourceType.name
..resourceId = resourceId
..permissions.addAll(permissions.map((e) => e.value))));
final response = await _client.checkPermissions(request);
if (response.authorizedPermissions.isEmpty) return [];
return response.authorizedPermissions.first.permissions
.map((e) => Permission.values.firstWhere((element) => element.value == e))
.toList();
}
/// Get a [RegistryItem] by ID
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<RegistryItem> getRegistryItem(String itemId) async {
final request = GetRegistryItemRequest()..itemId = itemId;
final GetRegistryItemResponse response = await _client.getRegistryItem(request);
return response.item;
}
/// Create a [RegistryItem] in an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> createRegistryItem(String organizationId, String name, PackageType type) async {
final request = CreateRegistryItemRequest()
..organizationId = organizationId
..name = name
..type = type;
await _client.createRegistryItem(request);
}
/// Update a [Registry Item]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> updateRegistryItem(String itemId, PackageType type, String description, Visibility visibility) async {
final request = UpdateRegistryItemRequest()
..itemId = itemId
..type = type
..description = description
..visibility = visibility;
await _client.updateRegistryItem(request);
}
/// List [RegistryItem]s in an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<RegistryItem>> listRegistryItems(
List<PackageType> types, List<Visibility> visibilities, List<String> platforms, List<RegistryItemStatus> statuses,
{String? organizationId, String? searchTerm, String? pageToken}) async {
final request = ListRegistryItemsRequest(types: types, visibilities: visibilities, platforms: platforms, statuses: statuses)
..organizationId = organizationId ?? ''
..searchTerm = searchTerm ?? ''
..pageToken = pageToken ?? '';
final ListRegistryItemsResponse response = await _client.listRegistryItems(request);
return response.items;
}
/// Delete a [RegistryItem]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> deleteRegistryItem(String itemId) async {
final request = DeleteRegistryItemRequest()..itemId = itemId;
await _client.deleteRegistryItem(request);
}
/// Create a [Module]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<CreateModuleResponse> createModule(String organizationId, String name) async {
final request = CreateModuleRequest()
..organizationId = organizationId
..name = name;
return await _client.createModule(request);
}
/// Update a [Module]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<String> updateModule(
String moduleId, Visibility visibility, String url, String description, List<Model> models, String entrypoint) async {
final request = UpdateModuleRequest(models: models)
..moduleId = moduleId
..visibility = visibility
..url = url
..description = description
..entrypoint = entrypoint;
final UpdateModuleResponse response = await _client.updateModule(request);
return response.url;
}
/// Upload a [Module] file
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<String> uploadModuleFile(ModuleFileInfo moduleFileInfo, List<int> file) async {
final request = UploadModuleFileRequest()
..moduleFileInfo = moduleFileInfo
..file = file;
final response = await _client.uploadModuleFile(Stream.value(request));
return response.url;
}
/// Get a [Module] by ID
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<Module> getModule(String moduleId) async {
final request = GetModuleRequest()..moduleId = moduleId;
final GetModuleResponse response = await _client.getModule(request);
return response.module;
}
/// List all the [Module]s. Return private modules for an [Organization] if its ID is provided.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<Module>> listModules(String? organizationId) async {
final request = ListModulesRequest()..organizationId = organizationId ?? '';
final ListModulesResponse response = await _client.listModules(request);
return response.modules;
}
/// Create an [APIKey]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<CreateKeyResponse> createKey(List<ViamAuthorization> authorizations, String name) async {
final List<Authorization> protoAuthorizations = [];
for (final authorization in authorizations) {
protoAuthorizations.add(authorization.toProto);
}
final request = CreateKeyRequest(authorizations: protoAuthorizations)..name = name;
return await _client.createKey(request);
}
/// Delete an [APIKey]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<void> deleteKey(String id) async {
final request = DeleteKeyRequest()..id = id;
await _client.deleteKey(request);
}
/// List the [APIKeyWithAuthorizations]s in an [Organization]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<List<APIKeyWithAuthorizations>> listKeys(String orgId) async {
final request = ListKeysRequest()..orgId = orgId;
final ListKeysResponse response = await _client.listKeys(request);
return response.apiKeys;
}
/// Rotate an [APIKey]
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<RotateKeyResponse> rotateKey(String id) async {
final request = RotateKeyRequest()..id = id;
return await _client.rotateKey(request);
}
/// Create an [APIKey] with existing authorizations
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<CreateKeyFromExistingKeyAuthorizationsResponse> createKeyFromExistingKeyAuthorizations(String id) async {
final request = CreateKeyFromExistingKeyAuthorizationsRequest()..id = id;
return await _client.createKeyFromExistingKeyAuthorizations(request);
}
/// Retrieves user-defined [Metadata] for an organization.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<GetOrganizationMetadataResponse> getOrganizationMetadata(String id) async {
final request = GetOrganizationMetadataRequest()..organizationId = id;
return await _client.getOrganizationMetadata(request);
}
/// Updates user-defined [Metadata] for an organization.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<UpdateOrganizationMetadataResponse> updateOrganizationMetadata(
String id, Map<String, dynamic> data) async {
final request = UpdateOrganizationMetadataRequest()
..organizationId = id
..data = Struct()..fields.addAll(data.map((key, value) => MapEntry(key, Value()..stringValue = value.toString())));
return await _client.updateOrganizationMetadata(request);
}
/// Retrieves user-defined [Metadata] for a location.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<GetLocationMetadataResponse> getLocationMetadata(String id) async {
final request = GetLocationMetadataRequest()..locationId = id;
return await _client.getLocationMetadata(request);
}
/// Updates user-defined [Metadata] for a location.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<UpdateLocationMetadataResponse> updateLocationMetadata(
String id, Map<String, dynamic> data) async {
final request = UpdateLocationMetadataRequest()
..locationId = id
..data = Struct()..fields.addAll(data.map((key, value) => MapEntry(key, Value()..stringValue = value.toString())));
return await _client.updateLocationMetadata(request);
}
/// Retrieves user-defined [Metadata] for a machine.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<GetRobotMetadataResponse> getMachineMetadata(String id) async {
final request = GetRobotMetadataRequest()..id = id;
return await _client.getRobotMetadata(request);
}
/// Updates user-defined [Metadata] for a machine.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<UpdateRobotMetadataResponse> updateMachineMetadata(
String id, Map<String, dynamic> data) async {
final request = UpdateRobotMetadataRequest()
..id = id
..data = Struct()..fields.addAll(data.map((key, value) => MapEntry(key, Value()..stringValue = value.toString())));
return await _client.updateRobotMetadata(request);
}
/// Retrieves user-defined [Metadata] for a machine part.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<GetRobotPartMetadataResponse> getMachinePartMetadata(String id) async {
final request = GetRobotPartMetadataRequest()..id = id;
return await _client.getRobotPartMetadata(request);
}
/// Updates user-defined [Metadata] for a machine part.
///
/// For more information, see [Fleet Management API](https://docs.viam.com/appendix/apis/fleet/).
Future<UpdateRobotPartMetadataResponse> updateMachinePartMetadata(
String id, Map<String, dynamic> data) async {
final request = UpdateRobotPartMetadataRequest()
..id = id
..data = Struct()..fields.addAll(data.map((key, value) => MapEntry(key, Value()..stringValue = value.toString())));
return await _client.updateRobotPartMetadata(request);
}
}