Spaces:
Sleeping
Sleeping
Merge pull request #62 from Modarb-Ai-Trainer/docs
Browse files
src/lib/decorators/swagger-query.decorator.ts
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { swaggerRegistry } from "@lib/swagger/swagger";
|
2 |
+
import { getCallingFileName } from "@lib/utils/calling-file.helper";
|
3 |
+
|
4 |
+
type QueryType = "string" | "number" | "boolean";
|
5 |
+
|
6 |
+
export const SwaggerQuery = (
|
7 |
+
querySchema: Record<
|
8 |
+
string,
|
9 |
+
| {
|
10 |
+
type: QueryType | (string | number | boolean)[];
|
11 |
+
required?: boolean;
|
12 |
+
}
|
13 |
+
| QueryType
|
14 |
+
| (string | number | boolean)[]
|
15 |
+
>
|
16 |
+
) => {
|
17 |
+
return (target: any, propertyKey: string) => {
|
18 |
+
const queryParams = Object.entries(querySchema).map(([key, type]) => {
|
19 |
+
let schema;
|
20 |
+
|
21 |
+
if (Array.isArray(type)) {
|
22 |
+
schema = {
|
23 |
+
type: "string",
|
24 |
+
enum: type,
|
25 |
+
};
|
26 |
+
} else if (typeof type === "string") {
|
27 |
+
schema = {
|
28 |
+
type,
|
29 |
+
};
|
30 |
+
} else {
|
31 |
+
schema = Array.isArray(type["type"])
|
32 |
+
? {
|
33 |
+
type: "string",
|
34 |
+
enum: type["type"],
|
35 |
+
}
|
36 |
+
: {
|
37 |
+
type: type.type,
|
38 |
+
};
|
39 |
+
}
|
40 |
+
|
41 |
+
return {
|
42 |
+
name: key,
|
43 |
+
in: "query",
|
44 |
+
required: type["required"] || false,
|
45 |
+
schema,
|
46 |
+
};
|
47 |
+
});
|
48 |
+
|
49 |
+
target.constructor["targetName"] =
|
50 |
+
target.constructor.name + getCallingFileName();
|
51 |
+
swaggerRegistry.updateRoute(target.constructor["targetName"], {
|
52 |
+
propertyKey,
|
53 |
+
queryParams,
|
54 |
+
});
|
55 |
+
};
|
56 |
+
};
|
src/lib/swagger/swagger.ts
CHANGED
@@ -13,7 +13,7 @@ class SwaggerRegistry {
|
|
13 |
method?: "get" | "post" | "put" | "patch" | "delete";
|
14 |
request?: any;
|
15 |
response?: any;
|
16 |
-
|
17 |
description?: string;
|
18 |
summary?: string;
|
19 |
tags?: string[];
|
@@ -81,7 +81,7 @@ class SwaggerRegistry {
|
|
81 |
method?: "get" | "post" | "put" | "patch" | "delete";
|
82 |
request?: any;
|
83 |
response?: any;
|
84 |
-
|
85 |
description?: string;
|
86 |
summary?: string;
|
87 |
tags?: string[];
|
@@ -121,6 +121,7 @@ class SwaggerRegistry {
|
|
121 |
|
122 |
controllerData.routes.forEach((route) => {
|
123 |
route.path = `/api/v1${controllerData.prefix}${route.path}`;
|
|
|
124 |
|
125 |
if (!paths[route.path]) {
|
126 |
paths[route.path] = {};
|
@@ -135,6 +136,21 @@ class SwaggerRegistry {
|
|
135 |
tags: [...(controllerData.tags || []), ...(route.tags || [])],
|
136 |
summary: route.summary,
|
137 |
description: route.description,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
responses: {
|
139 |
200: {
|
140 |
description: "Success",
|
|
|
13 |
method?: "get" | "post" | "put" | "patch" | "delete";
|
14 |
request?: any;
|
15 |
response?: any;
|
16 |
+
queryParams?: any;
|
17 |
description?: string;
|
18 |
summary?: string;
|
19 |
tags?: string[];
|
|
|
81 |
method?: "get" | "post" | "put" | "patch" | "delete";
|
82 |
request?: any;
|
83 |
response?: any;
|
84 |
+
queryParams?: any;
|
85 |
description?: string;
|
86 |
summary?: string;
|
87 |
tags?: string[];
|
|
|
121 |
|
122 |
controllerData.routes.forEach((route) => {
|
123 |
route.path = `/api/v1${controllerData.prefix}${route.path}`;
|
124 |
+
const params = route.path.match(/:(\w+)/g);
|
125 |
|
126 |
if (!paths[route.path]) {
|
127 |
paths[route.path] = {};
|
|
|
136 |
tags: [...(controllerData.tags || []), ...(route.tags || [])],
|
137 |
summary: route.summary,
|
138 |
description: route.description,
|
139 |
+
parameters: [
|
140 |
+
...((params &&
|
141 |
+
params.map((param) => {
|
142 |
+
return {
|
143 |
+
name: param.replace(":", ""),
|
144 |
+
in: "path",
|
145 |
+
required: true,
|
146 |
+
schema: {
|
147 |
+
type: "string",
|
148 |
+
},
|
149 |
+
};
|
150 |
+
})) ||
|
151 |
+
[]),
|
152 |
+
...(route.queryParams || []),
|
153 |
+
],
|
154 |
responses: {
|
155 |
200: {
|
156 |
description: "Success",
|
src/modules/console/modules/admins/controllers/admins.controller.ts
CHANGED
@@ -26,6 +26,7 @@ import { SwaggerResponse } from "@lib/decorators/swagger-response.decorator";
|
|
26 |
import { SwaggerRequest } from "@lib/decorators/swagger-request.decorator";
|
27 |
import { SwaggerSummary } from "@lib/decorators/swagger-summary.decorator";
|
28 |
import { SwaggerDescription } from "@lib/decorators/swagger-description.decorator";
|
|
|
29 |
|
30 |
@Controller("/console/admins")
|
31 |
@ControllerMiddleware(AdminGuardMiddleware({ roles: [Role.SUPER_ADMIN] }))
|
|
|
26 |
import { SwaggerRequest } from "@lib/decorators/swagger-request.decorator";
|
27 |
import { SwaggerSummary } from "@lib/decorators/swagger-summary.decorator";
|
28 |
import { SwaggerDescription } from "@lib/decorators/swagger-description.decorator";
|
29 |
+
import { SwaggerQuery } from "@lib/decorators/swagger-query.decorator";
|
30 |
|
31 |
@Controller("/console/admins")
|
32 |
@ControllerMiddleware(AdminGuardMiddleware({ roles: [Role.SUPER_ADMIN] }))
|