-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathServerlessAutoSwagger.ts
482 lines (427 loc) · 14.3 KB
/
ServerlessAutoSwagger.ts
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
'use strict';
import * as fs from 'fs-extra';
import { getOpenApiWriter, getTypeScriptReader, makeConverter } from 'typeconv';
import { removeStringFromArray, writeFile } from './helperFunctions';
import swaggerFunctions from './resources/functions';
import {
FullHttpApiEvent,
FullHttpEvent,
HttpApiEvent,
HttpEvent,
HttpResponses,
Serverless,
ServerlessCommand,
ServerlessHooks,
ServerlessOptions,
} from './serverlessPlugin';
import { Definition, MethodSecurity, Response, SecurityDefinition, Swagger } from './swagger';
class ServerlessAutoSwagger {
serverless: Serverless;
options: ServerlessOptions;
swagger: Swagger = {
swagger: '2.0',
info: {
title: '',
version: '1',
},
schemes: ['https'],
paths: {},
definitions: {},
securityDefinitions: {},
};
commands: { [key: string]: ServerlessCommand } = {};
hooks: ServerlessHooks = {};
constructor(serverless: Serverless, options: ServerlessOptions) {
this.serverless = serverless;
this.options = options;
this.registerOptions();
this.commands = {
'generate-swagger': {
usage: 'Generates Swagger for your API',
lifecycleEvents: ['generateSwagger'],
},
};
this.hooks = {
'generate-swagger:generateSwagger': this.generateSwagger,
'before:offline:start:init': this.predeploy,
'before:package:cleanup': this.predeploy,
};
}
registerOptions = () => {
this.serverless.configSchemaHandler?.defineFunctionEventProperties('aws', 'http', {
properties: {
exclude: {
type: 'boolean',
nullable: true,
},
swaggerTags: {
type: 'array',
nullable: true,
items: { type: 'string' },
},
responses: {
type: 'object',
nullable: true,
additionalProperties: {
anyOf: [
{
type: 'string',
},
{
type: 'object',
required: [],
properties: {
description: {
type: 'string',
},
bodyType: {
type: 'string',
},
},
},
],
},
},
headerParameters: {
type: 'object',
nullable: true,
required: [],
additionalProperties: {
type: 'object',
required: ['required', 'type'],
properties: {
required: {
type: 'boolean',
},
type: {
type: 'string',
enum: ['string', 'integer'],
},
description: {
type: 'string',
nullable: true,
},
minimum: {
type: 'number',
nullable: true,
},
},
},
},
queryStringParameters: {
type: 'object',
nullable: true,
required: [],
additionalProperties: {
type: 'object',
required: ['required', 'type'],
properties: {
required: {
type: 'boolean',
},
type: {
type: 'string',
enum: ['string', 'integer'],
},
description: {
type: 'string',
nullable: true,
},
minimum: {
type: 'number',
nullable: true,
},
arrayItemsType: {
type: 'number',
nullable: true,
},
},
},
},
},
required: [],
});
};
predeploy = async () => {
const generateSwaggerOnDeploy =
this.serverless.service.custom?.autoswagger?.generateSwaggerOnDeploy;
if (generateSwaggerOnDeploy === undefined || generateSwaggerOnDeploy) {
await this.generateSwagger();
}
this.addEndpointsAndLambda();
};
gatherSwaggerFiles = async () => {
const swaggerFiles = this.serverless.service.custom?.autoswagger?.swaggerFiles;
if (!swaggerFiles || swaggerFiles.length < 1) {
return;
}
await Promise.all(
swaggerFiles.map(async (filepath) => {
const fileData = fs.readFileSync(filepath, 'utf8');
const jsonData = JSON.parse(fileData);
const { paths = {}, definitions = {}, ...swagger } = jsonData;
this.swagger = {
...this.swagger,
...swagger,
paths: {
...this.swagger.paths,
...paths,
},
definitions: {
...this.swagger.definitions,
...definitions,
},
};
})
);
};
gatherTypes = async () => {
// get the details from the package.json? for info
this.swagger.info.title = this.serverless.service.service;
const reader = getTypeScriptReader();
const writer = getOpenApiWriter({
format: 'json',
title: this.serverless.service.service,
version: 'v1',
schemaVersion: '2.0',
});
const { convert } = makeConverter(reader, writer);
try {
const typeLocationOverride = this.serverless.service.custom?.autoswagger?.typefiles;
const typesFile = typeLocationOverride || ['./src/types/api-types.d.ts'];
await Promise.all(
typesFile.map(async (filepath) => {
try {
const fileData = fs.readFileSync(filepath, 'utf8');
const { data } = await convert({ data: fileData });
// change the #/components/schema to #/definitions
const definitionsData = data.replace(/\/components\/schemas/g, '/definitions');
const definitions: { [key: string]: Definition } =
JSON.parse(definitionsData).components.schemas;
if (data.includes('anyOf')) {
// anyOf caused some issues with certain swagger configs
console.log('includes anyOf');
// const newDef = Object.values(definition).map(recursiveFixAnyOf);
}
this.swagger.definitions = {
...this.swagger.definitions,
...definitions,
};
} catch (error) {
console.log(`couldn't read types from file: ${filepath}`);
return;
}
})
);
// TODO change this to store these as temporary and only include definitions used elsewhere.
} catch (error) {
this.serverless.cli.log('unable to get types', error);
}
};
generateSecurity = (): void => {
const apiKeyName = this.serverless.service.custom?.autoswagger?.apiKeyName;
if (apiKeyName) {
const securityDefinitions: Record<string, SecurityDefinition> = {};
securityDefinitions[apiKeyName] = {
type: 'apiKey',
name: apiKeyName,
in: 'header',
};
this.swagger = { ...this.swagger, securityDefinitions };
} else {
this.swagger = { ...this.swagger, securityDefinitions: undefined };
}
};
generateSwagger = async () => {
await this.gatherSwaggerFiles();
await this.gatherTypes();
this.generateSecurity();
this.generatePaths();
this.serverless.cli.log(`Creating your Swagger File now`);
// TODO enable user to specify swagger file path. also needs to update the swagger json endpoint.
await fs.copy('./node_modules/serverless-auto-swagger/dist/resources', './swagger');
if (this.serverless.service.provider.runtime.includes('python')) {
const swaggerStr = JSON.stringify(this.swagger, null, 2)
.replace(/true/g, 'True')
.replace(/false/g, 'False');
let swaggerPythonString = `# this file was generated by serverless-auto-swagger`;
swaggerPythonString += `\ndocs = ${swaggerStr}`;
await writeFile('./swagger/swagger.py', swaggerPythonString);
} else {
await fs.copy('./node_modules/serverless-auto-swagger/dist/resources', './swagger', {
filter: (src) => src.slice(-2) === 'js',
});
const swaggerJavaScriptString = `// this file was generated by serverless-auto-swagger
module.exports = ${JSON.stringify(this.swagger, null, 2)};`;
await writeFile('./swagger/swagger.js', swaggerJavaScriptString);
}
};
addEndpointsAndLambda = () => {
this.serverless.service.functions = {
...this.serverless.service.functions,
...swaggerFunctions(this.serverless),
};
};
generatePaths = () => {
const functions = this.serverless.service.functions;
Object.entries(functions).forEach(([functionName, config]) => {
const events = config.events || [];
events
.filter((event) => {
if (!((event as HttpEvent).http || (event as HttpApiEvent).httpApi)) {
return false;
}
const http = (event as HttpEvent).http || (event as HttpApiEvent).httpApi;
if (typeof http === 'string') {
return false;
}
return !http.exclude;
})
.forEach((event) => {
let http = (event as HttpEvent).http || (event as HttpApiEvent).httpApi;
if (typeof http === 'string') {
// TODO they're using the shorthand - parse that into object.
return;
}
let path = http.path;
if (path[0] !== '/') path = `/${path}`;
if (!this.swagger.paths[path]) {
this.swagger.paths[path] = {};
}
this.swagger.paths[path][http.method] = {
summary: http.summary || functionName,
description: http.description ?? '',
tags: http.swaggerTags,
operationId: functionName,
consumes: ['application/json'],
produces: ['application/json'],
parameters: this.httpEventToParameters(http),
responses: this.formatResponses(http.responseData ?? http.responses),
};
const apiKeyName = this.serverless.service.custom?.autoswagger?.apiKeyName;
let security: MethodSecurity[] = [];
if (apiKeyName) {
const methodSecurity: MethodSecurity = {};
methodSecurity[apiKeyName] = [];
security.push(methodSecurity);
}
if (security.length) {
this.swagger.paths[path][http.method].security = security;
}
});
});
};
formatResponses = (responseData: HttpResponses | undefined) => {
if (!responseData) {
// could throw error
return {
200: {
description: '200 response',
},
};
}
const formatted: { [key: string]: Response } = {};
Object.entries(responseData).forEach(([statusCode, responseDetails]) => {
if (typeof responseDetails == 'string') {
formatted[statusCode] = {
description: responseDetails,
};
return;
}
let response: Response = {
description: responseDetails.description || `${statusCode} response`,
};
if (responseDetails.bodyType) {
response.schema = { $ref: `#/definitions/${responseDetails.bodyType}` };
}
formatted[statusCode] = response;
});
return formatted;
};
// httpEventToSecurity = (http: EitherHttpEvent) => {
// // TODO - add security sections
// return undefined
// }
httpEventToParameters = (httpEvent: EitherHttpEvent) => {
const parameters = [];
if (httpEvent.bodyType) {
parameters.push({
in: 'body',
name: 'body',
description: 'Body required in the request',
required: true,
schema: {
$ref: `#/definitions/${httpEvent.bodyType}`,
},
});
}
if (
!(httpEvent as FullHttpEvent['http']).parameters?.path &&
httpEvent.path.match(/[^{\}]+(?=})/g)
) {
const pathParameters = httpEvent.path.match(/[^{\}]+(?=})/g) || [];
pathParameters.forEach((param) => {
parameters.push({
name: param,
in: 'path',
required: true,
type: 'string',
});
});
}
if ((httpEvent as FullHttpEvent['http']).parameters?.path) {
const rawPathParams = (httpEvent as FullHttpEvent['http']).parameters?.path || {};
let pathParameters = httpEvent.path.match(/[^{\}]+(?=})/g) || [];
Object.entries(rawPathParams).forEach(([param, required]) => {
parameters.push({
name: param,
in: 'path',
required,
type: 'string',
});
pathParameters = removeStringFromArray(pathParameters, param);
});
pathParameters.forEach((param) => {
parameters.push({
name: param,
in: 'path',
required: true,
type: 'string',
});
});
}
if ((httpEvent as FullHttpEvent['http']).headerParameters) {
const rawHeaderParams = (httpEvent as FullHttpEvent['http']).headerParameters!;
Object.entries(rawHeaderParams).forEach(([param, data]) => {
parameters.push({
in: 'header',
name: param,
required: data.required ?? false,
type: data.type || 'string',
description: data.description,
});
});
}
if ((httpEvent as FullHttpEvent['http']).queryStringParameters) {
const rawQueryParams = (httpEvent as FullHttpEvent['http']).queryStringParameters!;
Object.entries(rawQueryParams).forEach(([param, data]) => {
parameters.push({
in: 'query',
name: param,
type: data.type || 'string',
description: data.description,
required: data.required ?? false,
...(data.type === 'array'
? {
items: { type: data.arrayItemsType },
collectionFormat: 'multi',
}
: {}),
});
});
}
return parameters;
};
}
type EitherHttpEvent = FullHttpEvent['http'] | FullHttpApiEvent['httpApi'];
export default ServerlessAutoSwagger;