@nestia/sdk 2.4.5 → 2.4.6

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 (66) hide show
  1. package/lib/analyses/ConfigAnalyzer.js +1 -1
  2. package/lib/analyses/ConfigAnalyzer.js.map +1 -1
  3. package/lib/analyses/ControllerAnalyzer.js.map +1 -1
  4. package/lib/analyses/PathAnalyzer.js.map +1 -1
  5. package/lib/analyses/ReflectAnalyzer.js.map +1 -1
  6. package/lib/executable/sdk.js +11 -11
  7. package/lib/generates/SwaggerGenerator.js.map +1 -1
  8. package/lib/generates/internal/SdkFunctionProgrammer.js +7 -7
  9. package/lib/generates/internal/SdkSimulationProgrammer.js.map +1 -1
  10. package/lib/generates/internal/SwaggerSchemaGenerator.js.map +1 -1
  11. package/package.json +3 -3
  12. package/src/INestiaConfig.ts +248 -248
  13. package/src/NestiaSdkApplication.ts +253 -253
  14. package/src/analyses/AccessorAnalyzer.ts +60 -60
  15. package/src/analyses/ConfigAnalyzer.ts +3 -3
  16. package/src/analyses/ControllerAnalyzer.ts +2 -2
  17. package/src/analyses/ExceptionAnalyzer.ts +115 -115
  18. package/src/analyses/GenericAnalyzer.ts +51 -51
  19. package/src/analyses/ImportAnalyzer.ts +138 -138
  20. package/src/analyses/PathAnalyzer.ts +14 -14
  21. package/src/analyses/ReflectAnalyzer.ts +9 -9
  22. package/src/analyses/SecurityAnalyzer.ts +20 -20
  23. package/src/executable/internal/CommandParser.ts +15 -15
  24. package/src/executable/internal/NestiaConfigLoader.ts +67 -67
  25. package/src/executable/internal/NestiaSdkCommand.ts +60 -60
  26. package/src/executable/sdk.ts +73 -73
  27. package/src/generates/E2eGenerator.ts +64 -64
  28. package/src/generates/SdkGenerator.ts +96 -96
  29. package/src/generates/SwaggerGenerator.ts +5 -5
  30. package/src/generates/internal/E2eFileProgrammer.ts +123 -123
  31. package/src/generates/internal/SdkDistributionComposer.ts +91 -91
  32. package/src/generates/internal/SdkDtoGenerator.ts +424 -424
  33. package/src/generates/internal/SdkFileProgrammer.ts +106 -106
  34. package/src/generates/internal/SdkFunctionProgrammer.ts +518 -518
  35. package/src/generates/internal/SdkImportWizard.ts +55 -55
  36. package/src/generates/internal/SdkRouteDirectory.ts +17 -17
  37. package/src/generates/internal/SdkSimulationProgrammer.ts +4 -4
  38. package/src/generates/internal/SdkTypeDefiner.ts +119 -119
  39. package/src/generates/internal/SwaggerSchemaGenerator.ts +16 -16
  40. package/src/generates/internal/SwaggerSchemaValidator.ts +198 -198
  41. package/src/index.ts +4 -4
  42. package/src/module.ts +2 -2
  43. package/src/structures/IController.ts +91 -91
  44. package/src/structures/IErrorReport.ts +6 -6
  45. package/src/structures/INestiaProject.ts +13 -13
  46. package/src/structures/INormalizedInput.ts +20 -20
  47. package/src/structures/IRoute.ts +52 -52
  48. package/src/structures/ISwagger.ts +91 -91
  49. package/src/structures/ISwaggerComponents.ts +29 -29
  50. package/src/structures/ISwaggerError.ts +8 -8
  51. package/src/structures/ISwaggerInfo.ts +80 -80
  52. package/src/structures/ISwaggerLazyProperty.ts +7 -7
  53. package/src/structures/ISwaggerLazySchema.ts +7 -7
  54. package/src/structures/ISwaggerRoute.ts +51 -51
  55. package/src/structures/ISwaggerSecurityScheme.ts +65 -65
  56. package/src/structures/ITypeTuple.ts +6 -6
  57. package/src/structures/MethodType.ts +5 -5
  58. package/src/structures/ParamCategory.ts +1 -1
  59. package/src/structures/TypeEntry.ts +22 -22
  60. package/src/utils/ArrayUtil.ts +26 -26
  61. package/src/utils/FileRetriever.ts +22 -22
  62. package/src/utils/ImportDictionary.ts +125 -125
  63. package/src/utils/MapUtil.ts +14 -14
  64. package/src/utils/PathUtil.ts +10 -10
  65. package/src/utils/SourceFinder.ts +66 -66
  66. package/src/utils/StripEnums.ts +5 -5
@@ -1,96 +1,96 @@
1
- import fs from "fs";
2
- import NodePath from "path";
3
- import { IPointer } from "tstl";
4
- import ts from "typescript";
5
-
6
- import { INestiaConfig } from "../INestiaConfig";
7
- import { IRoute } from "../structures/IRoute";
8
- import { SdkDistributionComposer } from "./internal/SdkDistributionComposer";
9
- import { SdkDtoGenerator } from "./internal/SdkDtoGenerator";
10
- import { SdkFileProgrammer } from "./internal/SdkFileProgrammer";
11
-
12
- export namespace SdkGenerator {
13
- export const generate =
14
- (checker: ts.TypeChecker) =>
15
- (config: INestiaConfig) =>
16
- async (routes: IRoute[]): Promise<void> => {
17
- console.log("Generating SDK Library");
18
-
19
- // PREPARE NEW DIRECTORIES
20
- try {
21
- await fs.promises.mkdir(config.output!);
22
- } catch {}
23
-
24
- // BUNDLING
25
- const bundle: string[] = await fs.promises.readdir(BUNDLE_PATH);
26
- for (const file of bundle) {
27
- const current: string = `${BUNDLE_PATH}/${file}`;
28
- const target: string = `${config.output}/${file}`;
29
- const stats: fs.Stats = await fs.promises.stat(current);
30
-
31
- if (stats.isFile() === true) {
32
- const content: string = await fs.promises.readFile(current, "utf8");
33
- if (fs.existsSync(target) === false)
34
- await fs.promises.writeFile(target, content, "utf8");
35
- else if (BUNDLE_CHANGES[file] !== undefined) {
36
- const r: IPointer<string> = {
37
- value: await fs.promises.readFile(target, "utf8"),
38
- };
39
- for (const [before, after] of BUNDLE_CHANGES[file])
40
- r.value = r.value.replace(before, after);
41
- await fs.promises.writeFile(target, r.value, "utf8");
42
- }
43
- }
44
- }
45
- if (
46
- config.simulate === true &&
47
- routes.some((r) => !!r.parameters.length)
48
- ) {
49
- try {
50
- await fs.promises.mkdir(`${config.output}/utils`);
51
- } catch {}
52
- await fs.promises.copyFile(
53
- `${BUNDLE_PATH}/utils/NestiaSimulator.ts`,
54
- `${config.output}/utils/NestiaSimulator.ts`,
55
- );
56
- }
57
-
58
- // STRUCTURES
59
- if (config.clone) await SdkDtoGenerator.generate(checker)(config)(routes);
60
-
61
- // FUNCTIONAL
62
- await SdkFileProgrammer.generate(config)(routes);
63
-
64
- // DISTRIBUTION
65
- if (config.distribute !== undefined)
66
- await SdkDistributionComposer.compose(config);
67
- };
68
-
69
- export const BUNDLE_PATH = NodePath.join(
70
- __dirname,
71
- "..",
72
- "..",
73
- "assets",
74
- "bundle",
75
- "api",
76
- );
77
- }
78
-
79
- const BUNDLE_CHANGES: Record<string, [string, string][]> = {
80
- "IConnection.ts": [
81
- [
82
- `export { IConnection } from "@nestia/fetcher"`,
83
- `export type { IConnection } from "@nestia/fetcher"`,
84
- ],
85
- ],
86
- "module.ts": [
87
- [`export * from "./IConnection"`, `export type * from "./IConnection"`],
88
- [`export * from "./Primitive"`, `export type * from "./Primitive"`],
89
- ],
90
- "Primitive.ts": [
91
- [
92
- `export { Primitive } from "@nestia/fetcher"`,
93
- `export type { Primitive } from "@nestia/fetcher"`,
94
- ],
95
- ],
96
- };
1
+ import fs from "fs";
2
+ import NodePath from "path";
3
+ import { IPointer } from "tstl";
4
+ import ts from "typescript";
5
+
6
+ import { INestiaConfig } from "../INestiaConfig";
7
+ import { IRoute } from "../structures/IRoute";
8
+ import { SdkDistributionComposer } from "./internal/SdkDistributionComposer";
9
+ import { SdkDtoGenerator } from "./internal/SdkDtoGenerator";
10
+ import { SdkFileProgrammer } from "./internal/SdkFileProgrammer";
11
+
12
+ export namespace SdkGenerator {
13
+ export const generate =
14
+ (checker: ts.TypeChecker) =>
15
+ (config: INestiaConfig) =>
16
+ async (routes: IRoute[]): Promise<void> => {
17
+ console.log("Generating SDK Library");
18
+
19
+ // PREPARE NEW DIRECTORIES
20
+ try {
21
+ await fs.promises.mkdir(config.output!);
22
+ } catch {}
23
+
24
+ // BUNDLING
25
+ const bundle: string[] = await fs.promises.readdir(BUNDLE_PATH);
26
+ for (const file of bundle) {
27
+ const current: string = `${BUNDLE_PATH}/${file}`;
28
+ const target: string = `${config.output}/${file}`;
29
+ const stats: fs.Stats = await fs.promises.stat(current);
30
+
31
+ if (stats.isFile() === true) {
32
+ const content: string = await fs.promises.readFile(current, "utf8");
33
+ if (fs.existsSync(target) === false)
34
+ await fs.promises.writeFile(target, content, "utf8");
35
+ else if (BUNDLE_CHANGES[file] !== undefined) {
36
+ const r: IPointer<string> = {
37
+ value: await fs.promises.readFile(target, "utf8"),
38
+ };
39
+ for (const [before, after] of BUNDLE_CHANGES[file])
40
+ r.value = r.value.replace(before, after);
41
+ await fs.promises.writeFile(target, r.value, "utf8");
42
+ }
43
+ }
44
+ }
45
+ if (
46
+ config.simulate === true &&
47
+ routes.some((r) => !!r.parameters.length)
48
+ ) {
49
+ try {
50
+ await fs.promises.mkdir(`${config.output}/utils`);
51
+ } catch {}
52
+ await fs.promises.copyFile(
53
+ `${BUNDLE_PATH}/utils/NestiaSimulator.ts`,
54
+ `${config.output}/utils/NestiaSimulator.ts`,
55
+ );
56
+ }
57
+
58
+ // STRUCTURES
59
+ if (config.clone) await SdkDtoGenerator.generate(checker)(config)(routes);
60
+
61
+ // FUNCTIONAL
62
+ await SdkFileProgrammer.generate(config)(routes);
63
+
64
+ // DISTRIBUTION
65
+ if (config.distribute !== undefined)
66
+ await SdkDistributionComposer.compose(config);
67
+ };
68
+
69
+ export const BUNDLE_PATH = NodePath.join(
70
+ __dirname,
71
+ "..",
72
+ "..",
73
+ "assets",
74
+ "bundle",
75
+ "api",
76
+ );
77
+ }
78
+
79
+ const BUNDLE_CHANGES: Record<string, [string, string][]> = {
80
+ "IConnection.ts": [
81
+ [
82
+ `export { IConnection } from "@nestia/fetcher"`,
83
+ `export type { IConnection } from "@nestia/fetcher"`,
84
+ ],
85
+ ],
86
+ "module.ts": [
87
+ [`export * from "./IConnection"`, `export type * from "./IConnection"`],
88
+ [`export * from "./Primitive"`, `export type * from "./Primitive"`],
89
+ ],
90
+ "Primitive.ts": [
91
+ [
92
+ `export { Primitive } from "@nestia/fetcher"`,
93
+ `export type { Primitive } from "@nestia/fetcher"`,
94
+ ],
95
+ ],
96
+ };
@@ -233,11 +233,11 @@ export namespace SwaggerGenerator {
233
233
  ? typeof data.license === "string"
234
234
  ? { name: data.license }
235
235
  : typeof data.license === "object"
236
- ? {
237
- name: data.license.type,
238
- url: data.license.url,
239
- }
240
- : undefined
236
+ ? {
237
+ name: data.license.type,
238
+ url: data.license.url,
239
+ }
240
+ : undefined
241
241
  : undefined,
242
242
  };
243
243
  } catch {
@@ -1,123 +1,123 @@
1
- import fs from "fs";
2
-
3
- import { INestiaConfig } from "../../INestiaConfig";
4
- import { IRoute } from "../../structures/IRoute";
5
- import { ImportDictionary } from "../../utils/ImportDictionary";
6
- import { SdkDtoGenerator } from "./SdkDtoGenerator";
7
- import { SdkImportWizard } from "./SdkImportWizard";
8
- import { SdkTypeDefiner } from "./SdkTypeDefiner";
9
-
10
- export namespace E2eFileProgrammer {
11
- export const generate =
12
- (config: INestiaConfig) =>
13
- (props: { api: string; current: string }) =>
14
- async (route: IRoute): Promise<void> => {
15
- const importer: ImportDictionary = new ImportDictionary(
16
- `${props.current}/${name(route)}.ts`,
17
- );
18
- if (config.clone !== true)
19
- for (const tuple of route.imports)
20
- for (const instance of tuple[1])
21
- importer.internal({
22
- file: tuple[0],
23
- type: true,
24
- instance,
25
- });
26
- importer.internal({
27
- type: false,
28
- file: props.api,
29
- instance: null,
30
- name: "api",
31
- });
32
-
33
- const body: string = arrow(config)(importer)(route);
34
- const content: string = [importer.toScript(props.current), "", body].join(
35
- "\n",
36
- );
37
-
38
- await fs.promises.writeFile(importer.file, content, "utf8");
39
- };
40
-
41
- const arrow =
42
- (config: INestiaConfig) =>
43
- (importer: ImportDictionary) =>
44
- (route: IRoute): string => {
45
- const tab: number = 2;
46
- const headers = route.parameters.find(
47
- (p) => p.category === "headers" && p.field === undefined,
48
- );
49
- const output = [
50
- `await ${accessor(route)}(`,
51
- headers !== undefined
52
- ? [
53
- "{",
54
- " ...connection,",
55
- " headers: {",
56
- " ...(connection.headers ?? {}),",
57
- ` ...${SdkImportWizard.typia(
58
- importer,
59
- )}.random<${getTypeName(config)(importer)(headers)}>(),`,
60
- " },",
61
- "},",
62
- ]
63
- .map((line) => `${" ".repeat(tab * 4)}${line}`)
64
- .join("\n")
65
- : `${" ".repeat(tab * 4)}connection,`,
66
- ...route.parameters
67
- .filter((param) => param.category !== "headers")
68
- .map(parameter(config)(importer)(tab)),
69
- `${" ".repeat((tab - 1) * 4)});`,
70
- ].join("\n");
71
- return [
72
- `export const ${name(route)} = async (`,
73
- ` connection: api.IConnection`,
74
- `): Promise<void> => {`,
75
- ...(route.output.typeName === "void"
76
- ? [` ${output}`]
77
- : [
78
- ` const output: ${SdkTypeDefiner.output(config)(importer)(
79
- route,
80
- )} = ${output}`,
81
- ` ${SdkImportWizard.typia(importer)}.assert(output);`,
82
- ]),
83
- `};`,
84
- ].join("\n");
85
- };
86
-
87
- const parameter =
88
- (config: INestiaConfig) =>
89
- (importer: ImportDictionary) =>
90
- (tab: number) =>
91
- (param: IRoute.IParameter): string => {
92
- const middle: string = `${SdkImportWizard.typia(importer)}.random<${wrap(
93
- config,
94
- )(importer)(
95
- getTypeName(config)(importer)(param),
96
- param.category === "body",
97
- )}>()`;
98
- return `${" ".repeat(4 * tab)}${middle},`;
99
- };
100
-
101
- const name = (route: IRoute): string =>
102
- ["test", "api", ...route.accessors].join("_");
103
-
104
- const accessor = (route: IRoute): string =>
105
- ["api", "functional", ...route.accessors].join(".");
106
-
107
- const wrap =
108
- (config: INestiaConfig) =>
109
- (importer: ImportDictionary) =>
110
- (name: string, body: boolean): string =>
111
- config.primitive === false
112
- ? name
113
- : `${(body ? SdkImportWizard.Primitive : SdkImportWizard.Resolved)(
114
- importer,
115
- )}<${name}>`;
116
- }
117
- const getTypeName =
118
- (config: INestiaConfig) =>
119
- (importer: ImportDictionary) =>
120
- (p: IRoute.IParameter | IRoute.IOutput) =>
121
- p.metadata
122
- ? SdkDtoGenerator.decode(config)(importer)(p.metadata)
123
- : p.typeName;
1
+ import fs from "fs";
2
+
3
+ import { INestiaConfig } from "../../INestiaConfig";
4
+ import { IRoute } from "../../structures/IRoute";
5
+ import { ImportDictionary } from "../../utils/ImportDictionary";
6
+ import { SdkDtoGenerator } from "./SdkDtoGenerator";
7
+ import { SdkImportWizard } from "./SdkImportWizard";
8
+ import { SdkTypeDefiner } from "./SdkTypeDefiner";
9
+
10
+ export namespace E2eFileProgrammer {
11
+ export const generate =
12
+ (config: INestiaConfig) =>
13
+ (props: { api: string; current: string }) =>
14
+ async (route: IRoute): Promise<void> => {
15
+ const importer: ImportDictionary = new ImportDictionary(
16
+ `${props.current}/${name(route)}.ts`,
17
+ );
18
+ if (config.clone !== true)
19
+ for (const tuple of route.imports)
20
+ for (const instance of tuple[1])
21
+ importer.internal({
22
+ file: tuple[0],
23
+ type: true,
24
+ instance,
25
+ });
26
+ importer.internal({
27
+ type: false,
28
+ file: props.api,
29
+ instance: null,
30
+ name: "api",
31
+ });
32
+
33
+ const body: string = arrow(config)(importer)(route);
34
+ const content: string = [importer.toScript(props.current), "", body].join(
35
+ "\n",
36
+ );
37
+
38
+ await fs.promises.writeFile(importer.file, content, "utf8");
39
+ };
40
+
41
+ const arrow =
42
+ (config: INestiaConfig) =>
43
+ (importer: ImportDictionary) =>
44
+ (route: IRoute): string => {
45
+ const tab: number = 2;
46
+ const headers = route.parameters.find(
47
+ (p) => p.category === "headers" && p.field === undefined,
48
+ );
49
+ const output = [
50
+ `await ${accessor(route)}(`,
51
+ headers !== undefined
52
+ ? [
53
+ "{",
54
+ " ...connection,",
55
+ " headers: {",
56
+ " ...(connection.headers ?? {}),",
57
+ ` ...${SdkImportWizard.typia(
58
+ importer,
59
+ )}.random<${getTypeName(config)(importer)(headers)}>(),`,
60
+ " },",
61
+ "},",
62
+ ]
63
+ .map((line) => `${" ".repeat(tab * 4)}${line}`)
64
+ .join("\n")
65
+ : `${" ".repeat(tab * 4)}connection,`,
66
+ ...route.parameters
67
+ .filter((param) => param.category !== "headers")
68
+ .map(parameter(config)(importer)(tab)),
69
+ `${" ".repeat((tab - 1) * 4)});`,
70
+ ].join("\n");
71
+ return [
72
+ `export const ${name(route)} = async (`,
73
+ ` connection: api.IConnection`,
74
+ `): Promise<void> => {`,
75
+ ...(route.output.typeName === "void"
76
+ ? [` ${output}`]
77
+ : [
78
+ ` const output: ${SdkTypeDefiner.output(config)(importer)(
79
+ route,
80
+ )} = ${output}`,
81
+ ` ${SdkImportWizard.typia(importer)}.assert(output);`,
82
+ ]),
83
+ `};`,
84
+ ].join("\n");
85
+ };
86
+
87
+ const parameter =
88
+ (config: INestiaConfig) =>
89
+ (importer: ImportDictionary) =>
90
+ (tab: number) =>
91
+ (param: IRoute.IParameter): string => {
92
+ const middle: string = `${SdkImportWizard.typia(importer)}.random<${wrap(
93
+ config,
94
+ )(importer)(
95
+ getTypeName(config)(importer)(param),
96
+ param.category === "body",
97
+ )}>()`;
98
+ return `${" ".repeat(4 * tab)}${middle},`;
99
+ };
100
+
101
+ const name = (route: IRoute): string =>
102
+ ["test", "api", ...route.accessors].join("_");
103
+
104
+ const accessor = (route: IRoute): string =>
105
+ ["api", "functional", ...route.accessors].join(".");
106
+
107
+ const wrap =
108
+ (config: INestiaConfig) =>
109
+ (importer: ImportDictionary) =>
110
+ (name: string, body: boolean): string =>
111
+ config.primitive === false
112
+ ? name
113
+ : `${(body ? SdkImportWizard.Primitive : SdkImportWizard.Resolved)(
114
+ importer,
115
+ )}<${name}>`;
116
+ }
117
+ const getTypeName =
118
+ (config: INestiaConfig) =>
119
+ (importer: ImportDictionary) =>
120
+ (p: IRoute.IParameter | IRoute.IOutput) =>
121
+ p.metadata
122
+ ? SdkDtoGenerator.decode(config)(importer)(p.metadata)
123
+ : p.typeName;
@@ -1,91 +1,91 @@
1
- import cp from "child_process";
2
- import fs from "fs";
3
- import path from "path";
4
-
5
- import { INestiaConfig } from "../../INestiaConfig";
6
-
7
- export namespace SdkDistributionComposer {
8
- export const compose = async (config: INestiaConfig) => {
9
- if (!fs.existsSync(config.distribute!))
10
- await fs.promises.mkdir(config.distribute!);
11
-
12
- const root: string = process.cwd();
13
- const output: string = path.resolve(config.output!);
14
- process.chdir(config.distribute!);
15
-
16
- const exit = () => process.chdir(root);
17
- if (await configured()) return exit();
18
-
19
- // COPY FILES
20
- console.log("Composing SDK distribution environments...");
21
- for (const file of await fs.promises.readdir(BUNDLE))
22
- await fs.promises.copyFile(`${BUNDLE}/${file}`, file);
23
-
24
- // CONFIGURE PATHS
25
- for (const file of ["package.json", "tsconfig.json"])
26
- await replace({ root, output })(file);
27
-
28
- // INSTALL PACKAGES
29
- const versions: IDependencies = await dependencies();
30
- execute("npm install --save-dev rimraf");
31
- execute(
32
- `npm install --save @nestia/fetcher@${versions["@nestia/fetcher"]}`,
33
- );
34
- execute(`npm install --save typia@${versions["typia"]}`);
35
- execute("npx typia setup --manager npm");
36
-
37
- exit();
38
- };
39
-
40
- const configured = async (): Promise<boolean> =>
41
- ["package.json", "tsconfig.json"].every(fs.existsSync) &&
42
- (await (async () => {
43
- const content = JSON.parse(
44
- await fs.promises.readFile("package.json", "utf8"),
45
- );
46
- return !!content.dependencies?.["@nestia/fetcher"];
47
- })());
48
-
49
- const execute = (command: string) => {
50
- console.log(` - ${command}`);
51
- cp.execSync(command, { stdio: "ignore" });
52
- };
53
-
54
- const replace =
55
- (props: { root: string; output: string }) =>
56
- async (file: string): Promise<void> => {
57
- const relative = (from: string) => (to: string) =>
58
- path.relative(from, to).split("\\").join("/");
59
- const root: string = relative(process.cwd())(props.root);
60
- const output: string = relative(process.cwd())(props.output);
61
- const current: string = relative(props.root)(process.cwd());
62
-
63
- const content: string = await fs.promises.readFile(file, "utf8");
64
- await fs.promises.writeFile(
65
- file,
66
- content
67
- .split("${root}")
68
- .join(root)
69
- .split("${output}")
70
- .join(output)
71
- .split("${current}")
72
- .join(current),
73
- "utf8",
74
- );
75
- };
76
-
77
- const dependencies = async () => {
78
- const content: string = await fs.promises.readFile(
79
- __dirname + "/../../../package.json",
80
- "utf8",
81
- );
82
- const json: { dependencies: IDependencies } = JSON.parse(content);
83
- return json.dependencies;
84
- };
85
- }
86
-
87
- interface IDependencies {
88
- "@nestia/fetcher": string;
89
- typia: string;
90
- }
91
- const BUNDLE = __dirname + "/../../../assets/bundle/distribute";
1
+ import cp from "child_process";
2
+ import fs from "fs";
3
+ import path from "path";
4
+
5
+ import { INestiaConfig } from "../../INestiaConfig";
6
+
7
+ export namespace SdkDistributionComposer {
8
+ export const compose = async (config: INestiaConfig) => {
9
+ if (!fs.existsSync(config.distribute!))
10
+ await fs.promises.mkdir(config.distribute!);
11
+
12
+ const root: string = process.cwd();
13
+ const output: string = path.resolve(config.output!);
14
+ process.chdir(config.distribute!);
15
+
16
+ const exit = () => process.chdir(root);
17
+ if (await configured()) return exit();
18
+
19
+ // COPY FILES
20
+ console.log("Composing SDK distribution environments...");
21
+ for (const file of await fs.promises.readdir(BUNDLE))
22
+ await fs.promises.copyFile(`${BUNDLE}/${file}`, file);
23
+
24
+ // CONFIGURE PATHS
25
+ for (const file of ["package.json", "tsconfig.json"])
26
+ await replace({ root, output })(file);
27
+
28
+ // INSTALL PACKAGES
29
+ const versions: IDependencies = await dependencies();
30
+ execute("npm install --save-dev rimraf");
31
+ execute(
32
+ `npm install --save @nestia/fetcher@${versions["@nestia/fetcher"]}`,
33
+ );
34
+ execute(`npm install --save typia@${versions["typia"]}`);
35
+ execute("npx typia setup --manager npm");
36
+
37
+ exit();
38
+ };
39
+
40
+ const configured = async (): Promise<boolean> =>
41
+ ["package.json", "tsconfig.json"].every(fs.existsSync) &&
42
+ (await (async () => {
43
+ const content = JSON.parse(
44
+ await fs.promises.readFile("package.json", "utf8"),
45
+ );
46
+ return !!content.dependencies?.["@nestia/fetcher"];
47
+ })());
48
+
49
+ const execute = (command: string) => {
50
+ console.log(` - ${command}`);
51
+ cp.execSync(command, { stdio: "ignore" });
52
+ };
53
+
54
+ const replace =
55
+ (props: { root: string; output: string }) =>
56
+ async (file: string): Promise<void> => {
57
+ const relative = (from: string) => (to: string) =>
58
+ path.relative(from, to).split("\\").join("/");
59
+ const root: string = relative(process.cwd())(props.root);
60
+ const output: string = relative(process.cwd())(props.output);
61
+ const current: string = relative(props.root)(process.cwd());
62
+
63
+ const content: string = await fs.promises.readFile(file, "utf8");
64
+ await fs.promises.writeFile(
65
+ file,
66
+ content
67
+ .split("${root}")
68
+ .join(root)
69
+ .split("${output}")
70
+ .join(output)
71
+ .split("${current}")
72
+ .join(current),
73
+ "utf8",
74
+ );
75
+ };
76
+
77
+ const dependencies = async () => {
78
+ const content: string = await fs.promises.readFile(
79
+ __dirname + "/../../../package.json",
80
+ "utf8",
81
+ );
82
+ const json: { dependencies: IDependencies } = JSON.parse(content);
83
+ return json.dependencies;
84
+ };
85
+ }
86
+
87
+ interface IDependencies {
88
+ "@nestia/fetcher": string;
89
+ typia: string;
90
+ }
91
+ const BUNDLE = __dirname + "/../../../assets/bundle/distribute";