@@ -128,9 +128,11 @@ export class ValidatorFactory {
128
128
this . options ?. typescriptValidators ?. typesImportPath ?? './types'
129
129
} "`;
130
130
131
- yield `import ${
132
- this . options ?. typescript ?. typeImports ? ' type ' : ' '
133
- } * as sanitizers from "./sanitizers"`;
131
+ if ( ! this . options ?. typescriptValidators ?. validatorsOnly ) {
132
+ yield `import ${
133
+ this . options ?. typescript ?. typeImports ? ' type ' : ' '
134
+ } * as sanitizers from "./sanitizers"`;
135
+ }
134
136
}
135
137
136
138
private readonly codes = new Set < string > ( ) ;
@@ -428,118 +430,119 @@ export class ValidatorFactory {
428
430
}
429
431
430
432
private * buildValidatedServiceWrappers ( ) : Iterable < string > {
431
- yield `export type ResponseBuilder<T> = (validationErrors: ValidationError[], err: any) => T` ;
432
- for ( const int of sort ( this . service . interfaces ) ) {
433
- const returnTypes = sort (
434
- Array . from (
435
- new Set (
436
- int . methods
437
- . map ( ( m ) =>
438
- getTypeByName ( this . service , m . returnType ?. typeName . value ) ,
439
- )
440
- . filter ( ( t ) : t is Type => ! ! t ) ,
433
+ if ( ! this . options ?. typescriptValidators ?. validatorsOnly ) {
434
+ yield `export type ResponseBuilder<T> = (validationErrors: ValidationError[], err: any) => T` ;
435
+ for ( const int of sort ( this . service . interfaces ) ) {
436
+ const returnTypes = sort (
437
+ Array . from (
438
+ new Set (
439
+ int . methods
440
+ . map ( ( m ) =>
441
+ getTypeByName ( this . service , m . returnType ?. typeName . value ) ,
442
+ )
443
+ . filter ( ( t ) : t is Type => ! ! t ) ,
444
+ ) ,
441
445
) ,
442
- ) ,
443
- ) ;
444
-
445
- const hasVoid = int . methods . some ( ( m ) => ! m . returnType ) ;
446
-
447
- const handlers = returnTypes . map (
448
- ( type ) =>
449
- `${ camel (
450
- `build_${ type . name . value } ` ,
451
- ) } : ResponseBuilder<${ buildTypeName ( type , 'types' ) } >`,
452
- ) ;
453
- if ( hasVoid ) {
454
- handlers . push ( 'buildVoid: ResponseBuilder<void>' ) ;
455
- }
456
-
457
- const handlersType = `{${ handlers . join ( ',' ) } }` ;
458
-
459
- const intName = buildInterfaceName ( int , 'types' ) ;
460
- yield `export class ${ pascal (
461
- `validated_${ int . name . value } _service` ,
462
- ) } implements ${ buildInterfaceName ( int , 'types' ) } {`;
463
- yield `constructor(private readonly service: ${ intName } , private readonly handlers: ${ handlersType } ){}` ;
464
- yield '' ;
465
- for ( const method of sort ( int . methods ) ) {
466
- const methodName = buildMethodName ( method ) ;
467
- const returnType = getTypeByName (
468
- this . service ,
469
- method . returnType ?. typeName . value ,
470
446
) ;
471
447
472
- const sanitize = ( call : string , isAsync : boolean ) : string => {
473
- if ( returnType ) {
474
- return `sanitizers.${ camel ( `sanitize_${ returnType . name . value } ` ) } (${
475
- isAsync ? 'await' : ''
476
- } ${ call } )`;
477
- } else {
478
- return call ;
479
- }
480
- } ;
448
+ const hasVoid = int . methods . some ( ( m ) => ! m . returnType ) ;
481
449
482
- const sanitizeAsync = ( call : string ) : string => {
483
- return sanitize ( call , true ) ;
484
- } ;
450
+ const handlers = returnTypes . map (
451
+ ( type ) =>
452
+ `${ camel (
453
+ `build_${ type . name . value } ` ,
454
+ ) } : ResponseBuilder<${ buildTypeName ( type , 'types' ) } >`,
455
+ ) ;
456
+ if ( hasVoid ) {
457
+ handlers . push ( 'buildVoid: ResponseBuilder<void>' ) ;
458
+ }
485
459
486
- const sanitizeSync = ( call : string ) : string => {
487
- return sanitize ( call , false ) ;
488
- } ;
460
+ const handlersType = `{${ handlers . join ( ',' ) } }` ;
489
461
490
- const handlerName = returnType
491
- ? `this.handlers.${ camel ( `build_${ returnType . name . value } ` ) } `
492
- : 'this.handlers.buildVoid' ;
462
+ const intName = buildInterfaceName ( int , 'types' ) ;
463
+ yield `export class ${ pascal (
464
+ `validated_${ int . name . value } _service` ,
465
+ ) } implements ${ buildInterfaceName ( int , 'types' ) } {`;
466
+ yield `constructor(private readonly service: ${ intName } , private readonly handlers: ${ handlersType } ){}` ;
467
+ yield '' ;
468
+ for ( const method of sort ( int . methods ) ) {
469
+ const methodName = buildMethodName ( method ) ;
470
+ const returnType = getTypeByName (
471
+ this . service ,
472
+ method . returnType ?. typeName . value ,
473
+ ) ;
493
474
494
- const hasParams = ! ! method . parameters . length ;
495
- const hasRequiredParams = method . parameters . some ( isRequired ) ;
496
- const paramDef = method . parameters . length
497
- ? `params${ hasRequiredParams ? '' : '?' } : ${ buildMethodParamsTypeName (
475
+ const sanitize = ( call : string , isAsync : boolean ) : string => {
476
+ if ( returnType ) {
477
+ return `sanitizers.${ camel (
478
+ `sanitize_${ returnType . name . value } ` ,
479
+ ) } (${ isAsync ? 'await' : '' } ${ call } )`;
480
+ } else {
481
+ return call ;
482
+ }
483
+ } ;
484
+
485
+ const sanitizeAsync = ( call : string ) : string => {
486
+ return sanitize ( call , true ) ;
487
+ } ;
488
+
489
+ const sanitizeSync = ( call : string ) : string => {
490
+ return sanitize ( call , false ) ;
491
+ } ;
492
+
493
+ const handlerName = returnType
494
+ ? `this.handlers.${ camel ( `build_${ returnType . name . value } ` ) } `
495
+ : 'this.handlers.buildVoid' ;
496
+
497
+ const hasParams = ! ! method . parameters . length ;
498
+ const hasRequiredParams = method . parameters . some ( isRequired ) ;
499
+ const paramDef = method . parameters . length
500
+ ? `params${
501
+ hasRequiredParams ? '' : '?'
502
+ } : ${ buildMethodParamsTypeName ( method , 'types' ) } `
503
+ : '' ;
504
+ yield `async ${ methodName } (${ paramDef } ) {` ;
505
+ yield `${
506
+ hasParams ? 'let' : 'const'
507
+ } validationErrors: ValidationError[] = [];`;
508
+ yield 'try {' ;
509
+ if ( hasParams ) {
510
+ yield `validationErrors = ${ buildParamsValidatorName (
498
511
method ,
499
- 'types' ,
500
- ) } `
501
- : '' ;
502
- yield `async ${ methodName } (${ paramDef } ) {` ;
503
- yield `${
504
- hasParams ? 'let' : 'const'
505
- } validationErrors: ValidationError[] = [];`;
506
- yield 'try {' ;
507
- if ( hasParams ) {
508
- yield `validationErrors = ${ buildParamsValidatorName (
509
- method ,
510
- ) } (params)`;
511
- yield `if(validationErrors.length) {` ;
512
+ ) } (params)`;
513
+ yield `if(validationErrors.length) {` ;
514
+ if ( returnType ) {
515
+ yield `return ${ sanitizeSync (
516
+ `${ handlerName } (validationErrors, undefined)` ,
517
+ ) } `;
518
+ } else {
519
+ yield `return ${ handlerName } (validationErrors, undefined)` ;
520
+ }
521
+ yield '}' ;
522
+ }
523
+ if ( hasParams ) {
524
+ yield `const sanitizedParams = sanitizers.${ camel (
525
+ `sanitize_${ method . name . value } _params` ,
526
+ ) } (params)`;
527
+ }
528
+ yield `return ${ sanitizeAsync (
529
+ `this.service.${ methodName } (${ hasParams ? 'sanitizedParams' : '' } )` ,
530
+ ) } `;
531
+ yield '} catch (err) {' ;
512
532
if ( returnType ) {
513
533
yield `return ${ sanitizeSync (
514
- `${ handlerName } (validationErrors, undefined )` ,
534
+ `${ handlerName } (validationErrors, err )` ,
515
535
) } `;
516
536
} else {
517
- yield `return ${ handlerName } (validationErrors, undefined )` ;
537
+ yield `return ${ handlerName } (validationErrors, err )` ;
518
538
}
519
539
yield '}' ;
520
- }
521
- if ( hasParams ) {
522
- yield `const sanitizedParams = sanitizers.${ camel (
523
- `sanitize_${ method . name . value } _params` ,
524
- ) } (params)`;
525
- }
526
- yield `return ${ sanitizeAsync (
527
- `this.service.${ methodName } (${ hasParams ? 'sanitizedParams' : '' } )` ,
528
- ) } `;
529
- yield '} catch (err) {' ;
530
- if ( returnType ) {
531
- yield `return ${ sanitizeSync (
532
- `${ handlerName } (validationErrors, err)` ,
533
- ) } `;
534
- } else {
535
- yield `return ${ handlerName } (validationErrors, err)` ;
540
+ yield '}' ;
541
+ yield '' ;
536
542
}
537
543
yield '}' ;
538
- yield '}' ;
539
544
yield '' ;
540
545
}
541
- yield '}' ;
542
- yield '' ;
543
546
}
544
547
}
545
548
}
0 commit comments