@nestia/core 8.0.8 → 9.0.0-dev.20251107

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 (75) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +93 -93
  3. package/package.json +7 -8
  4. package/src/adaptors/WebSocketAdaptor.ts +429 -429
  5. package/src/decorators/DynamicModule.ts +44 -44
  6. package/src/decorators/EncryptedBody.ts +97 -97
  7. package/src/decorators/EncryptedController.ts +40 -40
  8. package/src/decorators/EncryptedModule.ts +98 -98
  9. package/src/decorators/EncryptedRoute.ts +213 -213
  10. package/src/decorators/HumanRoute.ts +22 -22
  11. package/src/decorators/NoTransformConfigurationError.ts +34 -34
  12. package/src/decorators/PlainBody.ts +76 -76
  13. package/src/decorators/SwaggerCustomizer.ts +97 -97
  14. package/src/decorators/SwaggerExample.ts +100 -100
  15. package/src/decorators/TypedBody.ts +57 -57
  16. package/src/decorators/TypedException.ts +147 -147
  17. package/src/decorators/TypedFormData.ts +195 -195
  18. package/src/decorators/TypedHeaders.ts +66 -66
  19. package/src/decorators/TypedParam.ts +77 -77
  20. package/src/decorators/TypedQuery.ts +234 -234
  21. package/src/decorators/TypedRoute.ts +196 -196
  22. package/src/decorators/WebSocketRoute.ts +242 -242
  23. package/src/decorators/internal/EncryptedConstant.ts +2 -2
  24. package/src/decorators/internal/IWebSocketRouteReflect.ts +23 -23
  25. package/src/decorators/internal/NoTransformConfigureError.ts +2 -2
  26. package/src/decorators/internal/get_path_and_querify.ts +94 -94
  27. package/src/decorators/internal/get_path_and_stringify.ts +110 -110
  28. package/src/decorators/internal/get_text_body.ts +16 -16
  29. package/src/decorators/internal/headers_to_object.ts +11 -11
  30. package/src/decorators/internal/is_request_body_undefined.ts +12 -12
  31. package/src/decorators/internal/load_controller.ts +45 -45
  32. package/src/decorators/internal/route_error.ts +43 -43
  33. package/src/decorators/internal/validate_request_body.ts +64 -64
  34. package/src/decorators/internal/validate_request_form_data.ts +67 -67
  35. package/src/decorators/internal/validate_request_headers.ts +76 -76
  36. package/src/decorators/internal/validate_request_query.ts +64 -64
  37. package/src/index.ts +5 -5
  38. package/src/module.ts +22 -22
  39. package/src/options/INestiaTransformOptions.ts +38 -38
  40. package/src/options/INestiaTransformProject.ts +8 -8
  41. package/src/options/IRequestBodyValidator.ts +20 -20
  42. package/src/options/IRequestFormDataProps.ts +27 -27
  43. package/src/options/IRequestHeadersValidator.ts +22 -22
  44. package/src/options/IRequestQueryValidator.ts +20 -20
  45. package/src/options/IResponseBodyQuerifier.ts +25 -25
  46. package/src/options/IResponseBodyStringifier.ts +30 -30
  47. package/src/programmers/PlainBodyProgrammer.ts +70 -70
  48. package/src/programmers/TypedBodyProgrammer.ts +142 -142
  49. package/src/programmers/TypedFormDataBodyProgrammer.ts +118 -118
  50. package/src/programmers/TypedHeadersProgrammer.ts +63 -63
  51. package/src/programmers/TypedParamProgrammer.ts +33 -33
  52. package/src/programmers/TypedQueryBodyProgrammer.ts +112 -112
  53. package/src/programmers/TypedQueryProgrammer.ts +114 -114
  54. package/src/programmers/TypedQueryRouteProgrammer.ts +105 -105
  55. package/src/programmers/TypedRouteProgrammer.ts +94 -94
  56. package/src/programmers/http/HttpAssertQuerifyProgrammer.ts +72 -72
  57. package/src/programmers/http/HttpIsQuerifyProgrammer.ts +75 -75
  58. package/src/programmers/http/HttpQuerifyProgrammer.ts +108 -108
  59. package/src/programmers/http/HttpValidateQuerifyProgrammer.ts +76 -76
  60. package/src/programmers/internal/CoreMetadataUtil.ts +21 -21
  61. package/src/transform.ts +35 -35
  62. package/src/transformers/FileTransformer.ts +110 -110
  63. package/src/transformers/MethodTransformer.ts +103 -103
  64. package/src/transformers/NodeTransformer.ts +23 -23
  65. package/src/transformers/ParameterDecoratorTransformer.ts +143 -143
  66. package/src/transformers/ParameterTransformer.ts +57 -57
  67. package/src/transformers/TypedRouteTransformer.ts +85 -85
  68. package/src/transformers/WebSocketRouteTransformer.ts +120 -120
  69. package/src/typings/Creator.ts +3 -3
  70. package/src/typings/get-function-location.d.ts +7 -7
  71. package/src/utils/ArrayUtil.ts +7 -7
  72. package/src/utils/ExceptionManager.ts +115 -115
  73. package/src/utils/Singleton.ts +16 -16
  74. package/src/utils/SourceFinder.ts +54 -54
  75. package/src/utils/VersioningStrategy.ts +27 -27
@@ -1,120 +1,120 @@
1
- import path from "path";
2
- import ts from "typescript";
3
-
4
- import { INestiaTransformContext } from "../options/INestiaTransformProject";
5
-
6
- export namespace WebSocketRouteTransformer {
7
- export const validate = (props: {
8
- context: INestiaTransformContext;
9
- decorator: ts.Decorator;
10
- method: ts.MethodDeclaration;
11
- }): ts.Decorator => {
12
- if (!ts.isCallExpression(props.decorator.expression))
13
- return props.decorator;
14
-
15
- // CHECK SIGNATURE
16
- const signature: ts.Signature | undefined =
17
- props.context.checker.getResolvedSignature(props.decorator.expression);
18
- if (!signature || !signature.declaration) return props.decorator;
19
- else if (isLocated(signature) === false) return props.decorator;
20
-
21
- const errors: ts.DiagnosticWithLocation[] = [];
22
- let accepted: boolean = false;
23
-
24
- const report = (node: ts.Node, message: string) => {
25
- errors.push(
26
- (ts as any).createDiagnosticForNode(node, {
27
- category: ts.DiagnosticCategory.Error,
28
- key: "nestia.core.WebSocketRoute",
29
- code: "(nestia.core.WebSocketRoute)" as any,
30
- message,
31
- }),
32
- );
33
- };
34
- props.method.parameters.forEach((param) => {
35
- const paramDecos: ts.Decorator[] = (param.modifiers ?? []).filter((m) =>
36
- ts.isDecorator(m),
37
- ) as ts.Decorator[];
38
- const category: string | null = (() => {
39
- if (paramDecos.length !== 1) return null;
40
- const decorator: ts.Decorator = paramDecos[0];
41
- const signature: ts.Signature | undefined = ts.isCallExpression(
42
- decorator.expression,
43
- )
44
- ? props.context.checker.getResolvedSignature(decorator.expression)
45
- : undefined;
46
- if (signature === undefined || isLocated(signature) === false)
47
- return null;
48
- return (
49
- decorator.expression.getText().split(".").at(-1)?.split("(")[0] ??
50
- null
51
- );
52
- })();
53
- if (category === null)
54
- report(
55
- param,
56
- `parameter ${JSON.stringify(param.name.getText())} is not decorated with nested function of WebSocketRoute module.`,
57
- );
58
- else if (category === "Acceptor") {
59
- accepted = true;
60
- if (
61
- param.type
62
- ?.getText()
63
- .split("<")[0]
64
- ?.split(".")
65
- .at(-1)
66
- ?.startsWith("WebSocketAcceptor") !== true
67
- )
68
- report(
69
- param,
70
- `parameter ${JSON.stringify(param.name.getText())} must have WebSocketAcceptor<Header, Provider, Listener> type.`,
71
- );
72
- } else if (category === "Driver") {
73
- if (
74
- param.type
75
- ?.getText()
76
- .split("<")[0]
77
- ?.split(".")
78
- .at(-1)
79
- ?.startsWith("Driver") !== true
80
- )
81
- report(
82
- param,
83
- `parameter ${JSON.stringify(param.name.getText())} must have Driver<Listener> type.`,
84
- );
85
- }
86
- });
87
- if (accepted === false)
88
- report(
89
- props.method,
90
- `method ${JSON.stringify(props.method.name.getText())} must have at least one parameter decorated by @WebSocketRoute.Acceptor().`,
91
- );
92
- for (const e of errors) props.context.extras.addDiagnostic(e);
93
- return props.decorator;
94
- };
95
- }
96
-
97
- const isLocated = (signature: ts.Signature) => {
98
- if (!signature.declaration) return false;
99
- const location: string = path.resolve(
100
- signature.declaration.getSourceFile().fileName,
101
- );
102
- return (
103
- location.indexOf(LIB_PATH) !== -1 || location.indexOf(MONO_PATH) !== -1
104
- );
105
- };
106
-
107
- const LIB_PATH = path.join(
108
- "@nestia",
109
- "core",
110
- "lib",
111
- "decorators",
112
- `WebSocketRoute.d.ts`,
113
- );
114
- const MONO_PATH = path.join(
115
- "packages",
116
- "core",
117
- "lib",
118
- "decorators",
119
- `WebSocketRoute.d.ts`,
120
- );
1
+ import path from "path";
2
+ import ts from "typescript";
3
+
4
+ import { INestiaTransformContext } from "../options/INestiaTransformProject";
5
+
6
+ export namespace WebSocketRouteTransformer {
7
+ export const validate = (props: {
8
+ context: INestiaTransformContext;
9
+ decorator: ts.Decorator;
10
+ method: ts.MethodDeclaration;
11
+ }): ts.Decorator => {
12
+ if (!ts.isCallExpression(props.decorator.expression))
13
+ return props.decorator;
14
+
15
+ // CHECK SIGNATURE
16
+ const signature: ts.Signature | undefined =
17
+ props.context.checker.getResolvedSignature(props.decorator.expression);
18
+ if (!signature || !signature.declaration) return props.decorator;
19
+ else if (isLocated(signature) === false) return props.decorator;
20
+
21
+ const errors: ts.DiagnosticWithLocation[] = [];
22
+ let accepted: boolean = false;
23
+
24
+ const report = (node: ts.Node, message: string) => {
25
+ errors.push(
26
+ (ts as any).createDiagnosticForNode(node, {
27
+ category: ts.DiagnosticCategory.Error,
28
+ key: "nestia.core.WebSocketRoute",
29
+ code: "(nestia.core.WebSocketRoute)" as any,
30
+ message,
31
+ }),
32
+ );
33
+ };
34
+ props.method.parameters.forEach((param) => {
35
+ const paramDecos: ts.Decorator[] = (param.modifiers ?? []).filter((m) =>
36
+ ts.isDecorator(m),
37
+ ) as ts.Decorator[];
38
+ const category: string | null = (() => {
39
+ if (paramDecos.length !== 1) return null;
40
+ const decorator: ts.Decorator = paramDecos[0];
41
+ const signature: ts.Signature | undefined = ts.isCallExpression(
42
+ decorator.expression,
43
+ )
44
+ ? props.context.checker.getResolvedSignature(decorator.expression)
45
+ : undefined;
46
+ if (signature === undefined || isLocated(signature) === false)
47
+ return null;
48
+ return (
49
+ decorator.expression.getText().split(".").at(-1)?.split("(")[0] ??
50
+ null
51
+ );
52
+ })();
53
+ if (category === null)
54
+ report(
55
+ param,
56
+ `parameter ${JSON.stringify(param.name.getText())} is not decorated with nested function of WebSocketRoute module.`,
57
+ );
58
+ else if (category === "Acceptor") {
59
+ accepted = true;
60
+ if (
61
+ param.type
62
+ ?.getText()
63
+ .split("<")[0]
64
+ ?.split(".")
65
+ .at(-1)
66
+ ?.startsWith("WebSocketAcceptor") !== true
67
+ )
68
+ report(
69
+ param,
70
+ `parameter ${JSON.stringify(param.name.getText())} must have WebSocketAcceptor<Header, Provider, Listener> type.`,
71
+ );
72
+ } else if (category === "Driver") {
73
+ if (
74
+ param.type
75
+ ?.getText()
76
+ .split("<")[0]
77
+ ?.split(".")
78
+ .at(-1)
79
+ ?.startsWith("Driver") !== true
80
+ )
81
+ report(
82
+ param,
83
+ `parameter ${JSON.stringify(param.name.getText())} must have Driver<Listener> type.`,
84
+ );
85
+ }
86
+ });
87
+ if (accepted === false)
88
+ report(
89
+ props.method,
90
+ `method ${JSON.stringify(props.method.name.getText())} must have at least one parameter decorated by @WebSocketRoute.Acceptor().`,
91
+ );
92
+ for (const e of errors) props.context.extras.addDiagnostic(e);
93
+ return props.decorator;
94
+ };
95
+ }
96
+
97
+ const isLocated = (signature: ts.Signature) => {
98
+ if (!signature.declaration) return false;
99
+ const location: string = path.resolve(
100
+ signature.declaration.getSourceFile().fileName,
101
+ );
102
+ return (
103
+ location.indexOf(LIB_PATH) !== -1 || location.indexOf(MONO_PATH) !== -1
104
+ );
105
+ };
106
+
107
+ const LIB_PATH = path.join(
108
+ "@nestia",
109
+ "core",
110
+ "lib",
111
+ "decorators",
112
+ `WebSocketRoute.d.ts`,
113
+ );
114
+ const MONO_PATH = path.join(
115
+ "packages",
116
+ "core",
117
+ "lib",
118
+ "decorators",
119
+ `WebSocketRoute.d.ts`,
120
+ );
@@ -1,3 +1,3 @@
1
- export type Creator<T extends object> = {
2
- new (...args: any[]): T;
3
- };
1
+ export type Creator<T extends object> = {
2
+ new (...args: any[]): T;
3
+ };
@@ -1,7 +1,7 @@
1
- declare module "get-function-location" {
2
- export default function (func: any): Promise<{
3
- source: string;
4
- line: number;
5
- column: number;
6
- }>;
7
- }
1
+ declare module "get-function-location" {
2
+ export default function (func: any): Promise<{
3
+ source: string;
4
+ line: number;
5
+ column: number;
6
+ }>;
7
+ }
@@ -1,7 +1,7 @@
1
- export namespace ArrayUtil {
2
- export function has<T>(array: T[], ...items: T[]): boolean {
3
- return items.every(
4
- (elem) => array.find((org) => org === elem) !== undefined,
5
- );
6
- }
7
- }
1
+ export namespace ArrayUtil {
2
+ export function has<T>(array: T[], ...items: T[]): boolean {
3
+ return items.every(
4
+ (elem) => array.find((org) => org === elem) !== undefined,
5
+ );
6
+ }
7
+ }
@@ -1,115 +1,115 @@
1
- import { HttpError } from "@nestia/fetcher";
2
- import { HttpException } from "@nestjs/common";
3
-
4
- import { Creator } from "../typings/Creator";
5
-
6
- /**
7
- * Exception manager for HTTP server.
8
- *
9
- * `ExceptionManager` is an utility class who can insert or erase custom error
10
- * class with its conversion method to a regular {@link nest.HttpException}
11
- * instance.
12
- *
13
- * If you define an API function through {@link TypedRoute} or
14
- * {@link EncryptedRoute} instead of the basic router decorator functions like
15
- * {@link nest.Get} or {@link nest.Post} and the API function throws a custom
16
- * error whose class has been {@link ExceptionManager.insert inserted} in this
17
- * `EntityManager`, the error would be automatically converted to the regular
18
- * {@link nest.HttpException} instance by the {@link ExceptionManager.Closure}
19
- * function.
20
- *
21
- * Therefore, with this `ExceptionManager` and {@link TypedRoute} or
22
- * {@link EncryptedRoute}, you can manage your custom error classes much
23
- * systemtically. You can avoid 500 internal server error or hard coding
24
- * implementation about the custom error classes.
25
- *
26
- * Below error classes are defaultly configured in this `ExceptionManager`
27
- *
28
- * - `typia.TypeGuardError`
29
- * - `@nestia/fetcher.HttpError`
30
- *
31
- * @author Jeongho Nam - https://github.com/samchon
32
- */
33
- export namespace ExceptionManager {
34
- /**
35
- * Insert an error class with converter.
36
- *
37
- * If you've inserted an duplicated error class, the closure would be
38
- * overwritten.
39
- *
40
- * @param creator Target error class
41
- * @param closure A closure function converting to the `HttpException` class
42
- */
43
- export function insert<T extends Error>(
44
- creator: Creator<T>,
45
- closure: Closure<T>,
46
- ): void {
47
- const index: number = tuples.findIndex((tuple) => tuple[0] === creator);
48
- if (index !== -1) tuples.splice(index, 1);
49
-
50
- tuples.push([creator, closure]);
51
- tuples.sort(([x], [y]) => (x.prototype instanceof y ? -1 : 1));
52
- }
53
-
54
- /**
55
- * Erase an error class.
56
- *
57
- * @param creator Target error class
58
- * @returns Whether be erased or not
59
- */
60
- export function erase<T extends Error>(creator: Creator<T>): boolean {
61
- const index: number = tuples.findIndex((tuple) => tuple[0] === creator);
62
- if (index === -1) return false;
63
-
64
- tuples.splice(index, 1);
65
- return true;
66
- }
67
-
68
- export function on(closure: (error: any) => any): void {
69
- listeners.add(closure);
70
- }
71
-
72
- export function off(closure: (error: any) => any): void {
73
- listeners.delete(closure);
74
- }
75
-
76
- /**
77
- * Type of a closure function converting to the regular
78
- * {@link nest.HttpException}.
79
- *
80
- * `ExceptionManager.Closure` is a type of closure function who are converting
81
- * from custom error to the regular {@link nest.HttpException} instance. It
82
- * would be used in the {@link ExceptionManager} with {@link TypedRoute} or
83
- * {@link EncryptedRoute}.
84
- */
85
- export interface Closure<T extends Error> {
86
- /**
87
- * Error converter.
88
- *
89
- * Convert from custom error to the regular {@link nest.HttpException}
90
- * instance.
91
- *
92
- * @param exception Custom error instance
93
- * @returns Regular {@link nest.HttpException} instance
94
- */
95
- (exception: T): HttpException;
96
- }
97
-
98
- /** @internal */
99
- export const tuples: Array<[Creator<any>, Closure<any>]> = [];
100
-
101
- /** @internal */
102
- export const listeners: Set<(error: any) => any> = new Set();
103
- }
104
-
105
- ExceptionManager.insert(
106
- HttpError,
107
- (error) =>
108
- new HttpException(
109
- {
110
- path: error.path,
111
- message: error.message,
112
- },
113
- error.status,
114
- ),
115
- );
1
+ import { HttpError } from "@nestia/fetcher";
2
+ import { HttpException } from "@nestjs/common";
3
+
4
+ import { Creator } from "../typings/Creator";
5
+
6
+ /**
7
+ * Exception manager for HTTP server.
8
+ *
9
+ * `ExceptionManager` is an utility class who can insert or erase custom error
10
+ * class with its conversion method to a regular {@link nest.HttpException}
11
+ * instance.
12
+ *
13
+ * If you define an API function through {@link TypedRoute} or
14
+ * {@link EncryptedRoute} instead of the basic router decorator functions like
15
+ * {@link nest.Get} or {@link nest.Post} and the API function throws a custom
16
+ * error whose class has been {@link ExceptionManager.insert inserted} in this
17
+ * `EntityManager`, the error would be automatically converted to the regular
18
+ * {@link nest.HttpException} instance by the {@link ExceptionManager.Closure}
19
+ * function.
20
+ *
21
+ * Therefore, with this `ExceptionManager` and {@link TypedRoute} or
22
+ * {@link EncryptedRoute}, you can manage your custom error classes much
23
+ * systemtically. You can avoid 500 internal server error or hard coding
24
+ * implementation about the custom error classes.
25
+ *
26
+ * Below error classes are defaultly configured in this `ExceptionManager`
27
+ *
28
+ * - `typia.TypeGuardError`
29
+ * - `@nestia/fetcher.HttpError`
30
+ *
31
+ * @author Jeongho Nam - https://github.com/samchon
32
+ */
33
+ export namespace ExceptionManager {
34
+ /**
35
+ * Insert an error class with converter.
36
+ *
37
+ * If you've inserted an duplicated error class, the closure would be
38
+ * overwritten.
39
+ *
40
+ * @param creator Target error class
41
+ * @param closure A closure function converting to the `HttpException` class
42
+ */
43
+ export function insert<T extends Error>(
44
+ creator: Creator<T>,
45
+ closure: Closure<T>,
46
+ ): void {
47
+ const index: number = tuples.findIndex((tuple) => tuple[0] === creator);
48
+ if (index !== -1) tuples.splice(index, 1);
49
+
50
+ tuples.push([creator, closure]);
51
+ tuples.sort(([x], [y]) => (x.prototype instanceof y ? -1 : 1));
52
+ }
53
+
54
+ /**
55
+ * Erase an error class.
56
+ *
57
+ * @param creator Target error class
58
+ * @returns Whether be erased or not
59
+ */
60
+ export function erase<T extends Error>(creator: Creator<T>): boolean {
61
+ const index: number = tuples.findIndex((tuple) => tuple[0] === creator);
62
+ if (index === -1) return false;
63
+
64
+ tuples.splice(index, 1);
65
+ return true;
66
+ }
67
+
68
+ export function on(closure: (error: any) => any): void {
69
+ listeners.add(closure);
70
+ }
71
+
72
+ export function off(closure: (error: any) => any): void {
73
+ listeners.delete(closure);
74
+ }
75
+
76
+ /**
77
+ * Type of a closure function converting to the regular
78
+ * {@link nest.HttpException}.
79
+ *
80
+ * `ExceptionManager.Closure` is a type of closure function who are converting
81
+ * from custom error to the regular {@link nest.HttpException} instance. It
82
+ * would be used in the {@link ExceptionManager} with {@link TypedRoute} or
83
+ * {@link EncryptedRoute}.
84
+ */
85
+ export interface Closure<T extends Error> {
86
+ /**
87
+ * Error converter.
88
+ *
89
+ * Convert from custom error to the regular {@link nest.HttpException}
90
+ * instance.
91
+ *
92
+ * @param exception Custom error instance
93
+ * @returns Regular {@link nest.HttpException} instance
94
+ */
95
+ (exception: T): HttpException;
96
+ }
97
+
98
+ /** @internal */
99
+ export const tuples: Array<[Creator<any>, Closure<any>]> = [];
100
+
101
+ /** @internal */
102
+ export const listeners: Set<(error: any) => any> = new Set();
103
+ }
104
+
105
+ ExceptionManager.insert(
106
+ HttpError,
107
+ (error) =>
108
+ new HttpException(
109
+ {
110
+ path: error.path,
111
+ message: error.message,
112
+ },
113
+ error.status,
114
+ ),
115
+ );
@@ -1,16 +1,16 @@
1
- /** @internal */
2
- export class Singleton<T> {
3
- private value_: T | object;
4
-
5
- public constructor(private readonly closure_: () => T) {
6
- this.value_ = NOT_MOUNTED_YET;
7
- }
8
-
9
- public get(): T {
10
- if (this.value_ === NOT_MOUNTED_YET) this.value_ = this.closure_();
11
- return this.value_ as T;
12
- }
13
- }
14
-
15
- /** @internal */
16
- const NOT_MOUNTED_YET = {};
1
+ /** @internal */
2
+ export class Singleton<T> {
3
+ private value_: T | object;
4
+
5
+ public constructor(private readonly closure_: () => T) {
6
+ this.value_ = NOT_MOUNTED_YET;
7
+ }
8
+
9
+ public get(): T {
10
+ if (this.value_ === NOT_MOUNTED_YET) this.value_ = this.closure_();
11
+ return this.value_ as T;
12
+ }
13
+ }
14
+
15
+ /** @internal */
16
+ const NOT_MOUNTED_YET = {};
@@ -1,54 +1,54 @@
1
- import fs from "fs";
2
- import { glob } from "glob";
3
- import path from "path";
4
-
5
- export namespace SourceFinder {
6
- export const find = async (props: IProps): Promise<string[]> => {
7
- const dict: Set<string> = new Set();
8
-
9
- await emplace(props.filter)(props.include)((str) => dict.add(str));
10
- if (props.exclude?.length)
11
- await emplace(props.filter)(props.exclude)((str) => dict.delete(str));
12
-
13
- return [...dict];
14
- };
15
-
16
- const emplace =
17
- (filter: (file: string) => boolean) =>
18
- (input: string[]) =>
19
- async (closure: (location: string) => void): Promise<void> => {
20
- for (const pattern of input) {
21
- for (const file of await _Glob(path.resolve(pattern))) {
22
- const stats: fs.Stats = await fs.promises.stat(file);
23
- if (stats.isDirectory() === true)
24
- await iterate(filter)(closure)(file);
25
- else if (stats.isFile() && filter(file)) closure(file);
26
- }
27
- }
28
- };
29
-
30
- const iterate =
31
- (filter: (location: string) => boolean) =>
32
- (closure: (location: string) => void) =>
33
- async (location: string): Promise<void> => {
34
- const directory: string[] = await fs.promises.readdir(location);
35
- for (const file of directory) {
36
- const next: string = path.resolve(`${location}/${file}`);
37
- const stats: fs.Stats = await fs.promises.stat(next);
38
-
39
- if (stats.isDirectory() === true) await iterate(filter)(closure)(next);
40
- else if (stats.isFile() && filter(next)) closure(next);
41
- }
42
- };
43
-
44
- const _Glob = async (pattern: string): Promise<string[]> => {
45
- const matches = await glob(pattern);
46
- return matches.map((str) => path.resolve(str));
47
- };
48
- }
49
-
50
- interface IProps {
51
- exclude?: string[];
52
- include: string[];
53
- filter: (location: string) => boolean;
54
- }
1
+ import fs from "fs";
2
+ import { glob } from "glob";
3
+ import path from "path";
4
+
5
+ export namespace SourceFinder {
6
+ export const find = async (props: IProps): Promise<string[]> => {
7
+ const dict: Set<string> = new Set();
8
+
9
+ await emplace(props.filter)(props.include)((str) => dict.add(str));
10
+ if (props.exclude?.length)
11
+ await emplace(props.filter)(props.exclude)((str) => dict.delete(str));
12
+
13
+ return [...dict];
14
+ };
15
+
16
+ const emplace =
17
+ (filter: (file: string) => boolean) =>
18
+ (input: string[]) =>
19
+ async (closure: (location: string) => void): Promise<void> => {
20
+ for (const pattern of input) {
21
+ for (const file of await _Glob(path.resolve(pattern))) {
22
+ const stats: fs.Stats = await fs.promises.stat(file);
23
+ if (stats.isDirectory() === true)
24
+ await iterate(filter)(closure)(file);
25
+ else if (stats.isFile() && filter(file)) closure(file);
26
+ }
27
+ }
28
+ };
29
+
30
+ const iterate =
31
+ (filter: (location: string) => boolean) =>
32
+ (closure: (location: string) => void) =>
33
+ async (location: string): Promise<void> => {
34
+ const directory: string[] = await fs.promises.readdir(location);
35
+ for (const file of directory) {
36
+ const next: string = path.resolve(`${location}/${file}`);
37
+ const stats: fs.Stats = await fs.promises.stat(next);
38
+
39
+ if (stats.isDirectory() === true) await iterate(filter)(closure)(next);
40
+ else if (stats.isFile() && filter(next)) closure(next);
41
+ }
42
+ };
43
+
44
+ const _Glob = async (pattern: string): Promise<string[]> => {
45
+ const matches = await glob(pattern);
46
+ return matches.map((str) => path.resolve(str));
47
+ };
48
+ }
49
+
50
+ interface IProps {
51
+ exclude?: string[];
52
+ include: string[];
53
+ filter: (location: string) => boolean;
54
+ }