-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspec.template.yaml
286 lines (286 loc) · 7.06 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
swagger: '2.0'
info:
version: 0.4.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
x-amples:
- title: robots.txt check
request: {}
response:
status: 200
headers:
user-agent: '*'
disallow: '/'
/:
get:
tags:
- Root
description: The root service end-point
produces:
- application/json
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{/prop}:
get:
tags:
- Site info
- MW API call
- Example
description: Calls the MW API siteinfo action and returns the response
produces:
- application/json
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
produces:
- text/html
- application/json
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
produces:
- text/html
- application/json
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
produces:
- application/json
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
produces:
- application/json
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
produces:
- application/json
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
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
produces:
- application/json
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
produces:
- application/json
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
produces:
- application/json
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
produces:
- application/json
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
produces:
- application/json
x-amples:
- title: unauthorised error example
request: {}
response:
status: 401
headers:
content-type: application/json