-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAbstractProvider.js
1070 lines (972 loc) · 26.4 KB
/
AbstractProvider.js
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
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* eslint-disable no-unused-vars */
export class AbstractProvider {
/**
* Create a provider instance.
* @param {string} name - The provider name.
*/
constructor (name = 'Unknown') {
this.name = name
if (this.constructor !== AbstractProvider) {
// check that the provider class has required methods
const requiredMethods = [
'authenticate',
'setAuthentication',
'getAllRoles',
'getRoles',
'getUserId',
'openEventsListener',
'closeEventsListener',
]
const missingMethods = requiredMethods.filter((methodName) => typeof this[methodName] !== 'function')
if (missingMethods.length > 0) {
console.error(`Provider ${name} does not implement all mandatory methods: ${missingMethods.join(', ')}`)
}
}
}
#getErrorMessage (methodName) {
return `Provider ${this.name} does not implement ${methodName ? methodName : 'requested'} method`
}
// Required methods
/**
* Perform user provider server-side authentification.
* @async
* @param {string} username
* @param {string} password
* @throws {Error}
* @return {Promise<Object>} Authentication obtained from provider server (token, key, ...)
*/
async authenticate (username, password) {
throw new Error (this.#getErrorMessage('authenticate'))
}
/**
* Check and initialize provider instance authentication from credentials obtained (may perform an authentication refresh).
* @async
* @param {string} authentication - Authentication obtained from provider server (token, key, ...)
* @throws {Error}
* @return {Promise<Object>} Authentication validated
*/
async setAuthentication (authentication) {
throw new Error (this.#getErrorMessage('setAuthentication'))
}
/**
* Ask provider backend to remove current authentication.
* @async
* @throws {Error}
* @return {Promise<Object>} Result
*/
async logout () {
throw new Error (this.#getErrorMessage('logout'))
}
/**
* Return all existing roles.
* @return {string[]} Existing roles
*/
getAllRoles () {
throw new Error (this.#getErrorMessage('getAllRoles'))
}
/**
* Return all user roles.
* @param {string} authentication - Authentication obtained from provider server (token, key, ...)
* @return {string[]} User roles
*/
getRoles (authentication) {
throw new Error (this.#getErrorMessage('getRoles'))
}
/**
* Return user identifier.
* @param {string} authentication - Authentication obtained from provider server (token, key, ...)
* @return {string} User identifier
*/
getUserId (authentication) {
throw new Error (this.#getErrorMessage('getUserId'))
}
/**
* Start events subscription throught provider backend (websocket, polling, ...).
* Optionally, a refresh of all data may be performed to ensure synchronization according to `forceRefresh`.
*
* Receiving an event will invoke related dataStore actions to persist data.
*
* When subscription status changes, `appStore.setEventsListenerStatus` is invoked.
* When subscription uses polling, `appStore.setEventsListenerIsPolling` is invoked.
* If there is a transition state, `appStore.setEventsListenerOpeningStatus` is invoked.
* @param {boolean} resetCounter - Set `true` to reset the retry counter (open a new connection after user click)
* @param {boolean} forceRefresh - Set `true` to perform a data refresh before open listener
*/
openEventsListener (resetCounter, forceRefresh = false) {
throw new Error (this.#getErrorMessage('openEventsListener'))
}
/**
* Close events subscription.
*/
closeEventsListener () {
throw new Error (this.#getErrorMessage('closeEventsListener'))
}
/**
* Request all rooms.
* @async
* @param {boolean} isIncludingEquipments - Set `true` to request room equipments
* @param {boolean} isIncludingSummary - Set `true` to request room summary
* @return {Promise<Object[]>} Rooms
*/
async getRooms (isIncludingEquipments, isIncludingSummary) {
throw new Error (this.#getErrorMessage('getRooms'))
}
/**
* Request a room by its `id`.
* @async
* @param {string} roomId
* @param {boolean} isIncludingSummaryStates - Set `true` to request room summary
* @throws {Error}
* @return {Promise<Object>} Room
*/
async getRoom (roomId, isIncludingSummaryStates) {
throw new Error (this.#getErrorMessage('getRoom'))
}
/**
* Create a new room.
* @async
* @param {Object} room
* @throws {Error}
* @return {Promise<Object>} The created room
*/
async createRoom (room) {
throw new Error (this.#getErrorMessage('createRoom'))
}
/**
* Update a room.
* @async
* @param {Object} room
* @throws {Error}
* @return {Promise<Object>} The updated room
*/
async updateRoom (room) {
throw new Error (this.#getErrorMessage('updateRoom'))
}
/**
* Delete a room by its `id`.
* @async
* @param {string} roomId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteRoom (roomId) {
throw new Error (this.#getErrorMessage('deleteRoom'))
}
/**
* Request global summary.
* @async
* @throws {Error}
* @return {Promise<Object>} Global summary
*/
async getSummary () {
throw new Error (this.#getErrorMessage('getSummary'))
}
/**
* Request a specific room summary by its `roomId` and `key`.
* @async
* @param {string} roomId
* @param {string} key
* @throws {Error}
* @return {Promise<string|number>} Summary value
*/
async getRoomSummary (roomId, key) {
throw new Error (this.#getErrorMessage('getRoomSummary'))
}
/**
* Request all equipments.
* @async
* @param {boolean} isIncludingActions - Set `true` to request equipment actions
* @param {boolean} isIncludingStates - Set `true` to request equipment states
* @throws {Error}
* @return {Promise<Object[]>} Equipments
*/
async getEquipments (isIncludingActions, isIncludingStates) {
throw new Error (this.#getErrorMessage('getEquipments'))
}
/**
* Request an equipment by its `id`.
* @async
* @param {string} equipmentId
* @throws {Error}
* @return {Promise<Object>} Equipment
*/
async getEquipment (equipmentId) {
throw new Error (this.#getErrorMessage('getEquipment'))
}
/**
* Create a new equipment.
* @async
* @param {Object} equipment
* @throws {Error}
* @return {Promise<Object>} The created equipment
*/
async createEquipment (equipment) {
throw new Error (this.#getErrorMessage('createEquipment'))
}
/**
* Update an equipment.
* @async
* @param {Object} equipment
* @throws {Error}
* @return {Promise<Object>} The updated room
*/
async updateEquipment (equipment) {
throw new Error (this.#getErrorMessage('updateEquipment'))
}
/**
* Delete an equipment by its `id`.
* @async
* @param {string} equipmentId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteEquipment (equipmentId) {
throw new Error (this.#getErrorMessage('deleteEquipment'))
}
/**
* Request all states.
* @async
* @throws {Error}
* @return {Promise<Object[]>} States
*/
async getStates (isIncludingActions, isIncludingStates) {
throw new Error (this.#getErrorMessage('getStates'))
}
/**
* Request a state by its `id`.
* @async
* @param {string} stateId
* @throws {Error}
* @return {Promise<Object>} State
*/
async getState (stateId) {
throw new Error (this.#getErrorMessage('getState'))
}
/**
* Create a new state.
* @async
* @param {Object} state
* @throws {Error}
* @return {Promise<Object>} The created state
*/
async createState (state) {
throw new Error (this.#getErrorMessage('createState'))
}
/**
* Update a state.
* @async
* @param {Object} state
* @throws {Error}
* @return {Promise<Object>} The updated state
*/
async updateState (state) {
throw new Error (this.#getErrorMessage('updateState'))
}
/**
* Delete a state by its `id`.
* @async
* @param {string} stateId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteState (stateId) {
throw new Error (this.#getErrorMessage('deleteState'))
}
/**
* Request all actions.
* @async
* @throws {Error}
* @return {Promise<Object[]>} Actions
*/
async getActions () {
throw new Error (this.#getErrorMessage('getActions'))
}
/**
* Request an action by its `id`.
* @async
* @param {string} actionId
* @throws {Error}
* @return {Promise<Object>} Action
*/
async getAction (actionId) {
throw new Error (this.#getErrorMessage('getAction'))
}
/**
* Create a new action.
* @async
* @param {Object} action
* @throws {Error}
* @return {Promise<Object>} The created action
*/
async createAction (action) {
throw new Error (this.#getErrorMessage('createAction'))
}
/**
* Update an action.
* @async
* @param {Object} action
* @throws {Error}
* @return {Promise<Object>} The updated action
*/
async updateAction (action) {
throw new Error (this.#getErrorMessage('updateAction'))
}
/**
* Delete an action by its `id`.
* @async
* @param {string} actionId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteAction (actionId) {
throw new Error (this.#getErrorMessage('deleteAction'))
}
/**
* Request all users.
* @async
* @throws {Error}
* @return {Promise<Object[]>} Users
*/
async getUsers () {
throw new Error (this.#getErrorMessage('getUsers'))
}
/**
* Request an user by its `id`.
* @async
* @param {string} userId
* @throws {Error}
* @return {Promise<Object>} User
*/
async getUser (userId) {
throw new Error (this.#getErrorMessage('getUser'))
}
/**
* Create a new user.
* @async
* @param {Object} user
* @throws {Error}
* @return {Promise<Object>} The created user
*/
async createUser (user) {
throw new Error (this.#getErrorMessage('createUser'))
}
/**
* Update an user.
* @async
* @param {Object} user
* @throws {Error}
* @return {Promise<Object>} The updated user
*/
async updateUser (user) {
throw new Error (this.#getErrorMessage('updateUser'))
}
/**
* Update an user avatar.
* @async
* @param {string} userId
* @param {File} file
* @throws {Error}
* @return {Promise<Object>} Result
*/
async uploadUserAvatar (userId, file) {
throw new Error (this.#getErrorMessage('uploadUserAvatar'))
}
/**
* Delete an user by its `id`.
* @async
* @param {string} userId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteUser (userId) {
throw new Error (this.#getErrorMessage('deleteUser'))
}
/**
* Get user tokens.
* @async
* @param {string} userId
* @throws {Error}
* @return {Promise<Object>} User tokens
*/
async getUserTokens (userId) {
throw new Error (this.#getErrorMessage('getUserTokens'))
}
/**
* Delete an user token by its `id`.
* @async
* @param {string} userId
* @param {string} tokenId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteUserToken (userId, tokenId) {
throw new Error (this.#getErrorMessage('deleteUserToken'))
}
/**
* Request a new user token.
* @async
* @param {string} userId
* @throws {Error}
* @return {Promise<Object>} User token
*/
async requestUserRefreshToken (userId) {
throw new Error (this.#getErrorMessage('requestUserRefreshToken'))
}
/**
* Get current user profile.
* @async
* @throws {Error}
* @return {Promise<Object>} Current user profile
*/
async getMyProfile () {
throw new Error (this.#getErrorMessage('getMyProfile'))
}
/**
* Update current user profile without password.
* @async
* @param {Object} user
* @throws {Error}
* @return {Promise<Object>} Result
*/
async updateMyProfile (user) {
throw new Error (this.#getErrorMessage('updateMyProfile'))
}
/**
* Update current user password.
* @async
* @param {string} password
* @throws {Error}
* @return {Promise<Object>} Result
*/
async updateMyPassword (user) {
throw new Error (this.#getErrorMessage('updateMyPassword'))
}
/**
* Get current user tokens.
* @async
* @throws {Error}
* @return {Promise<Object>} Result
*/
async getMyTokens () {
throw new Error (this.#getErrorMessage('getMyTokens'))
}
/**
* Delete a token by its `id` for current user.
* @async
* @param {string} tokenId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteMyToken (tokenId) {
throw new Error (this.#getErrorMessage('deleteMyToken'))
}
/**
* Update an avatar for current user.
* @async
* @param {File} file
* @throws {Error}
* @return {Promise<Object>} Result
*/
async uploadMyAvatar (file) {
throw new Error (this.#getErrorMessage('uploadMyAvatar'))
}
/**
* Get provider specific browser list (if provider has a mobile application with custom User-Agent, which should include the provider name for displaying valid icon).
* @return {Object[]} Browsers list
*/
async getBrowsersList () {
console.warn(this.#getErrorMessage('getBrowsersList'))
return []
}
/**
* Execute an action by its `id` with provided parameters
* @async
* @param {string} actionId
* @param {Object} params
* @throws {Error}
* @return {Promise<Object>} Action result
*/
async executeAction (actionId, params = {}) {
throw new Error (this.#getErrorMessage('executeAction'))
}
/**
* Request all scenarios.
* @async
* @throws {Error}
* @return {Promise<Object[]>} Scenarios
*/
async getScenarios () {
throw new Error (this.#getErrorMessage('getScenarios'))
}
/**
* Change scenario status.
* @async
* @param {string} scenarioId
* @param {string} status Should be in [run, stop, enable, disable].
* @throws {Error}
* @return {Promise<Object>} Result
*/
async changeScenarioState (scenarioId, status) {
throw new Error (this.#getErrorMessage('changeScenarioState'))
}
/**
* Request a scenario by its `id`.
* @async
* @param {string} scenarioId
* @throws {Error}
* @return {Promise<Object>} Scenario
*/
async getScenario (scenarioId) {
throw new Error (this.#getErrorMessage('getScenario'))
}
/**
* Create a new scenario.
* @async
* @param {Object} scenario
* @throws {Error}
* @return {Promise<Object>} The created scenario
*/
async createScenario (scenario) {
throw new Error (this.#getErrorMessage('createScenario'))
}
/**
* Update a scenario.
* @async
* @param {Object} scenario
* @throws {Error}
* @return {Promise<Object>} The updated scenario
*/
async updateScenario (scenario) {
throw new Error (this.#getErrorMessage('updateScenario'))
}
/**
* Delete a scenario by its `id`.
* @async
* @param {string} scenarioId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteScenario (scenarioId) {
throw new Error (this.#getErrorMessage('deleteScenario'))
}
/**
* Request all intents.
* @async
* @throws {Error}
* @return {Promise<Object[]>} Intents
*/
async getIntents () {
throw new Error (this.#getErrorMessage('getIntents'))
}
/**
* Request an intent by its `id`.
* @async
* @param {string} intentId
* @throws {Error}
* @return {Promise<Object>} Intent
*/
async getIntent (intentId) {
throw new Error (this.#getErrorMessage('getIntent'))
}
/**
* Create a new intent.
* @async
* @param {Object} intent
* @throws {Error}
* @return {Promise<Object>} The created intent
*/
async createIntent (intent) {
throw new Error (this.#getErrorMessage('createIntent'))
}
/**
* Update an intent.
* @async
* @param {Object} intent
* @throws {Error}
* @return {Promise<Object>} The updated intent
*/
async updateIntent (intent) {
throw new Error (this.#getErrorMessage('updateIntent'))
}
/**
* Delete an intent by its `id`.
* @async
* @param {string} intentId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteIntent (intentId) {
throw new Error (this.#getErrorMessage('deleteIntent'))
}
/**
* Request possible actions for an intention (used in options select).
* @async
* @return {Promise<Object>} Result
*/
async getIntentActions () {
throw new Error (this.#getErrorMessage('getIntentActions'))
}
/**
* Request all entities.
* @async
* @throws {Error}
* @return {Promise<Object[]>} Entities
*/
async getEntities () {
throw new Error (this.#getErrorMessage('getEntities'))
}
/**
* Request an entity by its `id`.
* @async
* @param {string} entityId
* @throws {Error}
* @return {Promise<Object>} Entity
*/
async getEntity (entityId) {
throw new Error (this.#getErrorMessage('getEntity'))
}
/**
* Create a new entity.
* @async
* @param {Object} entity
* @throws {Error}
* @return {Promise<Object>} The created entity
*/
async createEntity (entity) {
throw new Error (this.#getErrorMessage('createEntity'))
}
/**
* Update an entity.
* @async
* @param {Object} entity
* @throws {Error}
* @return {Promise<Object>} The updated entity
*/
async updateEntity (entity) {
throw new Error (this.#getErrorMessage('updateEntity'))
}
/**
* Delete an entity by its `id`.
* @async
* @param {string} entityId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteEntity (entityId) {
throw new Error (this.#getErrorMessage('deleteEntity'))
}
/**
* Train the NLP engine.
* @async
* @throws {Error}
* @return {Promise<Object>} Result
*/
async trainNlp (entityId) {
throw new Error (this.#getErrorMessage('trainNlp'))
}
/**
* Process a NLP utterance.
* @async
* @param {string} utterance
* @throws {Error}
* @return {Promise<Object>} Result
*/
async processNlp (utterance) {
throw new Error (this.#getErrorMessage('processNlp'))
}
/**
* Use NLP to process an utterance.
* @async
* @param {string} utterance
* @throws {Error}
* @return {Promise<Object>} Response
*/
async askQuestion (utterance) {
throw new Error (this.#getErrorMessage('askQuestion'))
}
/**
* Request all NLP defined utterances.
* @async
* @throws {Error}
* @return {Promise<string[]>} Possible utterances
*/
async getSentences () {
throw new Error (this.#getErrorMessage('getSentences'))
}
/**
* Request all communication channels.
* @async
* @throws {Error}
* @return {Promise<Object[]>} Communication channels
*/
async getChannels () {
throw new Error (this.#getErrorMessage('getChannels'))
}
/**
* Request a communication channel by its `id`.
* @async
* @param {string} channelId
* @throws {Error}
* @return {Promise<Object>} Communication channel
*/
async getChannel (channelId) {
throw new Error (this.#getErrorMessage('getChannel'))
}
/**
* Create a new communication channel.
* @async
* @param {Object} channel
* @throws {Error}
* @return {Promise<Object>} The created communication channel
*/
async createChannel (channel) {
throw new Error (this.#getErrorMessage('createChannel'))
}
/**
* Update a communication channel.
* @async
* @param {Object} channel
* @throws {Error}
* @return {Promise<Object>} The updated communication channel
*/
async updateChannel (channel) {
throw new Error (this.#getErrorMessage('updateChannel'))
}
/**
* Delete a communication channel by its `id`.
* @async
* @param {string} channelId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteChannel (channelId) {
throw new Error (this.#getErrorMessage('deleteChannel'))
}
/**
* Request state statistics by its `id`.
* @async
* @param {string} stateId
* @param {Date} from - Start date of data for statistics calculation
* @param {Date} until - End date of data for statistics calculation
* @throws {Error}
* @return {Promise<Object>} State statistics (`{ min, max, avg, trend }`)
*/
async getStatistics (stateId, from, until) {
throw new Error (this.#getErrorMessage('getStatistics'))
}
/**
* Request the history of a state by its `id`.
* @async
* @param {string} stateId
* @param {Date} from - Start date of data for history
* @param {Date} until - End date of data for history
* @throws {Error}
* @return {Promise<Object[]>} History of state values (`[{ date, value }]`)
*/
async getHistory (stateId, from, until) {
throw new Error (this.#getErrorMessage('getHistory'))
}
/**
* Request all user views.
* @async
* @throws {Error}
* @return {Promise<Object[]>} User views
*/
async getUserViews () {
throw new Error (this.#getErrorMessage('getUserViews'))
}
/**
* Request a user view by its `id`.
* @async
* @param {string} viewId
* @throws {Error}
* @return {Promise<Object>} User view
*/
async getUserView (viewId) {
throw new Error (this.#getErrorMessage('getUserView'))
}
/**
* Create a new user view.
* @async
* @param {Object} userView
* @throws {Error}
* @return {Promise<Object>} The created user view
*/
async createUserView (userView) {
throw new Error (this.#getErrorMessage('createUserView'))
}
/**
* Update a user view.
* @async
* @param {Object} userView
* @throws {Error}
* @return {Promise<Object>} The updated user view
*/
async updateUserView (userView) {
throw new Error (this.#getErrorMessage('updateUserView'))
}
/**
* Delete a user view by its `id`.
* @async
* @param {string} viewId
* @throws {Error}
* @return {Promise<Object>} Result
*/
async deleteUserView (viewId) {
throw new Error (this.#getErrorMessage('deleteUserView'))
}
/**
* Request system logs.
* @async
* @param {Object} query - `{ level, service, limit, from, until, text }`
* @throws {Error}
* @return {Promise<Object[]>} Logs `[{ message, level, service, timestamp, ... }]`
*/
async getLogs (query) {
throw new Error (this.#getErrorMessage('getLogs'))
}
/**
* Request system loggers log level.
* @async
* @throws {Error}
* @return {Promise<Object[]>} Loggers level `[{ logger, level }]`
*/
async getLoggersLevel () {
throw new Error (this.#getErrorMessage('getLoggersLevel'))
}
/**
* Set a system loggers log level.
* @async
* @param {Object} loggerLevel
* @throws {Error}
* @return {Promise<Object>} Result
*/
async setLoggerLevel (loggerLevel) {
throw new Error (this.#getErrorMessage('setLoggerLevel'))
}
/**
* Request system scheduled tasks.
* @async
* @param {Object} query
* @throws {Error}
* @return {Promise<Object[]>} Jobs `[{ id, message, name, isRunning, cronTime, lastDate, nextDate }]`
*/
async getJobs (query) {
throw new Error (this.#getErrorMessage('getJobs'))
}
/**
* Restart system tasks scheduler.
* @async
* @param {Object} query
* @throws {Error}
* @return {Promise<Object[]>} Jobs `[{ id, message, name, isRunning, cronTime, lastDate, nextDate }]`
*/
async restartJobs (query) {
throw new Error (this.#getErrorMessage('restartJobs'))
}
/**
* Request database collections.
* @async
* @throws {Error}
* @return {Promise<Object[]>} Collections `[{ name, stats }]`
*/
async getDatabaseCollections () {
throw new Error (this.#getErrorMessage('getDatabaseCollections'))
}
/**
* Download database collections (all or only the ones selected in `params.collections`) backup in JSON or BSON format.
* @async
* @param {Object} params - `{ collections, isJson }`
* @throws {Error}
* @return {Promise<Object>} Result
*/
async getDatabaseBackup (params) {
throw new Error (this.#getErrorMessage('getDatabaseBackup'))
}
/**
* Upload and import database backup in BSON format.
* @async
* @param {File} file
* @throws {Error}
* @return {Promise<Object[]>} Restore result by collections `[{ name, count }]`
*/
async importDatabaseBackup (params) {
throw new Error (this.#getErrorMessage('importDatabaseBackup'))
}
/**
* Request system metrics (CPU, memory, disk, containers).
* @async
* @throws {Error}
* @return {Promise<Object>} Metrics `{ load, cpuCores, disk, memory, containers }`
*/
async getSystemMetrics () {
throw new Error (this.#getErrorMessage('getSystemMetrics'))
}
/**
* Request system health checks (global, database, events, database connections, pub/sub connections).
* @async
* @throws {Error}