@nestia/core 4.4.2-dev.20241217 → 4.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +87 -87
  3. package/package.json +3 -3
  4. package/src/adaptors/WebSocketAdaptor.ts +426 -426
  5. package/src/decorators/DynamicModule.ts +43 -43
  6. package/src/decorators/EncryptedBody.ts +101 -101
  7. package/src/decorators/EncryptedController.ts +38 -38
  8. package/src/decorators/EncryptedModule.ts +100 -100
  9. package/src/decorators/EncryptedRoute.ts +219 -219
  10. package/src/decorators/NoTransformConfigurationError.ts +32 -32
  11. package/src/decorators/PlainBody.ts +79 -79
  12. package/src/decorators/SwaggerCustomizer.ts +115 -115
  13. package/src/decorators/SwaggerExample.ts +100 -100
  14. package/src/decorators/TypedBody.ts +59 -59
  15. package/src/decorators/TypedException.ts +128 -128
  16. package/src/decorators/TypedFormData.ts +195 -195
  17. package/src/decorators/TypedHeaders.ts +64 -64
  18. package/src/decorators/TypedParam.ts +77 -77
  19. package/src/decorators/TypedQuery.ts +245 -245
  20. package/src/decorators/TypedRoute.ts +214 -214
  21. package/src/decorators/WebSocketRoute.ts +242 -242
  22. package/src/decorators/internal/EncryptedConstant.ts +4 -4
  23. package/src/decorators/internal/IWebSocketRouteReflect.ts +23 -23
  24. package/src/decorators/internal/NoTransformConfigureError.ts +2 -2
  25. package/src/decorators/internal/get_path_and_querify.ts +108 -108
  26. package/src/decorators/internal/get_path_and_stringify.ts +122 -122
  27. package/src/decorators/internal/get_text_body.ts +20 -20
  28. package/src/decorators/internal/headers_to_object.ts +13 -13
  29. package/src/decorators/internal/is_request_body_undefined.ts +14 -14
  30. package/src/decorators/internal/load_controller.ts +49 -49
  31. package/src/decorators/internal/route_error.ts +45 -45
  32. package/src/decorators/internal/validate_request_body.ts +74 -74
  33. package/src/decorators/internal/validate_request_form_data.ts +77 -77
  34. package/src/decorators/internal/validate_request_headers.ts +86 -86
  35. package/src/decorators/internal/validate_request_query.ts +74 -74
  36. package/src/index.ts +5 -5
  37. package/src/module.ts +21 -21
  38. package/src/options/INestiaTransformOptions.ts +38 -38
  39. package/src/options/INestiaTransformProject.ts +8 -8
  40. package/src/options/IRequestBodyValidator.ts +20 -20
  41. package/src/options/IRequestFormDataProps.ts +27 -27
  42. package/src/options/IRequestHeadersValidator.ts +22 -22
  43. package/src/options/IRequestQueryValidator.ts +20 -20
  44. package/src/options/IResponseBodyQuerifier.ts +25 -25
  45. package/src/options/IResponseBodyStringifier.ts +30 -30
  46. package/src/programmers/PlainBodyProgrammer.ts +70 -70
  47. package/src/programmers/TypedBodyProgrammer.ts +142 -142
  48. package/src/programmers/TypedFormDataBodyProgrammer.ts +118 -118
  49. package/src/programmers/TypedHeadersProgrammer.ts +63 -63
  50. package/src/programmers/TypedParamProgrammer.ts +33 -33
  51. package/src/programmers/TypedQueryBodyProgrammer.ts +112 -112
  52. package/src/programmers/TypedQueryProgrammer.ts +114 -114
  53. package/src/programmers/TypedQueryRouteProgrammer.ts +105 -105
  54. package/src/programmers/TypedRouteProgrammer.ts +94 -94
  55. package/src/programmers/http/HttpAssertQuerifyProgrammer.ts +72 -72
  56. package/src/programmers/http/HttpIsQuerifyProgrammer.ts +75 -75
  57. package/src/programmers/http/HttpQuerifyProgrammer.ts +108 -108
  58. package/src/programmers/http/HttpValidateQuerifyProgrammer.ts +76 -76
  59. package/src/programmers/internal/CoreMetadataUtil.ts +21 -21
  60. package/src/transform.ts +35 -35
  61. package/src/transformers/FileTransformer.ts +110 -110
  62. package/src/transformers/MethodTransformer.ts +103 -103
  63. package/src/transformers/NodeTransformer.ts +23 -23
  64. package/src/transformers/ParameterDecoratorTransformer.ts +143 -143
  65. package/src/transformers/ParameterTransformer.ts +57 -57
  66. package/src/transformers/TypedRouteTransformer.ts +85 -85
  67. package/src/transformers/WebSocketRouteTransformer.ts +120 -120
  68. package/src/typings/Creator.ts +3 -3
  69. package/src/typings/get-function-location.d.ts +7 -7
  70. package/src/utils/ArrayUtil.ts +7 -7
  71. package/src/utils/ExceptionManager.ts +112 -112
  72. package/src/utils/Singleton.ts +20 -20
  73. package/src/utils/SourceFinder.ts +57 -57
  74. package/src/utils/VersioningStrategy.ts +27 -27
@@ -1,115 +1,115 @@
1
- import { OpenApi } from "@samchon/openapi";
2
-
3
- /**
4
- * Swagger customization decorator.
5
- *
6
- * `SwaggerCustomizer` is a method decorator function which can used for
7
- * customizing the swagger data with `npx nestia swagger` command. Furthermore,
8
- * it is possible to add plugin properties starting with `x-` characters.
9
- *
10
- * In other words, this decorator function does not affect to the runtime,
11
- * but only for the swagger data customization.
12
- *
13
- * @param closure Callback function which can customize the swagger data
14
- * @returns Method decorator
15
- * @author Jeongho Nam - https://github.com/samchon
16
- */
17
- export function SwaggerCustomizer(
18
- closure: (props: SwaggerCustomizer.IProps) => unknown,
19
- ): MethodDecorator {
20
- return function SwaggerCustomizer(
21
- target: Object,
22
- propertyKey: string | symbol,
23
- descriptor: TypedPropertyDescriptor<any>,
24
- ) {
25
- const array: Array<(props: SwaggerCustomizer.IProps) => unknown> = (() => {
26
- if (Reflect.hasMetadata("nestia/SwaggerCustomizer", target, propertyKey))
27
- return Reflect.getMetadata(
28
- "nestia/SwaggerCustomizer",
29
- target,
30
- propertyKey,
31
- );
32
- const array: Array<(props: SwaggerCustomizer.IProps) => unknown> = [];
33
- Reflect.defineMetadata(
34
- "nestia/SwaggerCustomizer",
35
- array,
36
- target,
37
- propertyKey,
38
- );
39
- return array;
40
- })();
41
- array.push(closure);
42
- return descriptor;
43
- };
44
- }
45
- export namespace SwaggerCustomizer {
46
- /**
47
- * Properties for the `SwaggerCustomizer` decorator.
48
- *
49
- * `SwaggerCustomizer.IProps` is a type for the `closure` parameter of the
50
- * `SwaggerCustomizer` decorator. It's a callback function which can customize
51
- * the swagger data.
52
- */
53
- export interface IProps {
54
- /**
55
- * Swagger data.
56
- */
57
- swagger: OpenApi.IDocument;
58
-
59
- /**
60
- * Method of the route.
61
- */
62
- method: string;
63
-
64
- /**
65
- * Path of the route.
66
- */
67
- path: string;
68
-
69
- /**
70
- * Route data.
71
- */
72
- route: OpenApi.IOperation;
73
-
74
- /**
75
- * Get neighbor endpoint data through the controller method.
76
- *
77
- * @param func Controller method to find the neighbor endpoint
78
- * @returns Neighbor endpoint data
79
- */
80
- at(func: Function): ISwaggerEndpoint | undefined;
81
-
82
- /**
83
- * Get neighbor route data.
84
- *
85
- * @param accessor Accessor for getting neighbor route data
86
- * @returns Neighbor route data
87
- */
88
- get(accessor: IAccessor): OpenApi.IOperation | undefined;
89
- }
90
-
91
- /**
92
- * Accessor for getting neighbor route data.
93
- */
94
- export interface IAccessor {
95
- /**
96
- * Path of the neighbor route.
97
- */
98
- path: string;
99
-
100
- /**
101
- * Method of the neighbor route.
102
- */
103
- method: string;
104
- }
105
-
106
- /**
107
- * Endpoint info of the route.
108
- */
109
- export interface ISwaggerEndpoint extends IAccessor {
110
- /**
111
- * Route data.
112
- */
113
- route: OpenApi.IOperation;
114
- }
115
- }
1
+ import { OpenApi } from "@samchon/openapi";
2
+
3
+ /**
4
+ * Swagger customization decorator.
5
+ *
6
+ * `SwaggerCustomizer` is a method decorator function which can used for
7
+ * customizing the swagger data with `npx nestia swagger` command. Furthermore,
8
+ * it is possible to add plugin properties starting with `x-` characters.
9
+ *
10
+ * In other words, this decorator function does not affect to the runtime,
11
+ * but only for the swagger data customization.
12
+ *
13
+ * @param closure Callback function which can customize the swagger data
14
+ * @returns Method decorator
15
+ * @author Jeongho Nam - https://github.com/samchon
16
+ */
17
+ export function SwaggerCustomizer(
18
+ closure: (props: SwaggerCustomizer.IProps) => unknown,
19
+ ): MethodDecorator {
20
+ return function SwaggerCustomizer(
21
+ target: Object,
22
+ propertyKey: string | symbol,
23
+ descriptor: TypedPropertyDescriptor<any>,
24
+ ) {
25
+ const array: Array<(props: SwaggerCustomizer.IProps) => unknown> = (() => {
26
+ if (Reflect.hasMetadata("nestia/SwaggerCustomizer", target, propertyKey))
27
+ return Reflect.getMetadata(
28
+ "nestia/SwaggerCustomizer",
29
+ target,
30
+ propertyKey,
31
+ );
32
+ const array: Array<(props: SwaggerCustomizer.IProps) => unknown> = [];
33
+ Reflect.defineMetadata(
34
+ "nestia/SwaggerCustomizer",
35
+ array,
36
+ target,
37
+ propertyKey,
38
+ );
39
+ return array;
40
+ })();
41
+ array.push(closure);
42
+ return descriptor;
43
+ };
44
+ }
45
+ export namespace SwaggerCustomizer {
46
+ /**
47
+ * Properties for the `SwaggerCustomizer` decorator.
48
+ *
49
+ * `SwaggerCustomizer.IProps` is a type for the `closure` parameter of the
50
+ * `SwaggerCustomizer` decorator. It's a callback function which can customize
51
+ * the swagger data.
52
+ */
53
+ export interface IProps {
54
+ /**
55
+ * Swagger data.
56
+ */
57
+ swagger: OpenApi.IDocument;
58
+
59
+ /**
60
+ * Method of the route.
61
+ */
62
+ method: string;
63
+
64
+ /**
65
+ * Path of the route.
66
+ */
67
+ path: string;
68
+
69
+ /**
70
+ * Route data.
71
+ */
72
+ route: OpenApi.IOperation;
73
+
74
+ /**
75
+ * Get neighbor endpoint data through the controller method.
76
+ *
77
+ * @param func Controller method to find the neighbor endpoint
78
+ * @returns Neighbor endpoint data
79
+ */
80
+ at(func: Function): ISwaggerEndpoint | undefined;
81
+
82
+ /**
83
+ * Get neighbor route data.
84
+ *
85
+ * @param accessor Accessor for getting neighbor route data
86
+ * @returns Neighbor route data
87
+ */
88
+ get(accessor: IAccessor): OpenApi.IOperation | undefined;
89
+ }
90
+
91
+ /**
92
+ * Accessor for getting neighbor route data.
93
+ */
94
+ export interface IAccessor {
95
+ /**
96
+ * Path of the neighbor route.
97
+ */
98
+ path: string;
99
+
100
+ /**
101
+ * Method of the neighbor route.
102
+ */
103
+ method: string;
104
+ }
105
+
106
+ /**
107
+ * Endpoint info of the route.
108
+ */
109
+ export interface ISwaggerEndpoint extends IAccessor {
110
+ /**
111
+ * Route data.
112
+ */
113
+ route: OpenApi.IOperation;
114
+ }
115
+ }
@@ -1,100 +1,100 @@
1
- export namespace SwaggerExample {
2
- export function Response<T>(value: T): MethodDecorator;
3
- export function Response<T>(key: string, value: T): MethodDecorator;
4
- export function Response(...args: any[]): MethodDecorator {
5
- return function SwaggerExampleResponse(
6
- _target: Object,
7
- _propertyKey: string | symbol,
8
- descriptor: TypedPropertyDescriptor<any>,
9
- ): TypedPropertyDescriptor<any> {
10
- emplaceValue(emplaceOfResponse(descriptor))(args);
11
- return descriptor;
12
- };
13
- }
14
-
15
- export function Parameter<T>(value: T): ParameterDecorator;
16
- export function Parameter<T>(key: string, value: T): ParameterDecorator;
17
- export function Parameter(...args: any[]): ParameterDecorator {
18
- return function SwaggerExampleParameter(
19
- target: Object,
20
- propertyKey: string | symbol | undefined,
21
- index: number,
22
- ): void {
23
- emplaceValue(emplaceOfParameter(target, propertyKey ?? "", index))(args);
24
- };
25
- }
26
-
27
- export interface IData<T> {
28
- examples?: Record<string, T>;
29
- example?: T;
30
- index?: number;
31
- }
32
- }
33
-
34
- const emplaceValue =
35
- <T>(data: SwaggerExample.IData<T>) =>
36
- (args: any[]) => {
37
- if (args.length === 1) data.example = args[0];
38
- else {
39
- const key: string = args[0];
40
- const value: T = args[1];
41
- data.examples ??= {};
42
- data.examples[key] = value;
43
- }
44
- };
45
-
46
- const emplaceOfResponse = <T>(
47
- descriptor: TypedPropertyDescriptor<any>,
48
- ): SwaggerExample.IData<T> => {
49
- const oldbie: SwaggerExample.IData<T> | undefined = Reflect.getMetadata(
50
- "nestia/SwaggerExample/Response",
51
- descriptor.value,
52
- );
53
- if (oldbie !== undefined) return oldbie;
54
- const newbie: SwaggerExample.IData<T> = {};
55
- Reflect.defineMetadata(
56
- "nestia/SwaggerExample/Response",
57
- newbie,
58
- descriptor.value,
59
- );
60
- return newbie;
61
- };
62
-
63
- const emplaceOfParameter = (
64
- target: Object,
65
- propertyKey: string | symbol,
66
- index: number,
67
- ): SwaggerExample.IData<any> => {
68
- const array: SwaggerExample.IData<any>[] = emplaceArrayOfParameters(
69
- target,
70
- propertyKey,
71
- );
72
- const oldibe: SwaggerExample.IData<any> | undefined = array.find(
73
- (e) => e.index === index,
74
- );
75
- if (oldibe !== undefined) return oldibe;
76
-
77
- const data: SwaggerExample.IData<any> = { index };
78
- array.push(data);
79
- return data;
80
- };
81
-
82
- const emplaceArrayOfParameters = (
83
- target: Object,
84
- propertyKey: string | symbol,
85
- ): SwaggerExample.IData<any>[] => {
86
- const array: SwaggerExample.IData<any>[] | undefined = Reflect.getMetadata(
87
- "nestia/SwaggerExample/Parameters",
88
- target,
89
- propertyKey,
90
- );
91
- if (array !== undefined) return array;
92
- const newbie: SwaggerExample.IData<any>[] = [];
93
- Reflect.defineMetadata(
94
- "nestia/SwaggerExample/Parameters",
95
- newbie,
96
- target,
97
- propertyKey,
98
- );
99
- return newbie;
100
- };
1
+ export namespace SwaggerExample {
2
+ export function Response<T>(value: T): MethodDecorator;
3
+ export function Response<T>(key: string, value: T): MethodDecorator;
4
+ export function Response(...args: any[]): MethodDecorator {
5
+ return function SwaggerExampleResponse(
6
+ _target: Object,
7
+ _propertyKey: string | symbol,
8
+ descriptor: TypedPropertyDescriptor<any>,
9
+ ): TypedPropertyDescriptor<any> {
10
+ emplaceValue(emplaceOfResponse(descriptor))(args);
11
+ return descriptor;
12
+ };
13
+ }
14
+
15
+ export function Parameter<T>(value: T): ParameterDecorator;
16
+ export function Parameter<T>(key: string, value: T): ParameterDecorator;
17
+ export function Parameter(...args: any[]): ParameterDecorator {
18
+ return function SwaggerExampleParameter(
19
+ target: Object,
20
+ propertyKey: string | symbol | undefined,
21
+ index: number,
22
+ ): void {
23
+ emplaceValue(emplaceOfParameter(target, propertyKey ?? "", index))(args);
24
+ };
25
+ }
26
+
27
+ export interface IData<T> {
28
+ examples?: Record<string, T>;
29
+ example?: T;
30
+ index?: number;
31
+ }
32
+ }
33
+
34
+ const emplaceValue =
35
+ <T>(data: SwaggerExample.IData<T>) =>
36
+ (args: any[]) => {
37
+ if (args.length === 1) data.example = args[0];
38
+ else {
39
+ const key: string = args[0];
40
+ const value: T = args[1];
41
+ data.examples ??= {};
42
+ data.examples[key] = value;
43
+ }
44
+ };
45
+
46
+ const emplaceOfResponse = <T>(
47
+ descriptor: TypedPropertyDescriptor<any>,
48
+ ): SwaggerExample.IData<T> => {
49
+ const oldbie: SwaggerExample.IData<T> | undefined = Reflect.getMetadata(
50
+ "nestia/SwaggerExample/Response",
51
+ descriptor.value,
52
+ );
53
+ if (oldbie !== undefined) return oldbie;
54
+ const newbie: SwaggerExample.IData<T> = {};
55
+ Reflect.defineMetadata(
56
+ "nestia/SwaggerExample/Response",
57
+ newbie,
58
+ descriptor.value,
59
+ );
60
+ return newbie;
61
+ };
62
+
63
+ const emplaceOfParameter = (
64
+ target: Object,
65
+ propertyKey: string | symbol,
66
+ index: number,
67
+ ): SwaggerExample.IData<any> => {
68
+ const array: SwaggerExample.IData<any>[] = emplaceArrayOfParameters(
69
+ target,
70
+ propertyKey,
71
+ );
72
+ const oldibe: SwaggerExample.IData<any> | undefined = array.find(
73
+ (e) => e.index === index,
74
+ );
75
+ if (oldibe !== undefined) return oldibe;
76
+
77
+ const data: SwaggerExample.IData<any> = { index };
78
+ array.push(data);
79
+ return data;
80
+ };
81
+
82
+ const emplaceArrayOfParameters = (
83
+ target: Object,
84
+ propertyKey: string | symbol,
85
+ ): SwaggerExample.IData<any>[] => {
86
+ const array: SwaggerExample.IData<any>[] | undefined = Reflect.getMetadata(
87
+ "nestia/SwaggerExample/Parameters",
88
+ target,
89
+ propertyKey,
90
+ );
91
+ if (array !== undefined) return array;
92
+ const newbie: SwaggerExample.IData<any>[] = [];
93
+ Reflect.defineMetadata(
94
+ "nestia/SwaggerExample/Parameters",
95
+ newbie,
96
+ target,
97
+ propertyKey,
98
+ );
99
+ return newbie;
100
+ };
@@ -1,59 +1,59 @@
1
- import {
2
- BadRequestException,
3
- ExecutionContext,
4
- createParamDecorator,
5
- } from "@nestjs/common";
6
- import type express from "express";
7
- import type { FastifyRequest } from "fastify";
8
-
9
- import { IRequestBodyValidator } from "../options/IRequestBodyValidator";
10
- import { is_request_body_undefined } from "./internal/is_request_body_undefined";
11
- import { validate_request_body } from "./internal/validate_request_body";
12
-
13
- /**
14
- * Type safe body decorator.
15
- *
16
- * `TypedBody` is a decorator function getting `application/json` typed data from
17
- * request body. Also, it validates the request body data type through
18
- * [typia](https://github.com/samchon/typia) and the validation speed is
19
- * maximum 20,000x times faster than `class-validator`.
20
- *
21
- * For reference, when the request body data is not following the promised type `T`,
22
- * `BadRequestException` error (status code: 400) would be thrown.
23
- *
24
- * @param validator Custom validator if required. Default is `typia.assert()`
25
- * @author Jeongho Nam - https://github.com/samchon
26
- */
27
- export function TypedBody<T>(
28
- validator?: IRequestBodyValidator<T>,
29
- ): ParameterDecorator {
30
- const checker = validate_request_body("TypedBody")(validator);
31
- return createParamDecorator(function TypedBody(
32
- _unknown: any,
33
- context: ExecutionContext,
34
- ) {
35
- const request: express.Request | FastifyRequest = context
36
- .switchToHttp()
37
- .getRequest();
38
- if (is_request_body_undefined(request) && checker(undefined as T) === null)
39
- return undefined;
40
- else if (isApplicationJson(request.headers["content-type"]) === false)
41
- throw new BadRequestException(
42
- `Request body type is not "application/json".`,
43
- );
44
-
45
- const error: Error | null = checker(request.body);
46
- if (error !== null) throw error;
47
- return request.body;
48
- })();
49
- }
50
-
51
- /**
52
- * @internal
53
- */
54
- const isApplicationJson = (text?: string): boolean =>
55
- text !== undefined &&
56
- text
57
- .split(";")
58
- .map((str) => str.trim())
59
- .some((str) => str === "application/json");
1
+ import {
2
+ BadRequestException,
3
+ ExecutionContext,
4
+ createParamDecorator,
5
+ } from "@nestjs/common";
6
+ import type express from "express";
7
+ import type { FastifyRequest } from "fastify";
8
+
9
+ import { IRequestBodyValidator } from "../options/IRequestBodyValidator";
10
+ import { is_request_body_undefined } from "./internal/is_request_body_undefined";
11
+ import { validate_request_body } from "./internal/validate_request_body";
12
+
13
+ /**
14
+ * Type safe body decorator.
15
+ *
16
+ * `TypedBody` is a decorator function getting `application/json` typed data from
17
+ * request body. Also, it validates the request body data type through
18
+ * [typia](https://github.com/samchon/typia) and the validation speed is
19
+ * maximum 20,000x times faster than `class-validator`.
20
+ *
21
+ * For reference, when the request body data is not following the promised type `T`,
22
+ * `BadRequestException` error (status code: 400) would be thrown.
23
+ *
24
+ * @param validator Custom validator if required. Default is `typia.assert()`
25
+ * @author Jeongho Nam - https://github.com/samchon
26
+ */
27
+ export function TypedBody<T>(
28
+ validator?: IRequestBodyValidator<T>,
29
+ ): ParameterDecorator {
30
+ const checker = validate_request_body("TypedBody")(validator);
31
+ return createParamDecorator(function TypedBody(
32
+ _unknown: any,
33
+ context: ExecutionContext,
34
+ ) {
35
+ const request: express.Request | FastifyRequest = context
36
+ .switchToHttp()
37
+ .getRequest();
38
+ if (is_request_body_undefined(request) && checker(undefined as T) === null)
39
+ return undefined;
40
+ else if (isApplicationJson(request.headers["content-type"]) === false)
41
+ throw new BadRequestException(
42
+ `Request body type is not "application/json".`,
43
+ );
44
+
45
+ const error: Error | null = checker(request.body);
46
+ if (error !== null) throw error;
47
+ return request.body;
48
+ })();
49
+ }
50
+
51
+ /**
52
+ * @internal
53
+ */
54
+ const isApplicationJson = (text?: string): boolean =>
55
+ text !== undefined &&
56
+ text
57
+ .split(";")
58
+ .map((str) => str.trim())
59
+ .some((str) => str === "application/json");