-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathvalidation.ts
51 lines (44 loc) · 1.6 KB
/
validation.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
import { Get, Query, UsePipes, ValidationPipe } from '@nestjs/common';
import { IsIn } from 'class-validator';
export class Controller {
@Get()
route1(@Query('x', new ValidationPipe()) validatedObj: Struct) {
return validatedObj.key; // $ responseSendArgument
} // $ routeHandler
@Get()
route2(@Query('x', ValidationPipe) validatedObj: Struct) {
return validatedObj.key; // $ responseSendArgument
} // $ routeHandler
@Get()
@UsePipes(new ValidationPipe())
route3(@Query('x') validatedObj: Struct, @Query('y') unvalidated: string) {
if (Math.random()) return validatedObj.key; // $ responseSendArgument
return unvalidated; // $ Alert responseSendArgument
} // $ routeHandler
@Get()
@UsePipes(ValidationPipe)
route4(@Query('x') validatedObj: Struct, @Query('y') unvalidated: string) {
if (Math.random()) return validatedObj.key; // $ responseSendArgument
return unvalidated; // $ Alert responseSendArgument
} // $ routeHandler
}
@UsePipes(new ValidationPipe())
export class Controller2 {
@Get()
route5(@Query('x') validatedObj: Struct, @Query('y') unvalidated: string) {
if (Math.random()) return validatedObj.key; // $ responseSendArgument
return unvalidated; // $ Alert responseSendArgument
} // $ routeHandler
}
@UsePipes(ValidationPipe)
export class Controller3 {
@Get()
route6(@Query('x') validatedObj: Struct, @Query('y') unvalidated: string) {
if (Math.random()) return validatedObj.key; // $ responseSendArgument
return unvalidated; // $ Alert responseSendArgument
} // $ routeHandler
}
class Struct {
@IsIn(['foo', 'bar'])
key: string;
}