-
Notifications
You must be signed in to change notification settings - Fork 39
/
openapi-spec.yaml
792 lines (785 loc) · 21.7 KB
/
openapi-spec.yaml
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
openapi: "3.0.3"
info:
title: WireGuard RESTful API
description: |
Manage WireGuard VPN tunnels by RESTful manner.
Supported features:
* Manage device: create, update, and delete wireguard interface
* Manage device's ip addresses: attache or detach ip addresses to the netowrk interface
* Manage device's peers: create, update, and delete peers
* Peer's QR code, for use in WireGuard & ForestVPN client
ForestVPN client may be used as alternative client with enabled P2P technology over WireGuard tunnelling.
Read more on https://forestvpn.com/
termsOfService: https://forestvpn.com/terms/
contact:
name: ForestVPN
url: https://forestvpn.com/
email: [email protected]
license:
name: MIT
url: https://opensource.org/licenses/MIT
version: "1.0"
externalDocs:
description: Documentation of wgrest
url: https://forestvpn.com/docs/wgrest/
servers:
- url: '{scheme}://{host}/v1'
variables:
host:
default: "example.com"
scheme:
enum:
- 'https'
- 'http'
default: 'https'
security:
- bearerAuth: [ ]
paths:
/devices/:
get:
summary: Devices list
operationId: ListDevices
tags:
- device
parameters:
- in: query
name: per_page
description: Number of WireGuard devices per page. Default is 100
schema:
type: number
- in: query
name: page
description: Page number. Default is 0
schema:
type: number
responses:
'200':
description: ok
headers:
Link:
schema:
type: string
description: https://docs.github.com/en/rest/guides/traversing-with-pagination
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Device"
default:
description: unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
post:
summary: Create new device
operationId: CreateDevice
tags:
- device
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceCreateOrUpdateRequest"
responses:
201:
description: Ok
content:
application/json:
schema:
$ref: "#/components/schemas/Device"
409:
description: Device exists
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
default:
description: unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/devices/{name}/:
get:
summary: Get device info
operationId: GetDevice
tags:
- device
parameters:
- in: path
name: name
required: true
schema:
type: string
responses:
'200':
description: ok
content:
application/json:
schema:
$ref: "#/components/schemas/Device"
404:
description: not found
default:
description: unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
delete:
summary: Delete Device
operationId: DeleteDevice
tags:
- device
parameters:
- in: path
name: name
required: true
schema:
type: string
responses:
204:
description: No content
404:
description: Not found
default:
description: Unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
patch:
summary: Update device
operationId: UpdateDevice
tags:
- device
parameters:
- in: path
name: name
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceCreateOrUpdateRequest"
responses:
200:
description: Ok
content:
application/json:
schema:
$ref: "#/components/schemas/Device"
404:
description: Not found
default:
description: unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/devices/{name}/options/:
get:
summary: Get device options
operationId: GetDeviceOptions
tags:
- device
parameters:
- in: path
name: name
required: true
schema:
type: string
responses:
'200':
description: ok
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceOptions"
404:
description: not found
default:
description: unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
patch:
summary: Update device's options
operationId: UpdateDeviceOptions
tags:
- device
parameters:
- in: path
name: name
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceOptionsUpdateRequest"
responses:
200:
description: Ok
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceOptions"
404:
description: Not found
default:
description: unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/devices/{name}/peers/:
get:
summary: Peers list
operationId: ListDevicePeers
tags:
- device
parameters:
- in: path
name: name
description: Device's name
required: true
schema:
type: string
- in: query
name: per_page
description: Number of WireGuard device's peers per page. Default is 100
schema:
type: number
- in: query
name: page
description: Page number. Default is 0
schema:
type: number
- in: query
name: q
description: Search query
schema:
type: string
- in: query
name: sort
description: Sort field
schema:
type: string
enum:
- pub_key
- receive_bytes
- -receive_bytes
- transmit_bytes
- -transmit_bytes
- total_bytes
- -total_bytes
- last_handshake_time
- -last_handshake_time
responses:
200:
description: Ok
headers:
Link:
schema:
type: string
description: https://docs.github.com/en/rest/guides/traversing-with-pagination
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Peer"
404:
description: Device not found
default:
description: Unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
post:
summary: Create new device peer
operationId: CreateDevicePeer
tags:
- device
parameters:
- in: path
name: name
description: Device's name
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/PeerCreateOrUpdateRequest"
responses:
201:
description: Created
content:
application/json:
schema:
$ref: "#/components/schemas/Peer"
404:
description: Device not found
default:
description: Unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/devices/{name}/peers/{urlSafePubKey}/:
get:
summary: Get device peer info
operationId: GetDevicePeer
tags:
- device
parameters:
- in: path
name: name
description: Device's name
required: true
schema:
type: string
- in: path
name: urlSafePubKey
description: Peer's url safe public key
required: true
schema:
type: string
responses:
200:
description: Ok
content:
application/json:
schema:
$ref: "#/components/schemas/Peer"
404:
description: Peer or device not found
default:
description: Unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
patch:
summary: Update device's peer
operationId: UpdateDevicePeer
tags:
- device
parameters:
- in: path
name: name
description: Device's name
required: true
schema:
type: string
- in: path
name: urlSafePubKey
description: Peer's url safe public key
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/PeerCreateOrUpdateRequest"
responses:
200:
description: Ok
content:
application/json:
schema:
$ref: "#/components/schemas/Peer"
404:
description: Peer or device not found
default:
description: Unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
delete:
summary: Delete device's peer
operationId: DeleteDevicePeer
tags:
- device
parameters:
- in: path
name: name
description: Device's name
required: true
schema:
type: string
- in: path
name: urlSafePubKey
description: Peer's url safe public key
required: true
schema:
type: string
responses:
200:
description: Ok
content:
application/json:
schema:
$ref: "#/components/schemas/Peer"
404:
description: Peer or device not found
default:
description: Unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/devices/{name}/peers/{urlSafePubKey}/quick.conf:
get:
summary: Get device peer quick config
operationId: GetDevicePeerQuickConfig
tags:
- device
parameters:
- in: path
name: name
description: Device's name
required: true
schema:
type: string
- in: path
name: urlSafePubKey
description: Peer's url safe public key
required: true
schema:
type: string
responses:
200:
description: Ok
content:
text/plain:
schema:
type: string
format: binary
404:
description: Peer or device not found
default:
description: Unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/devices/{name}/peers/{urlSafePubKey}/quick.conf.png:
get:
summary: Get device peer quick config QR code
operationId: GetDevicePeerQuickConfigQRCodePNG
tags:
- device
parameters:
- in: path
name: name
description: Device's name
required: true
schema:
type: string
- in: path
name: urlSafePubKey
description: Peer's url safe public key
required: true
schema:
type: string
- in: query
name: width
description: QR code's width & height. Default is 256px.
schema:
type: string
responses:
200:
description: Ok
content:
image/jpeg:
schema:
type: string
format: binary
404:
description: Peer or device not found
default:
description: Unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: Authorization token
schemas:
Error:
type: object
required:
- code
- message
properties:
code:
type: string
description: Error code
example: device_does_not_exist
message:
type: string
description: Error's short description
example: Device "wg0" does'n exist
detail:
type: string
description: Error's detail description
DeviceOptionsUpdateRequest:
type: object
description: Device options
properties:
allowed_ips:
type: array
items:
type: string
description: Device's allowed ips, it might be any of IPv4 or IPv6 addresses in CIDR notation.
It might be owervrite in peer and device config.
example:
- 0.0.0.0/0
- ::0/0
nullable: true
dns_servers:
type: array
items:
type: string
description: Interface's DNS servers.
example:
- 8.8.8.8
- 2001:4860:4860::8888
nullable: true
host:
type: string
description: Device host, it might be domain name or IPv4/IPv6 address.
It is used for external/internal connection
example: "1.2.3.4"
nullable: true
DeviceOptions:
type: object
description: Device options
required:
- allowed_ips
- dns_servers
- host
properties:
allowed_ips:
type: array
items:
type: string
description: Device's allowed ips, it might be any of IPv4 or IPv6 addresses in CIDR notation.
It might be owervrite in peer and device config.
example:
- 0.0.0.0/0
- ::0/0
dns_servers:
type: array
items:
type: string
description: Interface's DNS servers.
example:
- 8.8.8.8
- 2001:4860:4860::8888
host:
type: string
description: Device host, it might be domain name or IPv4/IPv6 address.
It is used for external/internal connection
example: "1.2.3.4"
DeviceCreateOrUpdateRequest:
type: object
description: Device params that might be used due to creation or updation process
properties:
name:
type: string
description: WireGuard device name. Usually it is network interface name
example: wg0
nullable: true
listen_port:
type: integer
format: int32
description: WireGuard device listen port.
example: 51820
nullable: true
private_key:
type: string
description: WireGuard device private key encoded by base64.
example: wBHGU3RiK/IFWXAF2jbHjGSDAKEO2ddcsZFEWcQ+qGc=
nullable: true
firewall_mark:
type: integer
format: int32
description: WireGuard device firewall mark.
example: 10
nullable: true
networks:
type: array
items:
type: string
description: IPv4 or IPv6 addresses in CIDR notation
example:
- 10.71.25.1/24
- fd42:21:21::1/64
nullable: true
Device:
type: object
description: Information about wireguard device.
required:
- name
- listen_port
- public_key
- private_key
- firewall_mark
- networks
- peers_count
- total_receive_bytes
- total_transmit_bytes
properties:
name:
type: string
description: WireGuard device name. Usually it is network interface name
example: wg0
listen_port:
type: integer
format: int32
description: WireGuard device listen port.
example: 51820
public_key:
type: string
description: WireGuard device public key encoded by base64.
example: QFjZjxa2sgwnmGT4NqyRoeNk31AlHjVxHNEH/qY/2no=
firewall_mark:
type: integer
format: int32
description: WireGuard device firewall mark.
example: 10
networks:
type: array
items:
type: string
description: IPv4 or IPv6 addresses in CIDR notation
example:
- 10.71.25.1/24
- fd42:21:21::1/64
peers_count:
type: integer
format: int32
description: WireGuard device's peers count
example: 10
total_receive_bytes:
type: integer
format: int64
description: WireGuard device's peers total receive bytes
example: 59984733
total_transmit_bytes:
type: integer
format: int64
description: WireGuard device's peers total transmit bytes
example: 45331987
PeerCreateOrUpdateRequest:
type: object
description: Peer params that might be used due to creation or updation process
properties:
private_key:
type: string
description: Base64 encoded private key. If present it will be stored in persistent storage.
example: gD89VQVXPAEpXuIyHOujw1wF4njIBtaSLvqAatBAuWY=
nullable: true
public_key:
type: string
description: Base64 encoded public key
example: qnPJFozrAnrTjap5VjO30bUeLvhkZEEZx48w2RqMpRA=
nullable: true
preshared_key:
type: string
description: Base64 encoded preshared key
example: c2m+JtxpcRP6pztdDFRHnOx75SI+QyBDba1+BEbQaiA=
nullable: true
allowed_ips:
type: array
items:
type: string
description: Peer's allowed ips, it might be any of IPv4 or IPv6 addresses in CIDR notation
example:
- 10.71.25.51/32
- fd42:21:21::51/128
nullable: true
persistent_keepalive_interval:
type: string
description: Peer's persistend keepalive interval. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
example: "25s"
endpoint:
type: string
description: Peer's endpoint in host:port format
example: "1.2.3.4:2345"
Peer:
type: object
description: Information about wireguard peer.
required:
- public_key
- url_safe_public_key
- allowed_ips
- persistent_keepalive_interval
- last_handshake_time
- endpoint
- receive_bytes
- transmit_bytes
properties:
public_key:
type: string
description: Base64 encoded public key
example: 0DGpyohLU+T1qAemWVWsNd1nwy3ZBAG7U4JJ/ZA+fWA=
url_safe_public_key:
type: string
description: URL safe base64 encoded public key. It is usefull to use in peers api endpoint.
example: 0DGpyohLU-T1qAemWVWsNd1nwy3ZBAG7U4JJ_ZA-fWA
preshared_key:
type: string
description: Base64 encoded preshared key
example: c2m+JtxpcRP6pztdDFRHnOx75SI+QyBDba1+BEbQaiA=
allowed_ips:
type: array
items:
type: string
description: Peer's allowed ips, it might be any of IPv4 or IPv6 addresses in CIDR notation
example:
- 10.71.25.51/32
- fd42:21:21::51/128
last_handshake_time:
type: string
format: date-time
description: Peer's last handshake time formated in RFC3339
example: ""
persistent_keepalive_interval:
type: string
description: Peer's persistend keepalive interval in
example: "25s"
endpoint:
type: string
description: Peer's endpoint in host:port format
example: "1.2.3.4:2345"
receive_bytes:
type: integer
format: int64
description: Peer's receive bytes
example: 587732
transmit_bytes:
type: integer
format: int64
description: Peer's transmit bytes
example: 432445