-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathespbot_api.yaml
More file actions
2024 lines (2020 loc) · 56.9 KB
/
espbot_api.yaml
File metadata and controls
2024 lines (2020 loc) · 56.9 KB
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
openapi: 3.0.0
info:
title: ESPBOT APIs
version: 2.3.0
description: >
These APIs are for reading, setting and controlling an ESPBOT based APP.
servers:
- url: http://{host}:{port}/{basePath}
description: The generic ESPBOT device
variables:
host:
default: '192.168.10.1'
port:
enum:
- '80'
default: '80'
basePath:
enum:
- api
default: api
- url: http://192.168.1.187/api
description: test device
paths:
# app APIs
/test:
post:
description: Test API, will run a test passing two parameters
summary: Test
operationId: runTest
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/testParams'
responses:
'200':
description: Successful, returns the test parameters
content:
application/json:
schema:
$ref: '#/components/schemas/testParams'
'400':
description: Bad request.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
# espbot common APIs
/cron:
get:
description: Returns cron settings (enabled or disabled)
summary: Find cron status
operationId: getCron
responses:
'200':
description: the cron status (enabled/disabled)
content:
application/json:
schema:
$ref: '#/components/schemas/cron_status'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
post:
description: Sets cron status (enabled or disabled)
summary: Enable/Disable cron
operationId: setCron
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/cron_status'
responses:
'200':
description: Successful, return current cron status
content:
application/json:
schema:
$ref: '#/components/schemas/cron_status'
'400':
description: Bad request.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/debug/lastReset:
get:
description: Returns information about last time the device rebooted.
summary: Find last reset info
operationId: getLastReset
responses:
'200':
description: Last reset info
content:
application/json:
schema:
$ref: '#/components/schemas/lastReset'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/debug/hexMemDump:
post:
description: Returns the content of a selected RAM memory interval as hexadecimal
summary: Find memory content (hex)
operationId: getHexMemDump
requestBody:
description: The memory interval range
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/memInterval'
responses:
'200':
description: The memory interval content
content:
application/json:
schema:
$ref: '#/components/schemas/memIntervalHexContent'
'400':
description: Bad request.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/debug/memDump:
post:
description: Returns the content of a selected RAM memory interval as text
summary: Find memory content (text)
operationId: getMemDump
requestBody:
description: The memory interval range
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/memInterval'
responses:
'200':
description: The memory interval content
content:
application/json:
schema:
$ref: '#/components/schemas/memIntervalContent'
'400':
description: Bad request.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/debug/memInfo:
get:
description: Returns a summary of RAM memory usage
summary: Find RAM memory usage
operationId: getMemInfo
responses:
'200':
description: The current RAM memory usage
content:
application/json:
schema:
$ref: '#/components/schemas/memInfo'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/deviceName:
get:
description: Returns the device name
summary: Find device name
operationId: getDeviceName
responses:
'200':
description: The current device name
content:
application/json:
schema:
$ref: '#/components/schemas/deviceName'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
post:
description: Sets device name
summary: Set device name
operationId: setDeviceName
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/deviceName'
responses:
'200':
description: Successful, returns current device name
content:
application/json:
schema:
$ref: '#/components/schemas/deviceName'
'400':
description: Bad request.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/diagnostic:
get:
description: Returns the last diagnostic events recorded by the device
summary: Find device diagnostic
operationId: getDiagnosticEvents
responses:
'200':
description: The last diagnostic events
content:
application/json:
schema:
$ref: '#/components/schemas/diagnosticEvents'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
post:
description: Acknowledges the diagnostic events.
summary: Acknowledge diagnostic.
operationId: ackDiagnosticEvents
responses:
'200':
description: The diagnostic events were acknowledged.
content:
application/json:
schema:
$ref: '#/components/schemas/success'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/diagnostic/cfg:
get:
description: Returns the diagnostic config (which events are reported to the LED and to the serial log).
summary: Find current diagnostic config
operationId: getDiagnosticCfg
responses:
'200':
description: The current diagnostic config
content:
application/json:
schema:
$ref: '#/components/schemas/diagnosticCfg'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
post:
description: Sets diagnostic config
summary: Set diagnostic config
operationId: setDiagnosticCfg
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/diagnosticCfg'
responses:
'200':
description: Successful, returns current diagnostic config
content:
application/json:
schema:
$ref: '#/components/schemas/diagnosticCfg'
'400':
description: Bad request.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/file:
get:
description: Returns a list of the files on the device.
summary: File list
operationId: getFileList
responses:
'200':
description: The file list
content:
application/json:
schema:
$ref: '#/components/schemas/fileList'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/file/{filename}:
get:
description: Returns the content of a file
summary: Find file
operationId: getFile
parameters:
- name: filename
in: path
description: The file name
required: true
schema:
type: string
pattern: '[ -~]{1,31}'
minLength: 1
maxLength: 31
style: simple
responses:
'200':
description: The file content
content:
'application/octet-stream':
schema:
type: string
format: binary
minLength: 0
maxLength: 4194304
pattern: '[\x00-\xFF]{0,4194304}'
'text/css':
schema:
type: string
format: binary
minLength: 0
maxLength: 4194304
pattern: '[\x00-\xFF]{0,4194304}'
'text/html':
schema:
type: string
format: binary
minLength: 0
maxLength: 4194304
pattern: '[\x00-\xFF]{0,4194304}'
'text/js':
schema:
type: string
format: binary
minLength: 0
maxLength: 4194304
pattern: '[\x00-\xFF]{0,4194304}'
'text/plain':
schema:
type: string
format: binary
minLength: 0
maxLength: 4194304
pattern: '[\x00-\xFF]{0,4194304}'
'image/jpeg':
schema:
type: string
format: binary
minLength: 0
maxLength: 4194304
pattern: '[\x00-\xFF]{0,4194304}'
'image/png':
schema:
type: string
format: binary
minLength: 0
maxLength: 4194304
pattern: '[\x00-\xFF]{0,4194304}'
'400':
description: Bad request.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'404':
description: Not found.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
post:
description: Create a new file (to create files bigger than 2048 bytes, first create then modify, appending new content)
summary: Create a file
operationId: createFile
parameters:
- name: filename
in: path
description: The file name
required: true
schema:
type: string
pattern: '[ -~]{1,31}'
minLength: 1
maxLength: 31
style: simple
requestBody:
required: true
description: The file content
content:
'application/octet-stream':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'text/css':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'text/html':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'text/js':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'text/plain':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'image/jpeg':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'image/png':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
responses:
'201':
description: File successfully created.
content:
application/json:
schema:
$ref: '#/components/schemas/success'
'400':
description: Bad request, no filename provided or file already exists.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
put:
description: Append content to the specified file
summary: Modify a file
operationId: appendToFile
parameters:
- name: filename
in: path
description: The file name
required: true
schema:
type: string
pattern: '[ -~]{1,31}'
minLength: 1
maxLength: 31
style: simple
requestBody:
required: true
description: The file content
content:
'application/octet-stream':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'text/css':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'text/html':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'text/js':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'text/plain':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'image/jpeg':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
'image/png':
schema:
type: string
format: binary
minLength: 0
maxLength: 2048
pattern: '[\x00-\xFF]{0,2048}'
responses:
'200':
description: File successfully modified.
content:
application/json:
schema:
$ref: '#/components/schemas/success'
'400':
description: Bad request, no filename provided.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'404':
description: Not found.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
delete:
description: Delete the specified file
summary: Delete a file
operationId: deleteFile
parameters:
- name: filename
in: path
description: The file name
required: true
schema:
type: string
pattern: '[ -~]{1,31}'
minLength: 1
maxLength: 31
style: simple
responses:
'200':
description: File successfully deleted.
content:
application/json:
schema:
$ref: '#/components/schemas/success'
'400':
description: Bad request, no filename provided.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'404':
description: Not found.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/fs:
get:
description: Returns SPIFFS file system information
summary: Find SPIFFS informations
operationId: getFs
responses:
'200':
description: SPIFFS informations
content:
application/json:
schema:
$ref: '#/components/schemas/fsInfo'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/fs/format:
post:
description: Formats the file system (will take a long time)
summary: Format File System
operationId: formatFs
responses:
'202':
description: Command accepted, the file system is being formatted.
content:
application/json:
schema:
$ref: '#/components/schemas/success'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/gpio/{gpio_id}:
get:
description: Returns the level (low/high) for gpio with the specified id
summary: Find gpio level
operationId: getGpioLevel
parameters:
- name: gpio_id
in: path
description: The gpio id
required: true
schema:
type: integer
format: int32
description: WEMOX D1 D1-D8
minimum: 1
maximum: 8
style: simple
responses:
'200':
description: The current level for gpio "gpio_id"
content:
application/json:
schema:
$ref: '#/components/schemas/gpioInfo'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
post:
description: Sets the specified gpio to the level in the request body (will work only on gpio configured as output)
summary: Set gpio level
operationId: setGpioLevel
parameters:
- name: gpio_id
in: path
description: The gpio id
required: true
schema:
type: integer
format: int32
description: WEMOX D1 D1-D8
minimum: 1
maximum: 8
style: simple
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/gpioInfo'
responses:
'200':
description: Successful, returns the current gpio level
content:
application/json:
schema:
$ref: '#/components/schemas/gpioInfo'
'400':
description: Bad request.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/gpio/cfg/{gpio_id}:
get:
description: Returns the specified gpio config (unprovisioned or input or output)
summary: Find gpio config
operationId: getGpioCfg
parameters:
- name: gpio_id
in: path
description: The gpio id
required: true
schema:
type: integer
format: int32
description: WEMOX D1 D1-D8
minimum: 1
maximum: 8
style: simple
responses:
'200':
description: The gpio config
content:
application/json:
schema:
$ref: '#/components/schemas/gpioCfg'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
post:
description: Sets the specified gpio as unprovisioned or input or output
summary: Set gpio config
operationId: setGpioCfg
parameters:
- name: gpio_id
in: path
description: The gpio id
required: true
schema:
type: integer
format: int32
description: WEMOX D1 D1-D8
minimum: 1
maximum: 8
style: simple
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/gpioCfg'
responses:
'200':
description: Successful, returns the current gpio config
content:
application/json:
schema:
$ref: '#/components/schemas/gpioCfg'
'400':
description: Bad request.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/info:
get:
description: Returns informations about the device (device name, chip id, fw versions)
summary: Find device info
operationId: getInfo
responses:
'200':
description: The device information
content:
application/json:
schema:
$ref: '#/components/schemas/deviceInfo'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/mdns:
get:
description: Returns mDNS status (enabled or disabled)
summary: Find mDNS status
operationId: getMdns
responses:
'200':
description: The mDNS status (enabled/disabled)
content:
application/json:
schema:
$ref: '#/components/schemas/mdnsStatus'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
post:
description: Sets mDNS status (enabled or disabled)
summary: Enable/Disable mDNS
operationId: setMdns
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/mdnsStatus'
responses:
'200':
description: Successful, returns current mDNS status
content:
application/json:
schema:
$ref: '#/components/schemas/mdnsStatus'
'400':
description: Bad request.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/ota:
post:
description: Start OTA (in case that version check is enabled and the device binary is up-to-date OTA won't be started)
summary: Start OTA
operationId: startOTA
responses:
'200':
description: OTA completed or not required
content:
application/json:
schema:
$ref: '#/components/schemas/success'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/ota/cfg:
get:
description: Returns the config used for OTA
summary: Find OTA config
operationId: getOtaCfg
responses:
'200':
description: The current OTA config
content:
application/json:
schema:
$ref: '#/components/schemas/otaCfg'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
post:
description: Sets OTA config
summary: Set OTA config
operationId: setOtaCfg
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/otaCfg'
responses:
'200':
description: Successful, return current OTA config
content:
application/json:
schema:
$ref: '#/components/schemas/otaCfg'
'400':
description: Bad request.
content:
application/json:
schema:
$ref: '#/components/schemas/error'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/ota/reboot:
post:
description: Reboot the device after OTA completion
summary: Reboot after OTA
operationId: setOtaReboot
responses:
'202':
description: Successful, device is rebooting...
content:
application/json:
schema:
$ref: '#/components/schemas/success'
'default':
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/error'
/reboot:
post:
description: Reboots the device
summary: Reboot
operationId: setReboot
responses:
'202':
description: Successful, device is rebooting...
content:
application/json:
schema:
$ref: '#/components/schemas/success'
'default':
description: Unexpected error
content:
application/json:
schema: