-
Notifications
You must be signed in to change notification settings - Fork 39
/
spec.template.yaml
487 lines (485 loc) · 12.2 KB
/
spec.template.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
openapi: 3.0.0
info:
version: 0.7.0
title: WMF Node.JS Service Template
description: A template for creating Node.JS services
termsOfService: https://wikimediafoundation.org/wiki/Terms_of_Use
contact:
name: the Wikimedia Services team
url: http://mediawiki.org/wiki/Services
license:
name: Apache2
url: http://www.apache.org/licenses/LICENSE-2.0
x-default-params:
domain: en.wikipedia.org
paths:
# from routes/root.js
/robots.txt:
get:
tags:
- Root
- Robots
description: Gets robots.txt
responses:
200:
description: Success
default:
description: Error
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
x-amples:
- title: robots.txt check
request: {}
response:
status: 200
/:
get:
tags:
- Root
description: The root service end-point
responses:
200:
description: Success
default:
description: Error
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
x-amples:
- title: root with no query params
request: {}
response:
status: 404
- title: spec from root
request:
query:
spec: true
response:
status: 200
- title: doc from root
request:
query:
doc: true
response:
status: 200
- title: root with wrong query param
request:
query:
fooo: true
response:
status: 404
# from routes/v1.js
/{domain}/v1/siteinfo:
get:
tags:
- Site info
- MW API call
- Example
description: Calls the MW API siteinfo action and returns the response
parameters:
- $ref: "#/components/parameters/domain"
responses:
200:
description: Success
404:
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
504:
description: Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
default:
description: Error
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
x-amples:
- title: site info for default domain
request: {}
response:
status: 200
headers:
content-type: application/json
- title: site info for a non-existent domain
request:
params:
domain: my.fake.domain
response:
status: 504
headers:
content-type: application/json
/{domain}/v1/siteinfo/{prop}:
get:
tags:
- Site info
- MW API call
- Example
description: Calls the MW API siteinfo action and returns the response
parameters:
- $ref: "#/components/parameters/domain"
- $ref: "#/components/parameters/prop"
responses:
200:
description: Success
404:
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
504:
description: Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
default:
description: Error
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
x-amples:
- title: site info for default domain
request: {}
response:
status: 200
headers:
content-type: application/json
- title: site info for a non-existent domain
request:
params:
domain: my.fake.domain
response:
status: 504
headers:
content-type: application/json
- title: site info check for valid prop
request:
params:
prop: sitename
response:
status: 200
headers:
content-type: application/json
body:
sitename: Wikipedia
- title: site info check for invalid prop
request:
params:
prop: blaprop
response:
status: 404
headers:
content-type: application/json
/{domain}/v1/page/{title}:
get:
tags:
- Page content
- Example
description: Gets the HTML for the page with the given title
parameters:
- $ref: "#/components/parameters/domain"
- $ref: "#/components/parameters/title"
responses:
200:
description: OK
404:
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
default:
description: Error
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
x-amples:
- title: get the Foobar page from en.wp.org
request:
params:
title: Foobar
response:
status: 200
headers:
content-type: text/html
/{domain}/v1/page/{title}/lead:
get:
tags:
- Page content
- Lead section
- Example
description: Gets the lead-section HTML for the page with the given title
parameters:
- $ref: "#/components/parameters/domain"
- $ref: "#/components/parameters/title"
responses:
200:
description: OK
404:
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
default:
description: Error
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
x-amples:
- title: get the lead section for Barack Obama
request:
params:
title: Barack Obama
response:
status: 200
headers:
content-type: text/html
# from routes/info.js
/_info:
get:
tags:
- Service information
description: Gets information about the service
responses:
200:
description: OK
x-amples:
- title: retrieve service info
request: {}
response:
status: 200
headers:
content-type: application/json
body:
name: /.+/
description: /.+/
version: /.+/
home: /.+/
/_info/name:
get:
tags:
- Service information
- Service name
description: Gets the name of the service
responses:
200:
description: OK
x-amples:
- title: retrieve service name
request: {}
response:
status: 200
headers:
content-type: application/json
body:
name: /.+/
/_info/version:
get:
tags:
- Service information
- Service version
description: Gets the running version of the service
responses:
200:
description: OK
x-amples:
- title: retrieve service version
request: {}
response:
status: 200
headers:
content-type: application/json
body:
version: /.+/
/_info/home:
get:
tags:
- Service information
- Service homepage
description: Redirects to the home page
responses:
301:
description: Redirect
x-amples:
- title: redirect to the home page
request: {}
response:
status: 301
# from routes/ex.js
/ex/err/array:
get:
tags:
- Example
- Error
- Internal error
description: Generates an internal error due to a wrong array declaration
responses:
500:
description: Internal Error
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
x-amples:
- title: wrong array declaration example
request: {}
response:
status: 500
headers:
content-type: application/json
/ex/err/file:
get:
tags:
- Example
- Error
- Internal error
description: Generates an internal error due to a non-existing file
responses:
500:
description: Internal Error
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
x-amples:
- title: non-existing file example
request: {}
response:
status: 500
headers:
content-type: application/json
/ex/err/manual/error:
get:
tags:
- Example
- Error
- Internal error
description: Generates an internal error due to a user-thrown error
responses:
500:
description: Internal Error
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
x-amples:
- title: user error example
request: {}
response:
status: 500
headers:
content-type: application/json
/ex/err/manual/deny:
get:
tags:
- Example
- Error
- Access denied
description: Generates an access-denied error
responses:
403:
description: Access Denied
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
x-amples:
- title: access denied error example
request: {}
response:
status: 403
headers:
content-type: application/json
/ex/err/manual/auth:
get:
tags:
- Example
- Error
- Unauthorised access
description: Generates an unauthorised error
responses:
401:
description: Unauthorized
content:
application/json:
schema:
$ref: "#/components/schemas/problem"
x-amples:
- title: unauthorised error example
request: {}
response:
status: 401
headers:
content-type: application/json
/ex/req/uri/{uri}:
get:
tags:
- Example
- Request issuing
description: Issues a request to the given URI
responses:
200:
description: OK
x-amples:
- title: Get example home page
request:
params:
uri: "http://www.example.com"
components:
schemas:
# A https://tools.ietf.org/html/draft-nottingham-http-problem
problem:
required:
- type
properties:
status:
type: integer
type:
type: string
title:
type: string
detail:
type: string
method:
type: string
uri:
type: string
parameters:
domain:
in: path
name: domain
required: true
schema:
type: string
description: |
Project domain for the requested data.
title:
in: path
name: title
required: true
schema:
type: string
description: |
Page title. Use underscores instead of spaces. Example: `Main_Page`
prop:
in: path
name: prop
required: true
schema:
type: string
description: |
Site info prop.