-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathgenerator.js
More file actions
503 lines (448 loc) · 14.9 KB
/
generator.js
File metadata and controls
503 lines (448 loc) · 14.9 KB
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
492
493
494
495
496
497
498
499
500
501
502
503
/**
* This module generates a code skeleton for an API using OpenAPI.
* @module codegen
*/
const os = require('os');
const path = require('path');
const fs = require('fs');
const Handlebars = require('handlebars');
const _ = require('lodash');
const beautifier = require('./beautifier');
const xfs = require('fs.extra');
const randomName = require('project-name-generator');
const registerPartial = require('./register-partial');
const bundler = require('./bundler');
const yellow = text => `\x1b[33m${text}\x1b[0m`;
const findRemoveSync = require('find-remove');
const codegen = module.exports;
const HELPERS_DIRNAME = '.helpers';
const PARTIALS_DIRNAME = '.partials';
/**
* Deletes all matching subfolders in target directory
*
* @param {Object} config Configuration options
* @returns {Promise}
*/
const deleteFolders = config => new Promise((resolve, reject) => {
try {
if (config.deleteFolders) {
console.warn(yellow(`Deleting all subfolders named '${config.deleteFolders}' in ouput directory '${config.target_dir}'`));
findRemoveSync(config.target_dir, {dir: config.deleteFolders});
}
resolve();
} catch (e) {
reject(e);
}
});
/**
* Generates a file.
*
* @private
* @param {Object} options
* @param {String} options.templates_dir Directory where the templates live.
* @param {String} options.target_dir Directory where the file will be generated.
* @param {String} options.file_name Name of the generated file.
* @param {String} options.root Root directory.
* @param {Object} options.data Data to pass to the template.
* @return {Promise}
*/
const generateFile = options => new Promise((resolve, reject) => {
const templates_dir = options.templates_dir;
const target_dir = options.target_dir;
const file_name = options.file_name;
const root = options.root;
const data = options.data;
fs.readFile(path.resolve(root, file_name), 'utf8', (err, content) => {
if (err) return reject(err);
try {
const template = Handlebars.compile(content);
const parsed_content = template(data);
const template_path = path.relative(templates_dir, path.resolve(root, file_name));
const generated_path = path.resolve(target_dir, template_path).replace(/.hbs$/, '');
// WIP check here for existing?
const skipFile = data.skipExistingFiles && fs.existsSync(generated_path);
if (!skipFile) {
fs.writeFile(generated_path, parsed_content, 'utf8', (err) => {
if (err) return reject(err);
resolve();
});
}
else {
console.warn(yellow(`Skipping file: ${generated_path}`));
resolve();
}
} catch (e) {
reject(e);
}
});
});
/**
* Generates a file for every operation.
*
* @param config
* @param operation
* @param operation_name
* @returns {Promise}
*/
const generateOperationFile = (config, operation, operation_name) => new Promise((resolve, reject) => {
fs.readFile(path.join(config.root, config.file_name), 'utf8', (err, data) => {
if (err) return reject(err);
const escaped_templates_dir = config.templates_dir.replace(/([.*+?^$|(){}\[\]])/mg, "\\$1");
const subdir = config.root
.replace(new RegExp(`${escaped_templates_dir}[/]?`),'')
.replace("$$path$$", _.kebabCase(operation_name));
const new_filename = config.file_name.replace('$$path$$', operation_name).replace(/.hbs$/, '');
const target_file = path.resolve(config.target_dir, subdir, new_filename);
const template = Handlebars.compile(data.toString());
const content = template({
openbrace: '{',
closebrace: '}' ,
operation_name: operation_name.replace(/[}{]/g, ''),
operation,
openapi: config.data.openapi
});
xfs.mkdirpSync(path.dirname(target_file));
fs.writeFile(target_file, content, 'utf8', (err) => {
if (err) return reject(err);
resolve();
});
});
});
/**
* Generates all the files for each operation by iterating over the operations.
*
* @param {Object} config Configuration options
* @returns {Promise}
*/
const generateOperationFiles = config => new Promise((resolve, reject) => {
const files = {};
_.each(config.data.openapi.paths, (path, path_name) => {
const operation_name = path.endpointName;
if (files[operation_name] === undefined) {
files[operation_name] = [];
}
path_name = path_name.replace(/}/g, '').replace(/{/g, ':');
files[operation_name].push({
path_name,
path,
subresource: (path_name.substring(operation_name.length+1) || '/').replace(/}/g, '').replace(/{/g, ':')
});
Promise.all(
_.map(files, (operation, operation_name) => generateOperationFile(config, operation, operation_name))
).then(resolve).catch(reject);
resolve();
});
});
/**
* Generates a file for every tag.
*
* @param config
* @param tag
* @param tag_name
* @returns {Promise}
*/
const generateTagFile = (config, tag, tag_name) => new Promise((resolve, reject) => {
fs.readFile(path.join(config.root, config.file_name), 'utf8', (err, data) => {
if (err) return reject(err);
const subdir = config.root.replace(new RegExp(`${config.templates_dir}[/]?`),'');
const new_filename = config.file_name.replace('$$tag$$', tag_name).replace(/.hbs$/, '').replace(/ /g, '_');
const target_file = path.resolve(config.target_dir, subdir, new_filename);
const template = Handlebars.compile(data.toString());
const content = template({
openbrace: '{',
closebrace: '}' ,
tag_name: tag_name.replace(/[}{]/g, ''),
tag: tag,
openapi: config.data.openapi
});
fs.writeFile(target_file, content, 'utf8', (err) => {
if (err) return reject(err);
resolve();
});
});
});
/**
* Generates all the files for each tag by iterating over the tags.
*
* @param {Object} config Configuration options
* @returns {Promise}
*/
const generateTagFiles = config => new Promise((resolve, reject) => {
const files = {};
if (config.data.openapi.tags) {
_.each(config.data.openapi.tags, (tag, tagIndex) => {
const tag_name = tag.name
if (files[tag_name] === undefined) {
files[tag_name] = [];
}
files[tag_name] = {
tag: tag
};
Promise.all(
_.map(files, (tag, tag_name) => generateTagFile(config, tag, tag_name))
).then(resolve).catch(reject);
resolve();
});
} else {
resolve();
}
});
/**
* Generates a file for component schema
*
* @param config
* @param schema
* @param schema_name
* @returns {Promise}
*/
const generateSchemaFile = (config, schema, schema_name) => new Promise((resolve, reject) => {
fs.readFile(path.join(config.root, config.file_name), 'utf8', (err, data) => {
if (err) return reject(err);
const subdir = config.root.replace(new RegExp(`${config.templates_dir}[/]?`),'');
const new_filename = config.file_name.replace('$$schema$$', schema_name).replace(/.hbs$/, '').replace(/ /g, '_');
const target_file = path.resolve(config.target_dir, subdir, new_filename);
const template = Handlebars.compile(data.toString());
const content = template({
openbrace: '{',
closebrace: '}' ,
schema_name: schema_name.replace(/[}{]/g, ''),
schema: schema,
openapi: config.data.openapi
});
fs.writeFile(target_file, content, 'utf8', (err) => {
if (err) return reject(err);
resolve();
});
});
});
/**
* Generates all the files for each schema by iterating over the component schemas.
*
* @param {Object} config Configuration options
* @returns {Promise}
*/
const generateSchemaFiles = config => new Promise((resolve, reject) => {
const files = {};
if (config.data.openapi.components.schemas) {
_.each(config.data.openapi.components.schemas, (schema, schemaIndex) => {
console.log(`Generating for ${schema.title}`);
const schema_name = schema.title
if (files[schema_name] === undefined) {
files[schema_name] = [];
}
files[schema_name] = {
schema: schema
};
});
Promise.all(
_.map(files, (schema, schema_name) => generateSchemaFile(config, schema, schema_name))
).then(resolve).catch(reject);
resolve();
} else {
resolve();
}
});
/**
* Generates the directory structure.
*
* @private
* @param {Object} config Configuration options
* @param {Object|String} config.openapi OpenAPI JSON or a string pointing to a OpenAPI file.
* @param {String} config.target_dir Absolute path to the directory where the files will be generated.
* @param {String} config.templates Absolute path to the templates that should be used.
* @return {Promise}
*/
const generateDirectoryStructure = config => new Promise((resolve, reject) => {
const target_dir = config.target_dir;
const templates_dir = config.templates;
xfs.mkdirpSync(target_dir);
const walker = xfs.walk(templates_dir, {
followLinks: false
});
walker.on('file', async (root, stats, next) => {
try {
if (stats.name.includes('$$path$$') || root.includes("$$path$$")) {
// this file should be handled for each in openapi.paths
await generateOperationFiles({
root,
templates_dir,
target_dir,
data: config,
file_name: stats.name
});
const template_path = path.relative(templates_dir, path.resolve(root, stats.name));
fs.unlink(path.resolve(target_dir, template_path), next);
} else if (stats.name.includes('$$tag$$')) {
// this file should be handled for each in openapi.tags
await generateTagFiles({
root,
templates_dir,
target_dir,
data: config,
file_name: stats.name
});
const template_path = path.relative(templates_dir, path.resolve(root, stats.name));
fs.unlink(path.resolve(target_dir, template_path), next);
} else if (stats.name.includes('$$schema$$')) {
// this file should be handled for each in openapi.components.schemas
console.log("Creating schemas doc");
await generateSchemaFiles({
root,
templates_dir,
target_dir,
data: config,
file_name: stats.name
});
const template_path = path.relative(templates_dir, path.resolve(root, stats.name));
fs.unlink(path.resolve(target_dir, template_path), next);
} else {
const file_path = path.relative(templates_dir, path.resolve(root, stats.name));
if (!file_path.startsWith(`${PARTIALS_DIRNAME}${path.sep}`) && !file_path.startsWith(`${HELPERS_DIRNAME}${path.sep}`)) {
// this file should only exist once.
await generateFile({
root,
templates_dir,
target_dir,
data: config,
file_name: stats.name
});
}
next();
}
} catch (e) {
reject(e);
}
});
walker.on('directory', async (root, stats, next) => {
try {
const dir_path = path.resolve(target_dir, path.relative(templates_dir, path.resolve(root, stats.name)));
if (
stats.name !== PARTIALS_DIRNAME &&
stats.name !== HELPERS_DIRNAME &&
!stats.name.includes("$$path$$")
) {
xfs.mkdirpSync(dir_path);
}
next();
} catch (e) {
reject(e);
}
});
walker.on('errors', (root, nodeStatsArray) => {
reject(nodeStatsArray);
});
walker.on('end', async () => {
resolve();
});
});
/**
* Register the template partials
*
* @private
* @param {Object} config Configuration options
* @param {String} config.templates Absolute path to the templates that should be used.
* @return {Promise}
*/
const registerHelpers = config => new Promise((resolve, reject) => {
const helpers_dir = path.resolve(config.templates, HELPERS_DIRNAME);
if (!fs.existsSync(helpers_dir)) return resolve();
const walker = xfs.walk(helpers_dir, {
followLinks: false
});
walker.on('file', async (root, stats, next) => {
try {
const file_path = path.resolve(config.templates, path.resolve(root, stats.name));
// If it's a module constructor, inject dependencies to ensure consistent usage in remote templates in other projects or plain directories.
const mod = require(file_path);
if (typeof mod === 'function') mod(Handlebars, _);
next();
} catch (e) {
reject(e);
}
});
walker.on('errors', (root, nodeStatsArray) => {
reject(nodeStatsArray);
});
walker.on('end', async () => {
resolve();
});
});
/**
* Register the template helpers
*
* @private
* @param {Object} config Configuration options
* @param {String} config.templates Absolute path to the templates that should be used.
* @return {Promise}
*/
const registerPartials = config => new Promise((resolve, reject) => {
const partials_dir = path.resolve(config.templates, PARTIALS_DIRNAME);
if (!fs.existsSync(partials_dir)) return resolve();
const walker = xfs.walk(partials_dir, {
followLinks: false
});
walker.on('file', async (root, stats, next) => {
try {
const file_path = path.resolve(config.templates, path.resolve(root, stats.name));
await registerPartial(file_path);
next();
} catch (e) {
reject(e);
}
});
walker.on('errors', (root, nodeStatsArray) => {
reject(nodeStatsArray);
});
walker.on('end', () => {
resolve();
});
});
const bundle = async (openapi, baseDir) => {
if (typeof openapi === 'string') {
try {
return await bundler(openapi, baseDir);
} catch (e) {
throw e;
}
} else if (typeof openapi !== 'object') {
throw new Error(`Could not find a valid OpenAPI definition: ${openapi}`);
}
};
/**
* Generates a code skeleton for an API given an OpenAPI file.
*
* @module codegen.generate
* @param {Object} config Configuration options
* @param {Object|String} config.openapi OpenAPI JSON or a string pointing to an OpenAPI file.
* @param {String} config.target_dir Path to the directory where the files will be generated.
* @return {Promise}
*/
codegen.generate = config => new Promise((resolve, reject) => {
bundle(config.openapi, config.base_dir)
.catch(reject)
.then((openapi) => {
openapi = beautifier(openapi, config);
const randomTitle = randomName().dashed;
config.openapi = openapi;
_.defaultsDeep(config, {
openapi: {
info: {
title: randomTitle
}
},
package: {
name: _.kebabCase(_.result(config, 'openapi.info.title', randomTitle))
},
target_dir: path.resolve(os.tmpdir(), 'openapi-generated'),
templates: path.resolve(__dirname, '../templates')
});
config.templates = `${config.templates}/${config.template}`;
async function start () {
await deleteFolders(config);
await registerHelpers(config);
await registerPartials(config);
await generateDirectoryStructure(config);
}
start().then(resolve).catch(reject);
});
});