forked from bcherny/json-schema-to-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.ts
386 lines (357 loc) · 10.2 KB
/
utils.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
import {deburr, isPlainObject, trim, upperFirst} from 'lodash'
import {basename, dirname, extname, normalize, sep, posix} from 'path'
import {JSONSchema, LinkedJSONSchema, Parent} from './types/JSONSchema'
// TODO: pull out into a separate package
export function Try<T>(fn: () => T, err: (e: Error) => any): T {
try {
return fn()
} catch (e) {
return err(e as Error)
}
}
// keys that shouldn't be traversed by the catchall step
const BLACKLISTED_KEYS = new Set([
'id',
'$defs',
'$id',
'$schema',
'title',
'description',
'default',
'multipleOf',
'maximum',
'exclusiveMaximum',
'minimum',
'exclusiveMinimum',
'maxLength',
'minLength',
'pattern',
'additionalItems',
'items',
'maxItems',
'minItems',
'uniqueItems',
'maxProperties',
'minProperties',
'required',
'additionalProperties',
'definitions',
'properties',
'patternProperties',
'dependencies',
'enum',
'type',
'allOf',
'anyOf',
'oneOf',
'not',
])
function traverseObjectKeys(
obj: Record<string, LinkedJSONSchema>,
callback: (schema: LinkedJSONSchema, key: string | null) => void,
processed: Set<LinkedJSONSchema>,
) {
Object.keys(obj).forEach(k => {
if (obj[k] && typeof obj[k] === 'object' && !Array.isArray(obj[k])) {
traverse(obj[k], callback, processed, k)
}
})
}
function traverseArray(
arr: LinkedJSONSchema[],
callback: (schema: LinkedJSONSchema, key: string | null) => void,
processed: Set<LinkedJSONSchema>,
) {
arr.forEach((s, k) => traverse(s, callback, processed, k.toString()))
}
export function traverse(
schema: LinkedJSONSchema,
callback: (schema: LinkedJSONSchema, key: string | null) => void,
processed = new Set<LinkedJSONSchema>(),
key?: string,
): void {
// Handle recursive schemas
if (processed.has(schema)) {
return
}
processed.add(schema)
callback(schema, key ?? null)
if (schema.anyOf) {
traverseArray(schema.anyOf, callback, processed)
}
if (schema.allOf) {
traverseArray(schema.allOf, callback, processed)
}
if (schema.oneOf) {
traverseArray(schema.oneOf, callback, processed)
}
if (schema.properties) {
traverseObjectKeys(schema.properties, callback, processed)
}
if (schema.patternProperties) {
traverseObjectKeys(schema.patternProperties, callback, processed)
}
if (schema.additionalProperties && typeof schema.additionalProperties === 'object') {
traverse(schema.additionalProperties, callback, processed)
}
if (schema.items) {
const {items} = schema
if (Array.isArray(items)) {
traverseArray(items, callback, processed)
} else {
traverse(items, callback, processed)
}
}
if (schema.additionalItems && typeof schema.additionalItems === 'object') {
traverse(schema.additionalItems, callback, processed)
}
if (schema.dependencies) {
if (Array.isArray(schema.dependencies)) {
traverseArray(schema.dependencies, callback, processed)
} else {
traverseObjectKeys(schema.dependencies as LinkedJSONSchema, callback, processed)
}
}
if (schema.definitions) {
traverseObjectKeys(schema.definitions, callback, processed)
}
if (schema.$defs) {
traverseObjectKeys(schema.$defs, callback, processed)
}
if (schema.not) {
traverse(schema.not, callback, processed)
}
// technically you can put definitions on any key
Object.keys(schema)
.filter(key => !BLACKLISTED_KEYS.has(key))
.forEach(key => {
const child = schema[key]
if (child && typeof child === 'object') {
traverseObjectKeys(child, callback, processed)
}
})
}
/**
* Eg. `foo/bar/baz.json` => `baz`
*/
export function justName(filename = ''): string {
return stripExtension(basename(filename))
}
/**
* Avoid appending "js" to top-level unnamed schemas
*/
export function stripExtension(filename: string): string {
return filename.replace(extname(filename), '')
}
/**
* Convert a string that might contain spaces or special characters to one that
* can safely be used as a TypeScript interface or enum name.
*/
export function toSafeString(string: string) {
// identifiers in javaScript/ts:
// First character: a-zA-Z | _ | $
// Rest: a-zA-Z | _ | $ | 0-9
return upperFirst(
// remove accents, umlauts, ... by their basic latin letters
deburr(string)
// replace chars which are not valid for typescript identifiers with whitespace
.replace(/(^\s*[^a-zA-Z_$])|([^a-zA-Z_$\d])/g, ' ')
// uppercase leading underscores followed by lowercase
.replace(/^_[a-z]/g, match => match.toUpperCase())
// remove non-leading underscores followed by lowercase (convert snake_case)
.replace(/_[a-z]/g, match => match.substr(1, match.length).toUpperCase())
// uppercase letters after digits, dollars
.replace(/([\d$]+[a-zA-Z])/g, match => match.toUpperCase())
// uppercase first letter after whitespace
.replace(/\s+([a-zA-Z])/g, match => trim(match.toUpperCase()))
// remove remaining whitespace
.replace(/\s/g, ''),
)
}
export function generateName(from: string, usedNames: Set<string>) {
let name = toSafeString(from)
if (!name) {
name = 'NoName'
}
// increment counter until we find a free name
if (usedNames.has(name)) {
let counter = 1
let nameWithCounter = `${name}${counter}`
while (usedNames.has(nameWithCounter)) {
nameWithCounter = `${name}${counter}`
counter++
}
name = nameWithCounter
}
usedNames.add(name)
return name
}
export function error(...messages: any[]): void {
if (!process.env.VERBOSE) {
return console.error(messages)
}
console.error(getStyledTextForLogging('red')?.('error'), ...messages)
}
type LogStyle = 'blue' | 'cyan' | 'green' | 'magenta' | 'red' | 'white' | 'yellow'
export function log(style: LogStyle, title: string, ...messages: unknown[]): void {
if (!process.env.VERBOSE) {
return
}
let lastMessage = null
if (messages.length > 1 && typeof messages[messages.length - 1] !== 'string') {
lastMessage = messages.splice(messages.length - 1, 1)
}
console.info(require('cli-color').whiteBright.bgCyan('debug'), getStyledTextForLogging(style)?.(title), ...messages)
if (lastMessage) {
console.dir(lastMessage, {depth: 6, maxArrayLength: 6})
}
}
function getStyledTextForLogging(style: LogStyle): ((text: string) => string) | undefined {
if (!process.env.VERBOSE) {
return
}
switch (style) {
case 'blue':
return require('cli-color').whiteBright.bgBlue
case 'cyan':
return require('cli-color').whiteBright.bgCyan
case 'green':
return require('cli-color').whiteBright.bgGreen
case 'magenta':
return require('cli-color').whiteBright.bgMagenta
case 'red':
return require('cli-color').whiteBright.bgRedBright
case 'white':
return require('cli-color').black.bgWhite
case 'yellow':
return require('cli-color').whiteBright.bgYellow
}
}
/**
* escape block comments in schema descriptions so that they don't unexpectedly close JSDoc comments in generated typescript interfaces
*/
export function escapeBlockComment(schema: JSONSchema) {
const replacer = '* /'
if (schema === null || typeof schema !== 'object') {
return
}
for (const key of Object.keys(schema)) {
if (key === 'description' && typeof schema[key] === 'string') {
schema[key] = schema[key]!.replace(/\*\//g, replacer)
}
}
}
/*
the following logic determines the out path by comparing the in path to the users specified out path.
For example, if input directory MultiSchema looks like:
MultiSchema/foo/a.json
MultiSchema/bar/fuzz/c.json
MultiSchema/bar/d.json
And the user wants the outputs to be in MultiSchema/Out, then this code will be able to map the inner directories foo, bar, and fuzz into the intended Out directory like so:
MultiSchema/Out/foo/a.json
MultiSchema/Out/bar/fuzz/c.json
MultiSchema/Out/bar/d.json
*/
export function pathTransform(outputPath: string, inputPath: string, filePath: string): string {
const inPathList = normalize(inputPath).split(sep)
const filePathList = dirname(normalize(filePath)).split(sep)
const filePathRel = filePathList.filter((f, i) => f !== inPathList[i])
return posix.join(posix.normalize(outputPath), ...filePathRel)
}
/**
* Removes the schema's `default` property if it doesn't match the schema's `type` property.
* Useful when parsing unions.
*
* Mutates `schema`.
*/
export function maybeStripDefault(schema: LinkedJSONSchema): LinkedJSONSchema {
if (!('default' in schema)) {
return schema
}
switch (schema.type) {
case 'array':
if (Array.isArray(schema.default)) {
return schema
}
break
case 'boolean':
if (typeof schema.default === 'boolean') {
return schema
}
break
case 'integer':
case 'number':
if (typeof schema.default === 'number') {
return schema
}
break
case 'string':
if (typeof schema.default === 'string') {
return schema
}
break
case 'null':
if (schema.default === null) {
return schema
}
break
case 'object':
if (isPlainObject(schema.default)) {
return schema
}
break
}
delete schema.default
return schema
}
/**
* Removes the schema's `$id`, `name`, and `description` properties
* if they exist.
* Useful when parsing intersections.
*
* Mutates `schema`.
*/
export function maybeStripNameHints(schema: JSONSchema): JSONSchema {
if ('$id' in schema) {
delete schema.$id
}
if ('description' in schema) {
delete schema.description
}
if ('name' in schema) {
delete schema.name
}
return schema
}
export function appendToDescription(existingDescription: string | undefined, ...values: string[]): string {
if (existingDescription) {
return `${existingDescription}\n\n${values.join('\n')}`
}
return values.join('\n')
}
export function isSchemaLike(schema: LinkedJSONSchema) {
if (!isPlainObject(schema)) {
return false
}
const parent = schema[Parent]
if (parent === null) {
return true
}
const JSON_SCHEMA_KEYWORDS = [
'$defs',
'allOf',
'anyOf',
'definitions',
'dependencies',
'enum',
'not',
'oneOf',
'patternProperties',
'properties',
'required',
]
if (JSON_SCHEMA_KEYWORDS.some(_ => parent[_] === schema)) {
return false
}
return true
}