-
Notifications
You must be signed in to change notification settings - Fork 75
/
swagger.js
491 lines (486 loc) · 14.6 KB
/
swagger.js
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
const swaggerAutogen = require('swagger-autogen')({ openapi: '3.0.2' })
const outputFile = 'api-docs/openapi.json'
const endpointsFiles = [
'src/controller/cve-id.controller/index.js',
'src/controller/cve.controller/index.js',
'src/controller/org.controller/index.js',
'src/controller/user.controller/index.js',
'src/controller/system.controller/index.js'
]
const publishedCVERecord = require('../schemas/cve/published-cve-example.json')
const rejectedCVERecord = require('../schemas/cve/rejected-cve-example.json')
const rejectedCreateCVERecord = require('../schemas/cve/rejected-create-cve-example.json')
// Examples for minimum only fields and all fields for cnaContainer request
const requiredFieldsOnlyCnaContainerRequest = require('../schemas/cve/cna-minimum-request.json')
const fullCnaContainerRequest = require('../schemas/cve/create-cve-record-cna-request.json')
/* eslint-disable no-multi-str */
const doc = {
info: {
version: '2.4.0',
title: 'CVE Services API',
description: "The CVE Services API supports automation tooling for the CVE Program. Credentials are \
required for most service endpoints. Representatives of \
<a href='https://www.cve.org/ProgramOrganization/CNAs'>CVE Numbering Authorities (CNAs)</a> should \
use one of the methods below to obtain credentials:\
<ul><li>If your organization already has an Organizational Administrator (OA) account for the CVE \
Services, ask your admin for credentials</li> \
<li>Contact your Root (<a href='https://www.cve.org/PartnerInformation/ListofPartners/partner/Google'>Google</a>, \
<a href='https://www.cve.org/PartnerInformation/ListofPartners/partner/INCIBE'>INCIBE</a>, \
<a href='https://www.cve.org/PartnerInformation/ListofPartners/partner/jpcert'>JPCERT/CC</a>, or \
<a href='https://www.cve.org/PartnerInformation/ListofPartners/partner/redhat'>Red Hat</a>) or \
Top-Level Root (<a href='https://www.cve.org/PartnerInformation/ListofPartners/partner/icscert'>CISA ICS</a> \
or <a href='https://www.cve.org/PartnerInformation/ListofPartners/partner/mitre'>MITRE</a>) to request credentials \
</ul> \
<p>CVE data is to be in the JSON 5.1 CVE Record format. Details of the JSON 5.1 schema are \
located <a href='https://github.com/CVEProject/cve-schema/tree/5.1.1-rc2/schema' target='_blank'>here</a>.</p>\
<a href='https://cveform.mitre.org/' class='link' target='_blank'>Contact the CVE Services team</a>",
contact: {
name: 'CVE Services Overview',
url: 'https://cveproject.github.io/automation-cve-services#services-overview'
}
},
servers: [
{
url: 'urlplaceholder'
}
],
basePath: '/api',
host: 'localhost:3000',
schemes: [
'https'
],
components: {
parameters: {
active: {
in: 'query',
name: 'active',
description: 'The new active state for the user entry. Accepted values are 1, true, or yes to indicate true, and 0, false, or no to indicate false',
required: false,
schema: {
type: 'boolean'
}
},
active_roles_add: {
in: 'query',
name: 'active_roles.add',
description: 'Add an active role to the organization',
required: false,
schema: {
type: 'string',
enum: [
'CNA',
'SECRETARIAT'
]
}
},
active_roles_remove: {
in: 'query',
name: 'active_roles.remove',
description: 'Remove an active role from the organization',
required: false,
schema: {
type: 'string',
enum: [
'CNA',
'SECRETARIAT'
]
}
},
activeUserRolesAdd: {
in: 'query',
name: 'active_roles.add',
description: 'Add an active role to the user',
required: false,
schema: {
type: 'string',
enum: [
'ADMIN'
]
}
},
activeUserRolesRemove: {
in: 'query',
name: 'active_roles.remove',
description: 'Remove an active role from the user',
required: false,
schema: {
type: 'string',
enum: [
'ADMIN'
]
}
},
apiEntityHeader: {
in: 'header',
name: 'CVE-API-ORG',
description: 'The shortname for the organization associated with the user requesting authentication',
required: true,
schema: {
type: 'string'
}
},
apiUserHeader: {
in: 'header',
name: 'CVE-API-USER',
description: 'The username for the account making the request',
required: true,
schema: {
type: 'string'
}
},
apiSecretHeader: {
in: 'header',
name: 'CVE-API-KEY',
description: 'The user\'s API key',
required: true,
schema: {
type: 'string'
}
},
amount: {
in: 'query',
name: 'amount',
description: 'Quantity of CVE IDs to reserve',
required: true,
schema: {
type: 'integer',
format: 'int32'
}
},
assigner: {
in: 'query',
name: 'assigner',
description: 'Filter by assigner org UUID',
required: false,
schema: {
type: 'string'
}
},
assignerShortName: {
in: 'query',
name: 'assigner_short_name',
description: 'Filter by assignerShortName',
required: false,
schema: {
type: 'string'
}
},
batch_type: {
in: 'query',
name: 'batch_type',
description: 'Required when amount is greater than one, determines whether the reserved CVE IDs should be sequential or non-sequential',
required: false,
schema: {
type: 'string',
enum: [
'sequential',
'non-sequential',
'nonsequential'
]
}
},
countOnly: {
in: 'query',
name: 'count_only',
description: 'Get count of records that match query. Accepted values are 1, true, or yes to indicate true, and 0, false, or no to indicate false',
required: false,
schema: {
type: 'boolean'
}
},
nextPage: {
in: 'query',
name: 'next_page',
description: 'Key returned by a GET /cve_cursor call that must be used to get the next page of results in a subsequent call',
required: false,
schema: {
type: 'string'
}
},
previousPage: {
in: 'query',
name: 'previous_page',
description: 'Key returned by a GET /cve_cursor call that must be used to get the previous page of results in a subsequent call',
required: false,
schema: {
type: 'string'
}
},
limit: {
in: 'query',
name: 'limit',
description: 'CVE records to return per page. Must be between 1-500. ',
required: false,
schema: {
type: 'integer'
}
},
cnaModified: {
in: 'query',
name: 'cna_modified',
description: 'Only get CVE records with cnaContainers that have been modified/created within the set time_modified range. Requires at least one time_modified parameter set',
required: false,
schema: {
type: 'boolean'
}
},
adpShortName: {
in: 'query',
name: 'adp_short_name',
description: 'Only get CVE records that have an adpContainer owned by this org.',
required: false,
schema: {
type: 'string'
}
},
cveState: {
in: 'query',
name: 'state',
description: 'Filter by state',
schema: {
type: 'string',
enum: [
'PUBLISHED',
'REJECTED'
]
}
},
cve_year: {
in: 'query',
name: 'cve_year',
description: 'The year the CVE IDs will be reserved for (i.e., 1999, ..., currentYear + 1)',
required: true,
schema: {
type: 'integer',
format: 'int32'
}
},
cveIdGetFilteredState: {
in: 'query',
name: 'state',
description: 'Filter by state ',
required: false,
schema: {
type: 'string',
enum: [
'RESERVED',
'PUBLISHED',
'REJECTED'
]
}
},
cveIdGetFilteredCveIdYear: {
in: 'query',
name: 'cve_id_year',
description: 'Filter by the year of the CVE IDs',
required: false,
schema: {
type: 'string'
}
},
cveIdGetFilteredTimeReservedLt: {
in: 'query',
name: 'time_reserved.lt',
description: 'Most recent reserved timestamp to retrieve. Include with all requests potentially returning multiple pages of CVE IDs to avoid issues if new IDs are reserved during use. <br><br> <i>Timestamp format</i> : yyyy-MM-ddTHH:mm:ssZZZZ',
required: false,
schema: {
type: 'string',
format: 'date-time'
}
},
cveIdGetFilteredTimeReservedGt: {
in: 'query',
name: 'time_reserved.gt',
description: 'Earliest CVE ID reserved timestamp to retrieve <br><br> <i>Timestamp format</i> : yyyy-MM-ddTHH:mm:ssZZZZ',
required: false,
schema: {
type: 'string',
format: 'date-time'
}
},
cveIdGetFilteredTimeModifiedLt: {
in: 'query',
name: 'time_modified.lt',
description: 'Most recent modified timestamp to retrieve. Include with all requests using a time_modified.gt filter potentially returning multiple pages of CVE IDs. This will avoid issues if IDs are reserved or modified during use.<br><br> <i>Timestamp format</i> : yyyy-MM-ddTHH:mm:ssZZZZ',
required: false,
schema: {
type: 'string',
format: 'date-time'
}
},
cveIdGetFilteredTimeModifiedGt: {
in: 'query',
name: 'time_modified.gt',
description: 'Earliest CVE ID modified timestamp to retrieve <br><br> <i>Timestamp format</i> : yyyy-MM-ddTHH:mm:ssZZZZ',
required: false,
schema: {
type: 'string',
format: 'date-time'
}
},
cveRecordFilteredTimeModifiedLt: {
in: 'query',
name: 'time_modified.lt',
description: 'Most recent CVE record modified timestamp to retrieve <br><br> <i>Timestamp format</i> : yyyy-MM-ddTHH:mm:ssZZZZ',
required: false,
schema: {
type: 'string',
format: 'date-time'
}
},
cveRecordFilteredTimeModifiedGt: {
in: 'query',
name: 'time_modified.gt',
description: 'Earliest CVE record modified timestamp to retrieve <br><br> <i>Timestamp format</i> : yyyy-MM-ddTHH:mm:ssZZZZ',
required: false,
schema: {
type: 'string',
format: 'date-time'
}
},
id_quota: {
in: 'query',
name: 'id_quota',
description: 'The new number of CVE IDs the organization is allowed to have in the RESERVED state at one time',
required: false,
schema: {
type: 'integer',
format: 'int32',
minimum: 0,
maximum: 100000
}
},
name: {
in: 'query',
name: 'name',
description: 'The new name for the organization',
required: false,
schema: {
type: 'string'
}
},
nameFirst: {
in: 'query',
name: 'name.first',
description: 'The new first name for the user entry',
required: false,
schema: {
type: 'string'
}
},
nameLast: {
in: 'query',
name: 'name.last',
description: 'The new last name for the user entry',
required: false,
schema: {
type: 'string'
}
},
nameMiddle: {
in: 'query',
name: 'name.middle',
description: 'The new middle name for the user entry',
required: false,
schema: {
type: 'string'
}
},
nameSuffix: {
in: 'query',
name: 'name.suffix',
description: 'The new suffix for the user entry',
required: false,
schema: {
type: 'string'
}
},
newShortname: {
in: 'query',
name: 'new_short_name',
description: 'The new shortname for the organization',
required: false,
schema: {
type: 'string'
}
},
newUsername: {
in: 'query',
name: 'new_username',
description: 'The new username for the user, preferably the user\'s email address. Must be 3-128 characters in length; allowed characters are alphanumeric and -_@.',
required: false,
schema: {
type: 'string'
}
},
org: {
in: 'query',
name: 'org',
description: 'The shortname of the new owning_cna for the CVE ID',
required: false,
schema: {
type: 'string'
}
},
orgShortname: {
in: 'query',
name: 'org_short_name',
description: 'The new organization for the user',
required: false,
schema: {
type: 'string'
}
},
pageQuery: {
in: 'query',
name: 'page',
description: 'The current page in the paginator',
required: false,
schema: {
type: 'integer',
format: 'int32',
minimum: 1
}
},
short_name: {
in: 'query',
name: 'short_name',
description: 'The CNA that will own the reserved CVE IDs',
required: true,
schema: {
type: 'string'
}
},
shortname: {
in: 'query',
name: 'shortname',
description: 'The new shortname for the organization',
required: false,
schema: {
type: 'string'
}
},
state: {
in: 'query',
name: 'state',
description: 'The new state for the CVE ID',
required: false,
schema: {
type: 'string',
enum: [
'RESERVED',
'REJECTED'
]
}
}
},
examples: {
publishedRecord: publishedCVERecord,
rejectedRecord: rejectedCVERecord,
rejectedCreateCVERecord: rejectedCreateCVERecord,
minCnaContainer: requiredFieldsOnlyCnaContainerRequest,
fullCnaContainer: fullCnaContainerRequest
}
}
}
swaggerAutogen(outputFile, endpointsFiles, doc)