-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec.yaml
executable file
·283 lines (277 loc) · 7.25 KB
/
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
openapi: "3.0.2"
info:
title: PiHole Management API
description: A management webservice to be run locally on a PiHole instance
version: "1.0"
servers:
- url: http://pi.hole:8080/
paths:
/status:
get:
description: Status of the PiHole service and webservice
responses:
"200":
description: All systems normal
content:
application/json:
schema:
$ref: "#/components/schemas/Status"
"201":
description: PiHole running but not enabled
content:
application/json:
schema:
$ref: "#/components/schemas/Status"
"500":
description: PiHole service is unhealthy or not running
content:
application/json:
schema:
$ref: "#/components/schemas/Status"
/status/{action}:
post:
parameters:
- name: action
in: path
required: true
schema:
type: string
example: restart
responses:
"200":
description: All systems normal
content:
application/json:
schema:
$ref: "#/components/schemas/Status"
"201":
description: PiHole running but not enabled
content:
application/json:
schema:
$ref: "#/components/schemas/Status"
"400":
description: Illegal Request
content:
text/text:
schema:
type: string
example: "Invalid request"
/gravity:
get:
description: Returns a list of all gravity sources
responses:
"200":
description: List of configured Gravity sources
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/GravityObj"
post:
description: Adds a new gravity source
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/GravityObj"
responses:
"200":
$ref: "#/components/responses/unchanged"
"201":
$ref: "#/components/responses/updated"
patch:
description: Update gravity (equivalent to `pihole -g`)
responses:
"200":
$ref: "#/components/responses/unchanged"
/gravity/{id}:
delete:
parameters:
- name: id
required: true
in: path
schema:
type: integer
example: 1
responses:
"200":
$ref: "#/components/responses/deleted"
/records:
get:
description: Returns a list of custom DNS records
responses:
"200":
$ref: "#/components/responses/records"
post:
description: Add a custom DNS record
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/Record"
responses:
"200":
description: Unchanged
$ref: "#/components/responses/records"
"201":
description: Record added or updated
$ref: "#/components/responses/records"
"418":
description: Invalid record type
$ref: "#/components/responses/invalidRecordType"
delete:
description: Remove a custom record
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/DeleteRecord"
responses:
"200":
$ref: "#/components/responses/records"
"201":
$ref: "#/components/responses/deleted"
"418":
description: Invalid record type
$ref: "#/components/responses/invalidRecordType"
/overrides/{list}:
description: Return the Allow or Deny lists
get:
parameters:
- name: list
required: true
in: path
schema:
type: string
example: allow
responses:
"200":
$ref: "#/components/responses/override"
components:
responses:
override:
description: Allow/Block list
content:
application/json:
schema:
$ref: "#/components/schemas/Overrides"
invalidRecordType:
description: Invalid DNS record type specified
content:
application/json:
schema:
type: string
example: "'TEAPOT' is not a valid record type"
records:
description: List of DNS records
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Record"
unchanged:
description: Object unchanged
content:
application/json:
schema:
$ref: "#/components/schemas/GravityObj"
updated:
description: Object updated
content:
application/json:
schema:
$ref: "#/components/schemas/GravityObj"
deleted:
description: The object was deleted
content:
application/json:
schema:
type: string
example: "Object deleted successfully"
schemas:
Overrides:
description: List of overrides
type: array
items:
type: string
example: google.com
DeleteRecord:
type: object
required:
- type
- domain
properties:
type:
type: string
example: CNAME
description: CNAME or A
domain:
type: string
example: endres.io
description: The domain to resolve
Record:
type: object
required:
- type
- domain
- destination
properties:
type:
type: string
example: CNAME
description: CNAME or A
domain:
type: string
example: google.com
description: The domain to resolve
destination:
type: string
example: 8.8.8.8
description: The destination IP or DNS record
Status:
type: object
required:
- listening
- ipv4
- ipv6
- blocking
properties:
listening:
type: boolean
example: true
ipv4:
$ref: "#/components/schemas/UdpTcp"
ipv6:
$ref: "#/components/schemas/UdpTcp"
blocking:
type: boolean
example: true
UdpTcp:
type: object
required:
- udp
- tcp
properties:
udp:
type: boolean
example: true
tcp:
type: boolean
example: true
GravityObj:
type: object
required:
- address
properties:
id:
type: integer
example: 1
address:
type: string
example: https://pi.hole/adlist.txt
comment:
type: string
example: My adlist for PiHole