@nestia/core 4.2.0-dev.20241211 → 4.2.0

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 +66 -66
  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 +24 -24
  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 +132 -132
  48. package/src/programmers/TypedFormDataBodyProgrammer.ts +118 -118
  49. package/src/programmers/TypedHeadersProgrammer.ts +63 -63
  50. package/src/programmers/TypedParamProgrammer.ts +30 -30
  51. package/src/programmers/TypedQueryBodyProgrammer.ts +63 -63
  52. package/src/programmers/TypedQueryProgrammer.ts +65 -65
  53. package/src/programmers/TypedQueryRouteProgrammer.ts +56 -56
  54. package/src/programmers/TypedRouteProgrammer.ts +76 -76
  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,76 +1,76 @@
1
- import ts from "typescript";
2
- import { JsonAssertStringifyProgrammer } from "typia/lib/programmers/json/JsonAssertStringifyProgrammer";
3
- import { JsonIsStringifyProgrammer } from "typia/lib/programmers/json/JsonIsStringifyProgrammer";
4
- import { JsonStringifyProgrammer } from "typia/lib/programmers/json/JsonStringifyProgrammer";
5
- import { JsonValidateStringifyProgrammer } from "typia/lib/programmers/json/JsonValidateStringifyProgrammer";
6
- import { IProgrammerProps } from "typia/lib/transformers/IProgrammerProps";
7
-
8
- import { INestiaTransformContext } from "../options/INestiaTransformProject";
9
-
10
- export namespace TypedRouteProgrammer {
11
- export const generate = (props: {
12
- context: INestiaTransformContext;
13
- modulo: ts.LeftHandSideExpression;
14
- type: ts.Type;
15
- }): ts.Expression => {
16
- // GENERATE STRINGIFY PLAN
17
- const parameter = (next: {
18
- type: string;
19
- key: string;
20
- programmer: (next: IProgrammerProps) => ts.Expression;
21
- }) =>
22
- ts.factory.createObjectLiteralExpression([
23
- ts.factory.createPropertyAssignment(
24
- ts.factory.createIdentifier("type"),
25
- ts.factory.createStringLiteral(next.type),
26
- ),
27
- ts.factory.createPropertyAssignment(
28
- ts.factory.createIdentifier(next.key),
29
- next.programmer({
30
- context: {
31
- ...props.context,
32
- options: {}, // use default option
33
- },
34
- modulo: props.modulo,
35
- type: props.type,
36
- name: undefined,
37
- }),
38
- ),
39
- ]);
40
-
41
- // RETURNS
42
- if (props.context.options.stringify === "is")
43
- return parameter({
44
- type: "is",
45
- key: "is",
46
- programmer: JsonIsStringifyProgrammer.write,
47
- });
48
- else if (props.context.options.stringify === "validate")
49
- return parameter({
50
- type: "validate",
51
- key: "validate",
52
- programmer: JsonValidateStringifyProgrammer.write,
53
- });
54
- else if (props.context.options.stringify === "stringify")
55
- return parameter({
56
- type: "stringify",
57
- key: "stringify",
58
- programmer: JsonStringifyProgrammer.write,
59
- });
60
- else if (props.context.options.stringify === "validate.log")
61
- return parameter({
62
- type: "validate.log",
63
- key: "validate",
64
- programmer: JsonValidateStringifyProgrammer.write,
65
- });
66
- else if (props.context.options.stringify === null)
67
- return ts.factory.createNull();
68
-
69
- // ASSERT IS DEFAULT
70
- return parameter({
71
- type: "assert",
72
- key: "assert",
73
- programmer: JsonAssertStringifyProgrammer.write,
74
- });
75
- };
76
- }
1
+ import ts from "typescript";
2
+ import { JsonAssertStringifyProgrammer } from "typia/lib/programmers/json/JsonAssertStringifyProgrammer";
3
+ import { JsonIsStringifyProgrammer } from "typia/lib/programmers/json/JsonIsStringifyProgrammer";
4
+ import { JsonStringifyProgrammer } from "typia/lib/programmers/json/JsonStringifyProgrammer";
5
+ import { JsonValidateStringifyProgrammer } from "typia/lib/programmers/json/JsonValidateStringifyProgrammer";
6
+ import { IProgrammerProps } from "typia/lib/transformers/IProgrammerProps";
7
+
8
+ import { INestiaTransformContext } from "../options/INestiaTransformProject";
9
+
10
+ export namespace TypedRouteProgrammer {
11
+ export const generate = (props: {
12
+ context: INestiaTransformContext;
13
+ modulo: ts.LeftHandSideExpression;
14
+ type: ts.Type;
15
+ }): ts.Expression => {
16
+ // GENERATE STRINGIFY PLAN
17
+ const parameter = (next: {
18
+ type: string;
19
+ key: string;
20
+ programmer: (next: IProgrammerProps) => ts.Expression;
21
+ }) =>
22
+ ts.factory.createObjectLiteralExpression([
23
+ ts.factory.createPropertyAssignment(
24
+ ts.factory.createIdentifier("type"),
25
+ ts.factory.createStringLiteral(next.type),
26
+ ),
27
+ ts.factory.createPropertyAssignment(
28
+ ts.factory.createIdentifier(next.key),
29
+ next.programmer({
30
+ context: {
31
+ ...props.context,
32
+ options: {}, // use default option
33
+ },
34
+ modulo: props.modulo,
35
+ type: props.type,
36
+ name: undefined,
37
+ }),
38
+ ),
39
+ ]);
40
+
41
+ // RETURNS
42
+ if (props.context.options.stringify === "is")
43
+ return parameter({
44
+ type: "is",
45
+ key: "is",
46
+ programmer: JsonIsStringifyProgrammer.write,
47
+ });
48
+ else if (props.context.options.stringify === "validate")
49
+ return parameter({
50
+ type: "validate",
51
+ key: "validate",
52
+ programmer: JsonValidateStringifyProgrammer.write,
53
+ });
54
+ else if (props.context.options.stringify === "stringify")
55
+ return parameter({
56
+ type: "stringify",
57
+ key: "stringify",
58
+ programmer: JsonStringifyProgrammer.write,
59
+ });
60
+ else if (props.context.options.stringify === "validate.log")
61
+ return parameter({
62
+ type: "validate.log",
63
+ key: "validate",
64
+ programmer: JsonValidateStringifyProgrammer.write,
65
+ });
66
+ else if (props.context.options.stringify === null)
67
+ return ts.factory.createNull();
68
+
69
+ // ASSERT IS DEFAULT
70
+ return parameter({
71
+ type: "assert",
72
+ key: "assert",
73
+ programmer: JsonAssertStringifyProgrammer.write,
74
+ });
75
+ };
76
+ }
@@ -1,72 +1,72 @@
1
- import ts from "typescript";
2
- import { IdentifierFactory } from "typia/lib/factories/IdentifierFactory";
3
- import { StatementFactory } from "typia/lib/factories/StatementFactory";
4
- import { AssertProgrammer } from "typia/lib/programmers/AssertProgrammer";
5
- import { ITypiaContext } from "typia/lib/transformers/ITypiaContext";
6
-
7
- import { HttpQuerifyProgrammer } from "./HttpQuerifyProgrammer";
8
-
9
- export namespace HttpAssertQuerifyProgrammer {
10
- export const write = (props: {
11
- context: ITypiaContext;
12
- modulo: ts.LeftHandSideExpression;
13
- type: ts.Type;
14
- }): ts.ArrowFunction =>
15
- ts.factory.createArrowFunction(
16
- undefined,
17
- undefined,
18
- [IdentifierFactory.parameter("input")],
19
- undefined,
20
- undefined,
21
- ts.factory.createBlock([
22
- StatementFactory.constant({
23
- name: "assert",
24
- value: AssertProgrammer.write({
25
- context: {
26
- ...props.context,
27
- options: {
28
- ...props.context.options,
29
- functional: false,
30
- numeric: false,
31
- },
32
- },
33
- modulo: props.modulo,
34
- config: {
35
- equals: false,
36
- guard: false,
37
- },
38
- type: props.type,
39
- name: undefined,
40
- }),
41
- }),
42
- StatementFactory.constant({
43
- name: "stringify",
44
- value: HttpQuerifyProgrammer.write({
45
- context: {
46
- ...props.context,
47
- options: {
48
- ...props.context.options,
49
- functional: false,
50
- numeric: false,
51
- },
52
- },
53
- modulo: props.modulo,
54
- type: props.type,
55
- }),
56
- }),
57
- ts.factory.createReturnStatement(
58
- ts.factory.createCallExpression(
59
- ts.factory.createIdentifier("stringify"),
60
- undefined,
61
- [
62
- ts.factory.createCallExpression(
63
- ts.factory.createIdentifier("assert"),
64
- undefined,
65
- [ts.factory.createIdentifier("input")],
66
- ),
67
- ],
68
- ),
69
- ),
70
- ]),
71
- );
72
- }
1
+ import ts from "typescript";
2
+ import { IdentifierFactory } from "typia/lib/factories/IdentifierFactory";
3
+ import { StatementFactory } from "typia/lib/factories/StatementFactory";
4
+ import { AssertProgrammer } from "typia/lib/programmers/AssertProgrammer";
5
+ import { ITypiaContext } from "typia/lib/transformers/ITypiaContext";
6
+
7
+ import { HttpQuerifyProgrammer } from "./HttpQuerifyProgrammer";
8
+
9
+ export namespace HttpAssertQuerifyProgrammer {
10
+ export const write = (props: {
11
+ context: ITypiaContext;
12
+ modulo: ts.LeftHandSideExpression;
13
+ type: ts.Type;
14
+ }): ts.ArrowFunction =>
15
+ ts.factory.createArrowFunction(
16
+ undefined,
17
+ undefined,
18
+ [IdentifierFactory.parameter("input")],
19
+ undefined,
20
+ undefined,
21
+ ts.factory.createBlock([
22
+ StatementFactory.constant({
23
+ name: "assert",
24
+ value: AssertProgrammer.write({
25
+ context: {
26
+ ...props.context,
27
+ options: {
28
+ ...props.context.options,
29
+ functional: false,
30
+ numeric: false,
31
+ },
32
+ },
33
+ modulo: props.modulo,
34
+ config: {
35
+ equals: false,
36
+ guard: false,
37
+ },
38
+ type: props.type,
39
+ name: undefined,
40
+ }),
41
+ }),
42
+ StatementFactory.constant({
43
+ name: "stringify",
44
+ value: HttpQuerifyProgrammer.write({
45
+ context: {
46
+ ...props.context,
47
+ options: {
48
+ ...props.context.options,
49
+ functional: false,
50
+ numeric: false,
51
+ },
52
+ },
53
+ modulo: props.modulo,
54
+ type: props.type,
55
+ }),
56
+ }),
57
+ ts.factory.createReturnStatement(
58
+ ts.factory.createCallExpression(
59
+ ts.factory.createIdentifier("stringify"),
60
+ undefined,
61
+ [
62
+ ts.factory.createCallExpression(
63
+ ts.factory.createIdentifier("assert"),
64
+ undefined,
65
+ [ts.factory.createIdentifier("input")],
66
+ ),
67
+ ],
68
+ ),
69
+ ),
70
+ ]),
71
+ );
72
+ }
@@ -1,75 +1,75 @@
1
- import ts from "typescript";
2
- import { IdentifierFactory } from "typia/lib/factories/IdentifierFactory";
3
- import { StatementFactory } from "typia/lib/factories/StatementFactory";
4
- import { IsProgrammer } from "typia/lib/programmers/IsProgrammer";
5
- import { ITypiaContext } from "typia/lib/transformers/ITypiaContext";
6
-
7
- import { HttpQuerifyProgrammer } from "./HttpQuerifyProgrammer";
8
-
9
- export namespace HttpIsQuerifyProgrammer {
10
- export const write = (props: {
11
- context: ITypiaContext;
12
- modulo: ts.LeftHandSideExpression;
13
- type: ts.Type;
14
- }): ts.ArrowFunction =>
15
- ts.factory.createArrowFunction(
16
- undefined,
17
- undefined,
18
- [IdentifierFactory.parameter("input")],
19
- undefined,
20
- undefined,
21
- ts.factory.createBlock([
22
- StatementFactory.constant({
23
- name: "is",
24
- value: IsProgrammer.write({
25
- config: {
26
- equals: false,
27
- },
28
- context: {
29
- ...props.context,
30
- options: {
31
- ...props.context.options,
32
- functional: false,
33
- numeric: false,
34
- },
35
- },
36
- modulo: props.modulo,
37
- type: props.type,
38
- name: undefined,
39
- }),
40
- }),
41
- StatementFactory.constant({
42
- name: "stringify",
43
- value: HttpQuerifyProgrammer.write({
44
- context: {
45
- ...props.context,
46
- options: {
47
- ...props.context.options,
48
- functional: false,
49
- numeric: false,
50
- },
51
- },
52
- modulo: props.modulo,
53
- type: props.type,
54
- }),
55
- }),
56
- ts.factory.createReturnStatement(
57
- ts.factory.createConditionalExpression(
58
- ts.factory.createCallExpression(
59
- ts.factory.createIdentifier("is"),
60
- undefined,
61
- [ts.factory.createIdentifier("input")],
62
- ),
63
- undefined,
64
- ts.factory.createCallExpression(
65
- ts.factory.createIdentifier("stringify"),
66
- undefined,
67
- [ts.factory.createIdentifier("input")],
68
- ),
69
- undefined,
70
- ts.factory.createNull(),
71
- ),
72
- ),
73
- ]),
74
- );
75
- }
1
+ import ts from "typescript";
2
+ import { IdentifierFactory } from "typia/lib/factories/IdentifierFactory";
3
+ import { StatementFactory } from "typia/lib/factories/StatementFactory";
4
+ import { IsProgrammer } from "typia/lib/programmers/IsProgrammer";
5
+ import { ITypiaContext } from "typia/lib/transformers/ITypiaContext";
6
+
7
+ import { HttpQuerifyProgrammer } from "./HttpQuerifyProgrammer";
8
+
9
+ export namespace HttpIsQuerifyProgrammer {
10
+ export const write = (props: {
11
+ context: ITypiaContext;
12
+ modulo: ts.LeftHandSideExpression;
13
+ type: ts.Type;
14
+ }): ts.ArrowFunction =>
15
+ ts.factory.createArrowFunction(
16
+ undefined,
17
+ undefined,
18
+ [IdentifierFactory.parameter("input")],
19
+ undefined,
20
+ undefined,
21
+ ts.factory.createBlock([
22
+ StatementFactory.constant({
23
+ name: "is",
24
+ value: IsProgrammer.write({
25
+ config: {
26
+ equals: false,
27
+ },
28
+ context: {
29
+ ...props.context,
30
+ options: {
31
+ ...props.context.options,
32
+ functional: false,
33
+ numeric: false,
34
+ },
35
+ },
36
+ modulo: props.modulo,
37
+ type: props.type,
38
+ name: undefined,
39
+ }),
40
+ }),
41
+ StatementFactory.constant({
42
+ name: "stringify",
43
+ value: HttpQuerifyProgrammer.write({
44
+ context: {
45
+ ...props.context,
46
+ options: {
47
+ ...props.context.options,
48
+ functional: false,
49
+ numeric: false,
50
+ },
51
+ },
52
+ modulo: props.modulo,
53
+ type: props.type,
54
+ }),
55
+ }),
56
+ ts.factory.createReturnStatement(
57
+ ts.factory.createConditionalExpression(
58
+ ts.factory.createCallExpression(
59
+ ts.factory.createIdentifier("is"),
60
+ undefined,
61
+ [ts.factory.createIdentifier("input")],
62
+ ),
63
+ undefined,
64
+ ts.factory.createCallExpression(
65
+ ts.factory.createIdentifier("stringify"),
66
+ undefined,
67
+ [ts.factory.createIdentifier("input")],
68
+ ),
69
+ undefined,
70
+ ts.factory.createNull(),
71
+ ),
72
+ ),
73
+ ]),
74
+ );
75
+ }
@@ -1,108 +1,108 @@
1
- import ts from "typescript";
2
- import { IdentifierFactory } from "typia/lib/factories/IdentifierFactory";
3
- import { MetadataCollection } from "typia/lib/factories/MetadataCollection";
4
- import { MetadataFactory } from "typia/lib/factories/MetadataFactory";
5
- import { StatementFactory } from "typia/lib/factories/StatementFactory";
6
- import { FunctionProgrammer } from "typia/lib/programmers/helpers/FunctionProgrammer";
7
- import { HttpQueryProgrammer } from "typia/lib/programmers/http/HttpQueryProgrammer";
8
- import { Metadata } from "typia/lib/schemas/metadata/Metadata";
9
- import { MetadataObject } from "typia/lib/schemas/metadata/MetadataObject";
10
- import { ITypiaContext } from "typia/lib/transformers/ITypiaContext";
11
- import { TransformerError } from "typia/lib/transformers/TransformerError";
12
-
13
- export namespace HttpQuerifyProgrammer {
14
- export const write = (props: {
15
- context: ITypiaContext;
16
- modulo: ts.LeftHandSideExpression;
17
- type: ts.Type;
18
- }): ts.ArrowFunction => {
19
- // GET OBJECT TYPE
20
- const functor: FunctionProgrammer = new FunctionProgrammer(
21
- props.modulo.getText(),
22
- );
23
- const collection: MetadataCollection = new MetadataCollection();
24
- const result = MetadataFactory.analyze({
25
- checker: props.context.checker,
26
- transformer: props.context.transformer,
27
- options: {
28
- escape: false,
29
- constant: true,
30
- absorb: true,
31
- validate: HttpQueryProgrammer.validate,
32
- },
33
- type: props.type,
34
- collection,
35
- });
36
- if (result.success === false)
37
- throw TransformerError.from({
38
- code: functor.method,
39
- errors: result.errors,
40
- });
41
-
42
- const object: MetadataObject = result.data.objects[0]!;
43
- return ts.factory.createArrowFunction(
44
- undefined,
45
- undefined,
46
- [IdentifierFactory.parameter("input")],
47
- undefined,
48
- undefined,
49
- ts.factory.createBlock(
50
- [
51
- ...functor.declare(),
52
- StatementFactory.constant({
53
- name: "output",
54
- value: ts.factory.createNewExpression(
55
- ts.factory.createIdentifier("URLSearchParams"),
56
- undefined,
57
- [],
58
- ),
59
- }),
60
- ...object.type.properties.map((p) =>
61
- ts.factory.createExpressionStatement(
62
- decode(p.key.constants[0]!.values[0].value as string)(p.value),
63
- ),
64
- ),
65
- ts.factory.createReturnStatement(
66
- ts.factory.createIdentifier("output"),
67
- ),
68
- ],
69
- true,
70
- ),
71
- );
72
- };
73
-
74
- const decode =
75
- (key: string) =>
76
- (value: Metadata): ts.CallExpression =>
77
- !!value.arrays.length
78
- ? ts.factory.createCallExpression(
79
- IdentifierFactory.access(
80
- IdentifierFactory.access(
81
- ts.factory.createIdentifier("input"),
82
- key,
83
- ),
84
- "forEach",
85
- ),
86
- undefined,
87
- [
88
- ts.factory.createArrowFunction(
89
- undefined,
90
- undefined,
91
- [IdentifierFactory.parameter("elem")],
92
- undefined,
93
- undefined,
94
- append(key)(ts.factory.createIdentifier("elem")),
95
- ),
96
- ],
97
- )
98
- : append(key)(
99
- IdentifierFactory.access(ts.factory.createIdentifier("input"), key),
100
- );
101
-
102
- const append = (key: string) => (elem: ts.Expression) =>
103
- ts.factory.createCallExpression(
104
- IdentifierFactory.access(ts.factory.createIdentifier("output"), "append"),
105
- undefined,
106
- [ts.factory.createStringLiteral(key), elem],
107
- );
108
- }
1
+ import ts from "typescript";
2
+ import { IdentifierFactory } from "typia/lib/factories/IdentifierFactory";
3
+ import { MetadataCollection } from "typia/lib/factories/MetadataCollection";
4
+ import { MetadataFactory } from "typia/lib/factories/MetadataFactory";
5
+ import { StatementFactory } from "typia/lib/factories/StatementFactory";
6
+ import { FunctionProgrammer } from "typia/lib/programmers/helpers/FunctionProgrammer";
7
+ import { HttpQueryProgrammer } from "typia/lib/programmers/http/HttpQueryProgrammer";
8
+ import { Metadata } from "typia/lib/schemas/metadata/Metadata";
9
+ import { MetadataObject } from "typia/lib/schemas/metadata/MetadataObject";
10
+ import { ITypiaContext } from "typia/lib/transformers/ITypiaContext";
11
+ import { TransformerError } from "typia/lib/transformers/TransformerError";
12
+
13
+ export namespace HttpQuerifyProgrammer {
14
+ export const write = (props: {
15
+ context: ITypiaContext;
16
+ modulo: ts.LeftHandSideExpression;
17
+ type: ts.Type;
18
+ }): ts.ArrowFunction => {
19
+ // GET OBJECT TYPE
20
+ const functor: FunctionProgrammer = new FunctionProgrammer(
21
+ props.modulo.getText(),
22
+ );
23
+ const collection: MetadataCollection = new MetadataCollection();
24
+ const result = MetadataFactory.analyze({
25
+ checker: props.context.checker,
26
+ transformer: props.context.transformer,
27
+ options: {
28
+ escape: false,
29
+ constant: true,
30
+ absorb: true,
31
+ validate: HttpQueryProgrammer.validate,
32
+ },
33
+ type: props.type,
34
+ collection,
35
+ });
36
+ if (result.success === false)
37
+ throw TransformerError.from({
38
+ code: functor.method,
39
+ errors: result.errors,
40
+ });
41
+
42
+ const object: MetadataObject = result.data.objects[0]!;
43
+ return ts.factory.createArrowFunction(
44
+ undefined,
45
+ undefined,
46
+ [IdentifierFactory.parameter("input")],
47
+ undefined,
48
+ undefined,
49
+ ts.factory.createBlock(
50
+ [
51
+ ...functor.declare(),
52
+ StatementFactory.constant({
53
+ name: "output",
54
+ value: ts.factory.createNewExpression(
55
+ ts.factory.createIdentifier("URLSearchParams"),
56
+ undefined,
57
+ [],
58
+ ),
59
+ }),
60
+ ...object.type.properties.map((p) =>
61
+ ts.factory.createExpressionStatement(
62
+ decode(p.key.constants[0]!.values[0].value as string)(p.value),
63
+ ),
64
+ ),
65
+ ts.factory.createReturnStatement(
66
+ ts.factory.createIdentifier("output"),
67
+ ),
68
+ ],
69
+ true,
70
+ ),
71
+ );
72
+ };
73
+
74
+ const decode =
75
+ (key: string) =>
76
+ (value: Metadata): ts.CallExpression =>
77
+ !!value.arrays.length
78
+ ? ts.factory.createCallExpression(
79
+ IdentifierFactory.access(
80
+ IdentifierFactory.access(
81
+ ts.factory.createIdentifier("input"),
82
+ key,
83
+ ),
84
+ "forEach",
85
+ ),
86
+ undefined,
87
+ [
88
+ ts.factory.createArrowFunction(
89
+ undefined,
90
+ undefined,
91
+ [IdentifierFactory.parameter("elem")],
92
+ undefined,
93
+ undefined,
94
+ append(key)(ts.factory.createIdentifier("elem")),
95
+ ),
96
+ ],
97
+ )
98
+ : append(key)(
99
+ IdentifierFactory.access(ts.factory.createIdentifier("input"), key),
100
+ );
101
+
102
+ const append = (key: string) => (elem: ts.Expression) =>
103
+ ts.factory.createCallExpression(
104
+ IdentifierFactory.access(ts.factory.createIdentifier("output"), "append"),
105
+ undefined,
106
+ [ts.factory.createStringLiteral(key), elem],
107
+ );
108
+ }