-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcoercion.ts
432 lines (404 loc) · 11.3 KB
/
coercion.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
import {
type BaseIssue,
type GenericSchema,
type GenericSchemaAsync,
type PipeItem,
type SchemaWithPipe,
type SchemaWithPipeAsync,
nullish,
nullishAsync,
optional,
optionalAsync,
pipe,
pipeAsync,
transform as vTransform,
unknown as valibotUnknown,
} from "valibot";
/**
* Helpers for coercing string value
* Modify the value only if it's a string, otherwise return the value as-is
*/
export function coerceString(
value: unknown,
transform?: (text: string) => unknown,
) {
if (typeof value !== "string") {
return value;
}
if (value === "") {
return undefined;
}
if (typeof transform !== "function") {
return value;
}
try {
return transform(value);
} catch {
return undefined;
}
}
/**
* Reconstruct the provided schema with additional preprocessing steps
* This coerce empty values to undefined and transform strings to the correct type
* @param type The schema to be coerced
* @param transform The transformation function
* @returns The coerced schema
*/
function coerce<T extends GenericSchema | GenericSchemaAsync>(
type: T,
transform?: (text: string) => unknown,
) {
// `expects` is required to generate error messages for `TupleSchema`, so it is passed to `UnkonwSchema` for coercion.
const unknown = { ...valibotUnknown(), expects: type.expects };
const transformFunction = (output: unknown) =>
type.type === "blob" || type.type === "file"
? coerceFile(output)
: coerceString(output, transform);
if (type.async) {
return pipeAsync(unknown, vTransform(transformFunction), type);
}
return pipe(unknown, vTransform(transformFunction), type);
}
/**
* Helpers for coercing array value
* Modify the value only if it's an array, otherwise return the value as-is
*/
function coerceArray<T extends GenericSchema | GenericSchemaAsync>(type: T) {
// `expects` is required to generate error messages for `TupleSchema`, so it is passed to `UnkonwSchema` for coercion.
const unknown = { ...valibotUnknown(), expects: type.expects };
const transformFunction = (output: unknown): unknown => {
if (Array.isArray(output)) {
return output;
}
if (
typeof output === "undefined" ||
typeof coerceFile(coerceString(output)) === "undefined"
) {
return [];
}
return [output];
};
if (type.async) {
return pipeAsync(unknown, vTransform(transformFunction), type);
}
return pipe(unknown, vTransform(transformFunction), type);
}
/**
* Helpers for coercing file
* Modify the value only if it's a file, otherwise return the value as-is
*/
function coerceFile(file: unknown) {
if (
typeof File !== "undefined" &&
file instanceof File &&
file.name === "" &&
file.size === 0
) {
return undefined;
}
return file;
}
/**
* If a pipe is assigned by referencing the original schema, convert it to assign the original pipe to the coerced schema.
* @param originalSchema The original schema
* @param coercionSchema The schema to be coerced
* @returns The coerced schema with the original pipe
*/
function generateReturnSchema<
T extends GenericSchema | GenericSchemaAsync,
E extends
| GenericSchema
| GenericSchemaAsync
| SchemaWithPipe<
[GenericSchema, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>
| SchemaWithPipeAsync<
[
GenericSchema | GenericSchemaAsync,
...PipeItem<unknown, unknown, BaseIssue<unknown>>[],
]
>,
>(
originalSchema:
| T
| (T extends GenericSchema
? SchemaWithPipe<
[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>
: SchemaWithPipeAsync<
[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>),
coercionSchema: E,
) {
if ("pipe" in originalSchema) {
if (originalSchema.async && coercionSchema.async) {
return pipeAsync(coercionSchema, ...originalSchema.pipe.slice(1));
}
// @ts-expect-error
return pipe(coercionSchema, ...originalSchema.pipe.slice(1));
}
return coercionSchema;
}
/**
* Generate a wrapped schema with coercion
* @param type The schema to be coerced
* @param originalSchema The original schema
* @param schemaType The schema type
* @returns The coerced schema
*/
function generateWrappedSchema<T extends GenericSchema | GenericSchemaAsync>(
type: T,
originalSchema: T,
schemaType?: "nullish" | "optional",
) {
// @ts-expect-error
const { coerced, schema: wrapSchema } = enableTypeCoercion(type.wrapped);
if (coerced) {
// `expects` is required to generate error messages for `TupleSchema`, so it is passed to `UnkonwSchema` for coercion.
const unknown = { ...valibotUnknown(), expects: type.expects };
if (type.async) {
switch (schemaType) {
case "nullish":
return {
coerced: false,
schema: nullishAsync(pipeAsync(unknown, wrapSchema.pipe[1], type)),
};
case "optional":
return {
coerced: false,
schema: optionalAsync(pipeAsync(unknown, wrapSchema.pipe[1], type)),
};
default:
return {
coerced,
schema: pipeAsync(unknown, wrapSchema.pipe[1], type),
};
}
}
switch (schemaType) {
case "nullish":
return {
coerced: false,
schema: nullish(pipe(unknown, wrapSchema.pipe[1], type)),
};
case "optional":
return {
coerced: false,
schema: optional(pipe(unknown, wrapSchema.pipe[1], type)),
};
default:
return {
coerced,
schema: pipe(unknown, wrapSchema.pipe[1], type),
};
}
}
const wrappedSchema = {
...originalSchema,
// @ts-expect-error
wrapped: enableTypeCoercion(originalSchema.wrapped).schema,
};
return {
coerced: false,
schema: generateReturnSchema(type, wrappedSchema),
};
}
/**
* Reconstruct the provided schema with additional preprocessing steps
* This coerce empty values to undefined and transform strings to the correct type
*/
export function enableTypeCoercion<
T extends GenericSchema | GenericSchemaAsync,
>(
type:
| T
| (T extends GenericSchema
? SchemaWithPipe<
[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>
: SchemaWithPipeAsync<
[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>),
): {
coerced: boolean;
schema:
| ReturnType<typeof coerce>
| ReturnType<typeof generateReturnSchema>
| (T extends GenericSchema
? SchemaWithPipe<
[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>
: SchemaWithPipeAsync<
[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>);
} {
const originalSchema = "pipe" in type ? type.pipe[0] : type;
switch (type.type) {
case "string":
case "literal":
case "enum":
case "undefined": {
return { coerced: true, schema: coerce(type) };
}
case "number": {
return { coerced: true, schema: coerce(type, Number) };
}
case "boolean": {
return {
coerced: true,
schema: coerce(type, (text) => (text === "on" ? true : text)),
};
}
case "date": {
return {
coerced: true,
schema: coerce(type, (timestamp) => {
const date = new Date(timestamp);
if (Number.isNaN(date.getTime())) {
return timestamp;
}
return date;
}),
};
}
case "bigint": {
return { coerced: true, schema: coerce(type, BigInt) };
}
case "file":
case "blob": {
return { coerced: true, schema: coerce(type) };
}
case "array": {
const arraySchema = {
...originalSchema,
// @ts-expect-error
item: enableTypeCoercion(originalSchema.item).schema,
};
return {
coerced: false,
schema: generateReturnSchema(type, coerceArray(arraySchema)),
};
}
case "exact_optional": {
// @ts-expect-error
const { schema: wrapSchema } = enableTypeCoercion(type.wrapped);
const exactOptionalSchema = {
...type,
wrapped: wrapSchema,
};
return {
coerced: false,
schema: generateReturnSchema(type, exactOptionalSchema),
};
}
case "nullish": {
return generateWrappedSchema(type, originalSchema, type.type);
}
case "optional": {
return generateWrappedSchema(type, originalSchema, type.type);
}
case "undefinedable":
case "nullable":
case "non_optional":
case "non_nullish":
case "non_nullable": {
return generateWrappedSchema(type, originalSchema);
}
case "union":
case "intersect": {
const unionSchema = {
...originalSchema,
// @ts-expect-error
options: originalSchema.options.map(
// @ts-expect-error
(option) => enableTypeCoercion(option as GenericSchema).schema,
),
};
return {
coerced: false,
schema: generateReturnSchema(type, unionSchema),
};
}
case "variant": {
const variantSchema = {
...originalSchema,
// @ts-expect-error
options: originalSchema.options.map(
// @ts-expect-error
(option) => enableTypeCoercion(option as GenericSchema).schema,
),
};
return {
coerced: false,
schema: generateReturnSchema(type, variantSchema),
};
}
case "tuple": {
const tupleSchema = {
...originalSchema,
// @ts-expect-error
items: originalSchema.items.map(
// @ts-expect-error
(option) => enableTypeCoercion(option).schema,
),
};
return {
coerced: false,
schema: generateReturnSchema(type, tupleSchema),
};
}
case "tuple_with_rest": {
const tupleWithRestSchema = {
...originalSchema,
// @ts-expect-error
items: originalSchema.items.map(
// @ts-expect-error
(option) => enableTypeCoercion(option).schema,
),
// @ts-expect-error
rest: enableTypeCoercion(originalSchema.rest).schema,
};
return {
coerced: false,
schema: generateReturnSchema(type, tupleWithRestSchema),
};
}
case "loose_object":
case "strict_object":
case "object": {
const objectSchema = {
...originalSchema,
entries: Object.fromEntries(
// @ts-expect-error
Object.entries(originalSchema.entries).map(([key, def]) => [
key,
enableTypeCoercion(def as GenericSchema).schema,
]),
),
};
return {
coerced: false,
schema: generateReturnSchema(type, objectSchema),
};
}
case "object_with_rest": {
const objectWithRestSchema = {
...originalSchema,
entries: Object.fromEntries(
// @ts-expect-error
Object.entries(originalSchema.entries).map(([key, def]) => [
key,
enableTypeCoercion(def as GenericSchema).schema,
]),
),
// @ts-expect-error
rest: enableTypeCoercion(originalSchema.rest).schema,
};
return {
coerced: false,
schema: generateReturnSchema(type, objectWithRestSchema),
};
}
}
return { coerced: true, schema: coerce(type) };
}