-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.js
More file actions
executable file
·395 lines (372 loc) · 11.3 KB
/
Copy pathcli.js
File metadata and controls
executable file
·395 lines (372 loc) · 11.3 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
#!/usr/bin/env node
const prompts = require('prompts')
const path = require('path')
const fs = require('fs-extra')
const ejs = require('ejs')
const copy = require('recursive-copy')
const concat = require('concat-stream')
const joiMachine = require('joi-machine')
const standard = require('standard')
const yargs = require('yargs')
const debug = require('debug')('m10-cli')
const JOI_BLANK_TEMPLATE = fs
.readFileSync(path.join(__dirname, './templates/joi-blank'))
.toString()
// args
const argv = yargs
.command('new <dir>', 'create a new m10 based project')
.command(
'add <type>',
'add a new route/middleware/validation to this project',
yargs => {
yargs.choices('type', ['crud', 'route'])
}
)
.describe(
'type',
'scaffold type, `route` (handler+validation) / `crud` scaffold CRUD files'
)
.example('$0 new folder-name')
.example('$0 add route')
.help()
.demandCommand(1).argv
debug('argv parse', argv)
// return pretty error without stacktrace for pre-defined errors
function cleanError (msg) {
console.error('Error: ' + msg)
return process.exit(1)
}
async function main () {
function onCancel (prompt, response) {
console.log('Exiting...')
process.exit(0)
}
if (argv.dir && argv._[0] == 'new') {
let pathDir = path.resolve(argv.dir)
let dirExists = true
try {
fs.lstatSync(pathDir).isDirectory()
dirExists = true
} catch (e) {
dirExists = false
}
if (dirExists === true) {
return cleanError(
`Directory ${pathDir} already exists, please delete it and try again or choose a different one`
)
}
let cleanRegex = /[^\w.\-\_]+/g
let cleanProjectName = argv.dir.replace(cleanRegex, '-')
console.log(`> Folder: ${pathDir}`)
let setup = await prompts(
[
{
type: 'text',
name: 'projectName',
message: 'Project name',
initial: cleanProjectName,
validate: value =>
value.match(cleanRegex) === null
? true
: 'Only alphanumeric . - _ allowed'
},
{
type: 'confirm',
name: 'mongodb',
message: 'Add mongodb support?'
}
],
{ onCancel }
)
// copy
await copy(path.join(__dirname, './templates/starter'), pathDir)
// change custom files with options
let filesToCompile = ['package.json', 'app.js', 'README.md']
for (let i = 0; i < filesToCompile.length; i++) {
let f = filesToCompile[i]
let p = `${pathDir}/${f}`
let r = await ejs.renderFile(p, setup)
fs.writeFileSync(p, r)
}
console.log('> Done!\nNow run:')
console.log(`cd ${pathDir} && npm install`)
} else if (argv._[0] == 'add') {
debug('add command')
// TODO: look for generic config[, .json5, .js]
let configFilePath = path.resolve('./config.json')
let configFileExists = fs.existsSync(configFilePath)
// TODO: allow user to choose config file if not found
if (configFileExists == false) {
return cleanError(`Config file not found in ${configFilePath}`)
}
if (argv.type == 'route') {
debug('route type')
let setup = await prompts(
[
{
type: 'text',
name: 'routeName',
message: 'Route name',
initial: 'todo',
validate: value =>
value.match(/[^\w]+/g) === null
? true
: 'Only alphanumeric allowed'
},
{
type: 'text',
name: 'routePath',
message: 'Route path',
initial: prev => '/' + prev,
validate: value =>
value.startsWith('/') === true && value.match(/[^\w/]+/g) === null
? true
: 'Route path must starts with / and contain only alphanumeric characters (e.g. /todo)'
},
{
type: 'select',
name: 'httpMethod',
message: 'Choose HTTP method',
choices: [
{ value: 'GET' },
{ value: 'POST' },
{ value: 'PUT' },
{ value: 'DELETE' },
{ value: 'PATCH' },
{ value: 'HEAD' },
{ value: 'CONNECT' },
{ value: 'OPTIONS' },
{ value: 'TRACE' }
],
initial: 0
},
{
type: 'toggle',
name: 'generateHandler',
message: 'Generate handler for this route?',
initial: true,
active: 'yes',
inactive: 'no'
},
{
type: 'toggle',
name: 'generateValidation',
message: 'Generate Joi validation for this route?',
initial: true,
active: 'yes',
inactive: 'no'
},
{
type: prev => (prev == true ? 'toggle' : null),
name: 'provideJsonJoi',
message:
'Do you have a JSON that describes a valid input? (we will generate a Joi validation from this)',
initial: false,
active: 'yes',
inactive: 'no'
},
{
type: prev => (prev == true ? 'text' : null),
name: 'validationStarter',
message:
'Enter a JSON describing a valid input - Press enter to skip',
validate: value => {
if (value === '') return true
try {
JSON.parse(value)
return true
} catch (e) {
return 'Provide a valid JSON or skip this step by deleting and pressing enter'
}
}
}
],
{ onCancel }
)
setup.configFilePath = configFilePath
if (setup.provideJsonJoi == true && setup.validationStarter !== '') {
let jsonObj = JSON.parse(setup.validationStarter)
let generator = joiMachine.obj()
generator.pipe(
concat({ encoding: 'string' }, continueAdd.bind(this, setup))
)
generator.write(jsonObj)
generator.end()
} else {
continueAdd(setup)
}
} else if (argv.type == 'crud') {
debug('crud type')
let setup = await prompts(
[
{
type: 'text',
name: 'name',
message: 'CRUD resource name',
initial: 'todo',
validate: value =>
value.match(/[^\w]+/g) === null
? true
: 'Only alphanumeric allowed'
},
{
type: 'toggle',
name: 'provideJsonJoi',
message:
'Do you have a JSON that describes a valid resource input (for insert/definition)? (we will generate a Joi validation from this)',
initial: false,
active: 'yes',
inactive: 'no'
},
{
type: prev => (prev == true ? 'text' : null),
name: 'validationStarter',
message:
'Enter a JSON describing a valid input - Press enter to skip',
validate: value => {
if (value === '') return true
try {
JSON.parse(value)
return true
} catch (e) {
return 'Provide a valid JSON or skip this step by deleting and pressing enter'
}
}
}
],
{ onCancel }
)
setup.configFilePath = configFilePath
if (setup.provideJsonJoi == true && setup.validationStarter !== '') {
let jsonObj = JSON.parse(setup.validationStarter)
let generator = joiMachine.obj()
generator.pipe(
concat({ encoding: 'string' }, continueCrudAdd.bind(this, setup))
)
generator.write(jsonObj)
generator.end()
} else {
continueCrudAdd(setup)
}
}
} else {
yargs.showHelp()
return
}
}
function getJoiDefinition (data, httpMethod) {
let joiDefinition = JOI_BLANK_TEMPLATE
if (data) {
joiDefinition = data
.substring(0, data.length - 2)
.replace('Joi.object().keys({', '')
}
if (httpMethod && ['POST', 'PUT'].indexOf(httpMethod) > -1) {
joiDefinition = '{body:{' + joiDefinition + '}}'
} else joiDefinition = '{query:{' + joiDefinition + '}}'
return joiDefinition
}
async function continueAdd (setup, data) {
let joiDefinition = getJoiDefinition(data, setup.httpMethod)
await compileAndSave(
'./templates/route/manager.js',
setup.routeName + '.js',
Object.assign(setup, { joiDefinition })
)
// update config
let currentConfig = getConfig(setup.configFilePath)
currentConfig.routes.push({
path: setup.routePath,
method: setup.httpMethod,
manager: './' + setup.routeName + '.js'
})
saveConfig(setup.configFilePath, currentConfig)
console.log(
`Done, config file updated and route and validation generated as manager (one file):\n${dest}`
)
}
async function compileAndSave (from, to, setup) {
debug('compile and save', from, to, setup)
let fromPath = path.join(__dirname, from)
debug('fromPath', fromPath)
let compiledFile = await ejs.renderFile(fromPath, setup)
debug('ejs compile output', compiledFile)
let destPath = path.join('./', to)
// lint only javascript
if (to.endsWith('.js')) {
// TODO: add a try-catch and handle fail
// lint js
let lintFile = standard.lintTextSync(compiledFile, { fix: true })
debug('lint file output', lintFile)
let lintedJs = lintFile.results[0].output
compiledFile = lintedJs
}
// ensure directories exist
fs.ensureFileSync(destPath)
// save file
fs.writeFileSync(destPath, compiledFile)
}
function saveConfig (path, updatedConfig) {
fs.writeFileSync(path, JSON.stringify(updatedConfig, null, 4))
return true
}
function getConfig (path) {
let currentConfig = JSON.parse(fs.readFileSync(path).toString())
return currentConfig
}
async function continueCrudAdd (setup, data) {
setup.joiDefinition = data
? data
: '/* Joi.object().keys({name: Joi.string()}) */'
// handler file
const handlerPath = 'handler/' + setup.name + '.js'
await compileAndSave('./templates/crud/handler/index.js', handlerPath, setup)
// validation file
const schemaPath = 'schema/' + setup.name + '.js'
await compileAndSave('./templates/crud/schema/index.js', schemaPath, setup)
// update config
// TODO: handle fail
let currentConfig = getConfig(setup.configFilePath)
const crudSpec = {
basePah: `/${setup.name}`,
routesToCreate: [
{
extension: 'insertOne',
method: 'POST'
},
{
extension: 'findOne',
method: 'GET',
appendPath: '/:id'
},
{
extension: 'findAll',
method: 'GET'
},
{
extension: 'updateOne',
method: 'PUT',
appendPath: '/:id'
},
{
extension: 'deleteOne',
method: 'DELETE',
appendPath: '/:id'
}
]
}
crudSpec.routesToCreate.forEach(r => {
currentConfig.routes.push({
path: crudSpec.basePah + (r.appendPath ? r.appendPath : ''),
method: r.method,
handler: `./${handlerPath.replace('.js', '')}.${r.extension}`,
validation: `./${schemaPath.replace('.js', '')}.${r.extension}`
})
})
// TODO: handle fail
saveConfig(setup.configFilePath, currentConfig)
console.log(
`Done, config file updated and files generated\n${schemaPath}\n${handlerPath}`
)
}
main()