clear-router 2.7.6 → 2.8.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 (116) hide show
  1. package/dist/ClearRequest.cjs +23 -0
  2. package/dist/ClearRequest.d.cts +28 -0
  3. package/dist/ClearRequest.d.mts +28 -0
  4. package/dist/ClearRequest.mjs +22 -0
  5. package/dist/Contracts.d.cts +12 -0
  6. package/dist/Contracts.d.mts +12 -0
  7. package/dist/Controller.cjs +12 -0
  8. package/dist/Controller.d.cts +14 -0
  9. package/dist/Controller.d.mts +14 -0
  10. package/dist/Controller.mjs +11 -0
  11. package/dist/{Request-DKXwa_W0.d.mts → Request-Ci0UQ-Vl.d.mts} +32 -5
  12. package/dist/ResourceRouteSelection.cjs +26 -0
  13. package/dist/ResourceRouteSelection.d.cts +20 -0
  14. package/dist/ResourceRouteSelection.d.mts +20 -0
  15. package/dist/ResourceRouteSelection.mjs +25 -0
  16. package/dist/ResourceRoutes.cjs +60 -0
  17. package/dist/ResourceRoutes.d.cts +37 -0
  18. package/dist/ResourceRoutes.d.mts +37 -0
  19. package/dist/ResourceRoutes.mjs +60 -0
  20. package/dist/Route.cjs +90 -0
  21. package/dist/Route.d.cts +62 -0
  22. package/dist/Route.d.mts +62 -0
  23. package/dist/Route.mjs +89 -0
  24. package/dist/core/Request.cjs +35 -0
  25. package/dist/core/Request.d.cts +25 -0
  26. package/dist/core/Request.d.mts +25 -0
  27. package/dist/core/Request.mjs +35 -0
  28. package/dist/core/Response.cjs +59 -0
  29. package/dist/core/Response.d.cts +24 -0
  30. package/dist/core/Response.d.mts +24 -0
  31. package/dist/core/Response.mjs +58 -0
  32. package/dist/{bindings-CLsZjOEy.cjs → core/bindings.cjs} +10 -160
  33. package/dist/{bindings-CNL7bpz5.d.mts → core/bindings.d.cts} +1 -1
  34. package/dist/{bindings-CxvtC8XS.d.cts → core/bindings.d.mts} +1 -1
  35. package/dist/{bindings-XLDXFpHZ.mjs → core/bindings.mjs} +3 -110
  36. package/dist/core/index.cjs +7 -17
  37. package/dist/core/index.d.cts +4 -1
  38. package/dist/core/index.d.mts +4 -1
  39. package/dist/core/index.mjs +4 -14
  40. package/dist/core/plugins.cjs +14 -0
  41. package/dist/core/plugins.d.cts +109 -0
  42. package/dist/core/plugins.d.mts +109 -0
  43. package/dist/core/plugins.mjs +13 -0
  44. package/dist/{responses-Bvnk0uvc.cjs → core/responses.cjs} +5 -20
  45. package/dist/{responses-BvETUeDL.mjs → core/responses.mjs} +2 -2
  46. package/dist/{router-C6W-k6sS.cjs → core/router.cjs} +67 -72
  47. package/dist/core/router.d.cts +286 -0
  48. package/dist/core/router.d.mts +286 -0
  49. package/dist/{router-Dc9w86Wn.mjs → core/router.mjs} +62 -62
  50. package/dist/decorators/index.cjs +1 -1
  51. package/dist/decorators/index.d.cts +1 -1
  52. package/dist/decorators/index.d.mts +1 -1
  53. package/dist/decorators/index.mjs +1 -1
  54. package/dist/decorators/setup.cjs +2 -2
  55. package/dist/decorators/setup.d.cts +1 -1
  56. package/dist/decorators/setup.d.mts +1 -2
  57. package/dist/decorators/setup.mjs +2 -2
  58. package/dist/express/index.cjs +2 -265
  59. package/dist/express/index.d.cts +1 -127
  60. package/dist/express/index.d.mts +1 -127
  61. package/dist/express/index.mjs +1 -264
  62. package/dist/express/router.cjs +265 -0
  63. package/dist/express/router.d.cts +132 -0
  64. package/dist/express/router.d.mts +132 -0
  65. package/dist/express/router.mjs +265 -0
  66. package/dist/fastify/index.cjs +2 -254
  67. package/dist/fastify/index.d.cts +1 -125
  68. package/dist/fastify/index.d.mts +1 -125
  69. package/dist/fastify/index.mjs +1 -253
  70. package/dist/fastify/router.cjs +254 -0
  71. package/dist/fastify/router.d.cts +130 -0
  72. package/dist/fastify/router.d.mts +130 -0
  73. package/dist/fastify/router.mjs +254 -0
  74. package/dist/h3/index.cjs +2 -260
  75. package/dist/h3/index.d.cts +1 -128
  76. package/dist/h3/index.d.mts +1 -128
  77. package/dist/h3/index.mjs +1 -259
  78. package/dist/h3/router.cjs +260 -0
  79. package/dist/h3/router.d.cts +133 -0
  80. package/dist/h3/router.d.mts +133 -0
  81. package/dist/h3/router.mjs +260 -0
  82. package/dist/hono/index.cjs +2 -251
  83. package/dist/hono/index.d.cts +1 -130
  84. package/dist/hono/index.d.mts +1 -130
  85. package/dist/hono/index.mjs +1 -250
  86. package/dist/hono/router.cjs +251 -0
  87. package/dist/hono/router.d.cts +135 -0
  88. package/dist/hono/router.d.mts +135 -0
  89. package/dist/hono/router.mjs +251 -0
  90. package/dist/index.cjs +16 -1097
  91. package/dist/index.d.cts +9 -563
  92. package/dist/index.d.mts +9 -563
  93. package/dist/index.mjs +8 -1089
  94. package/dist/koa/index.cjs +2 -261
  95. package/dist/koa/index.d.cts +1 -131
  96. package/dist/koa/index.d.mts +1 -131
  97. package/dist/koa/index.mjs +1 -260
  98. package/dist/koa/router.cjs +261 -0
  99. package/dist/koa/router.d.cts +136 -0
  100. package/dist/koa/router.d.mts +136 -0
  101. package/dist/koa/router.mjs +261 -0
  102. package/dist/types/basic.d.cts +53 -0
  103. package/dist/types/basic.d.mts +11 -1
  104. package/dist/types/express.d.cts +48 -0
  105. package/dist/types/express.d.mts +10 -4
  106. package/dist/types/fastify.d.cts +24 -0
  107. package/dist/types/fastify.d.mts +7 -4
  108. package/dist/types/h3.d.cts +46 -0
  109. package/dist/types/h3.d.mts +10 -5
  110. package/dist/types/hono.d.cts +22 -0
  111. package/dist/types/hono.d.mts +8 -6
  112. package/dist/types/koa.d.cts +26 -0
  113. package/dist/types/koa.d.mts +7 -5
  114. package/package.json +1 -1
  115. package/dist/router-BEgAxp5A.d.cts +0 -649
  116. package/dist/router-DKKYx23P.d.mts +0 -649
@@ -1,266 +1,3 @@
1
- import "../bindings-XLDXFpHZ.mjs";
2
- import { t as CoreRouter } from "../router-Dc9w86Wn.mjs";
3
- import { n as resolveResponseMeta, r as responseWasSent, t as isFetchResponse } from "../responses-BvETUeDL.mjs";
1
+ import Router from "./router.mjs";
4
2
 
5
- //#region src/express/router.ts
6
- /**
7
- * @class clear-router Express Router
8
- * @description Laravel-style routing system for Express.js and H3 with support for CommonJS, ESM, and TypeScript
9
- * @author Refkinscallv
10
- * @author 3m1n3nc3
11
- * @repository https://github.com/arkstack-tmp/clear-router
12
- */
13
- var Router = class Router extends CoreRouter {
14
- static routerStateNamespace = "clear-router:express";
15
- static ensureRequestBodyAccessor(req) {
16
- if (typeof req.getBody !== "function") req.getBody = () => req.body ?? {};
17
- }
18
- static async sendReturnValue(ctx, value, method, path) {
19
- const { req, res } = ctx;
20
- if (responseWasSent(res) || value === res || responseWasSent(value)) return;
21
- const meta = resolveResponseMeta(value, {
22
- headers: req.headers,
23
- method,
24
- path
25
- });
26
- if (!meta) return;
27
- res.status(meta.status);
28
- meta.headers?.forEach((headerValue, key) => {
29
- res.setHeader(key, headerValue);
30
- });
31
- if (isFetchResponse(meta.body)) {
32
- meta.body.headers.forEach((headerValue, key) => {
33
- res.setHeader(key, headerValue);
34
- });
35
- res.status(meta.body.status);
36
- const body = Buffer.from(await meta.body.arrayBuffer());
37
- res.send(body);
38
- return;
39
- }
40
- if (meta.contentType && !res.getHeader("Content-Type")) res.setHeader("Content-Type", meta.contentType);
41
- if (meta.isEmpty) {
42
- res.sendStatus(meta.status);
43
- return;
44
- }
45
- res.send(meta.body);
46
- }
47
- /**
48
- * Adds a new route to the router.
49
- *
50
- * @param methods
51
- * @param path
52
- * @param handler
53
- * @param middlewares
54
- */
55
- static add(methods, path, handler, middlewares) {
56
- return super.add(methods, path, handler, middlewares);
57
- }
58
- /**
59
- * Define a resourceful API controller with standard CRUD routes
60
- *
61
- * @param basePath
62
- * @param controller
63
- * @param options
64
- */
65
- static apiResource(basePath, controller, options) {
66
- super.apiResource(basePath, controller, options);
67
- }
68
- /**
69
- * Adds a new GET route to the router.
70
- *
71
- * @param path
72
- * @param handler
73
- * @param middlewares
74
- */
75
- static get(path, handler, middlewares) {
76
- return super.get(path, handler, middlewares);
77
- }
78
- /**
79
- * Adds a new POST route to the router.
80
- *
81
- * @param path
82
- * @param handler
83
- * @param middlewares
84
- */
85
- static post(path, handler, middlewares) {
86
- return super.post(path, handler, middlewares);
87
- }
88
- /**
89
- * Adds a new PUT route to the router.
90
- *
91
- * @param path
92
- * @param handler
93
- * @param middlewares
94
- */
95
- static put(path, handler, middlewares) {
96
- return super.put(path, handler, middlewares);
97
- }
98
- /**
99
- * Adds a new DELETE route to the router.
100
- *
101
- * @param path
102
- * @param handler
103
- * @param middlewares
104
- */
105
- static delete(path, handler, middlewares) {
106
- return super.delete(path, handler, middlewares);
107
- }
108
- /**
109
- * Adds a new PATCH route to the router.
110
- *
111
- * @param path
112
- * @param handler
113
- * @param middlewares
114
- */
115
- static patch(path, handler, middlewares) {
116
- return super.patch(path, handler, middlewares);
117
- }
118
- /**
119
- * Adds a new OPTIONS route to the router.
120
- *
121
- * @param path
122
- * @param handler
123
- * @param middlewares
124
- */
125
- static options(path, handler, middlewares) {
126
- return super.options(path, handler, middlewares);
127
- }
128
- /**
129
- * Adds a new HEAD route to the router.
130
- *
131
- * @param path
132
- * @param handler
133
- * @param middlewares
134
- */
135
- static head(path, handler, middlewares) {
136
- return super.head(path, handler, middlewares);
137
- }
138
- /**
139
- * Defines a group of routes with a common prefix.
140
- *
141
- * @param prefix
142
- * @param callback
143
- * @param middlewares
144
- */
145
- static async group(prefix, callback, middlewares) {
146
- await super.group(prefix, callback, middlewares);
147
- }
148
- /**
149
- * Adds global middlewares to the router, which will be applied to all routes.
150
- *
151
- * @param middlewares
152
- * @param callback
153
- */
154
- static middleware(middlewares, callback) {
155
- super.middleware(middlewares, callback);
156
- }
157
- static allRoutes(type) {
158
- return super.allRoutes(type);
159
- }
160
- static route(name) {
161
- return super.route(name);
162
- }
163
- static async apply(router) {
164
- for (const route of Array.from(this.routes)) {
165
- let handlerFunction = null;
166
- let instance = null;
167
- let bindingTarget;
168
- let bindingMethod;
169
- let bindingHandler;
170
- let bindingMetadata;
171
- try {
172
- const resolved = this.resolveHandler(route);
173
- handlerFunction = resolved.handlerFunction;
174
- instance = resolved.instance;
175
- bindingTarget = resolved.bindingTarget;
176
- bindingMethod = resolved.bindingMethod;
177
- bindingHandler = resolved.bindingHandler;
178
- bindingMetadata = resolved.bindingMetadata;
179
- } catch (error) {
180
- console.error(`[ROUTES] Error setting up route ${route.path}:`, error.message);
181
- throw error;
182
- }
183
- if (!handlerFunction) continue;
184
- for (const method of route.methods) {
185
- const allowedMethods = [
186
- "get",
187
- "post",
188
- "put",
189
- "delete",
190
- "patch",
191
- "options",
192
- "head"
193
- ];
194
- if (method === "options" && route.methods.length > 1) continue;
195
- if (!allowedMethods.includes(method)) {
196
- const error = /* @__PURE__ */ new Error(`Invalid HTTP method: ${method} for route: ${route.path}`);
197
- console.error("[ROUTES]", error.message);
198
- throw error;
199
- }
200
- for (const registrationPath of route.registrationPaths) router[method](registrationPath, (req, _res, next) => {
201
- Router.ensureRequestBodyAccessor(req);
202
- const override = Router.resolveMethodOverride(req.method, req.headers, req.body);
203
- if (method === "post" && override && override !== "post") return next("route");
204
- return next();
205
- }, ...route.middlewares || [], async (req, res, next) => {
206
- try {
207
- Router.ensureRequestBodyAccessor(req);
208
- const ctx = {
209
- req,
210
- res,
211
- next
212
- };
213
- const inst = instance ?? route;
214
- Router.bindRequestToInstance(ctx, inst, route, {
215
- body: ctx.req.getBody(),
216
- query: ctx.req.query,
217
- params: ctx.req.params,
218
- method
219
- });
220
- const result = await Router.callHandler(handlerFunction, ctx, bindingTarget, bindingMethod, bindingHandler, bindingMetadata);
221
- const resolved = await Promise.resolve(result);
222
- const outgoing = typeof resolved === "undefined" && ctx.clearResponse?.sent ? ctx.clearResponse : resolved;
223
- await Router.sendReturnValue(ctx, outgoing, method, route.path);
224
- } catch (error) {
225
- next(error);
226
- }
227
- });
228
- if ([
229
- "put",
230
- "patch",
231
- "delete"
232
- ].includes(method)) for (const registrationPath of route.registrationPaths) router.post(registrationPath, (req, _res, next) => {
233
- Router.ensureRequestBodyAccessor(req);
234
- if (Router.resolveMethodOverride(req.method, req.headers, req.body) !== method) return next("route");
235
- req.method = method.toUpperCase();
236
- return next();
237
- }, ...route.middlewares || [], async (req, res, next) => {
238
- try {
239
- Router.ensureRequestBodyAccessor(req);
240
- const ctx = {
241
- req,
242
- res,
243
- next
244
- };
245
- const inst = instance ?? route;
246
- Router.bindRequestToInstance(ctx, inst, route, {
247
- body: ctx.req.getBody(),
248
- query: ctx.req.query,
249
- params: ctx.req.params,
250
- method
251
- });
252
- const result = await Router.callHandler(handlerFunction, ctx, bindingTarget, bindingMethod, bindingHandler, bindingMetadata);
253
- const resolved = await Promise.resolve(result);
254
- const outgoing = typeof resolved === "undefined" && ctx.clearResponse?.sent ? ctx.clearResponse : resolved;
255
- await Router.sendReturnValue(ctx, outgoing, method, route.path);
256
- } catch (error) {
257
- next(error);
258
- }
259
- });
260
- }
261
- }
262
- }
263
- };
264
-
265
- //#endregion
266
3
  export { Router };
@@ -0,0 +1,265 @@
1
+ const require_router = require('../core/router.cjs');
2
+ const require_responses = require('../core/responses.cjs');
3
+
4
+ //#region src/express/router.ts
5
+ /**
6
+ * @class clear-router Express Router
7
+ * @description Laravel-style routing system for Express.js and H3 with support for CommonJS, ESM, and TypeScript
8
+ * @author Refkinscallv
9
+ * @author 3m1n3nc3
10
+ * @repository https://github.com/arkstack-tmp/clear-router
11
+ */
12
+ var Router = class Router extends require_router.CoreRouter {
13
+ static routerStateNamespace = "clear-router:express";
14
+ static ensureRequestBodyAccessor(req) {
15
+ if (typeof req.getBody !== "function") req.getBody = () => req.body ?? {};
16
+ }
17
+ static async sendReturnValue(ctx, value, method, path) {
18
+ const { req, res } = ctx;
19
+ if (require_responses.responseWasSent(res) || value === res || require_responses.responseWasSent(value)) return;
20
+ const meta = require_responses.resolveResponseMeta(value, {
21
+ headers: req.headers,
22
+ method,
23
+ path
24
+ });
25
+ if (!meta) return;
26
+ res.status(meta.status);
27
+ meta.headers?.forEach((headerValue, key) => {
28
+ res.setHeader(key, headerValue);
29
+ });
30
+ if (require_responses.isFetchResponse(meta.body)) {
31
+ meta.body.headers.forEach((headerValue, key) => {
32
+ res.setHeader(key, headerValue);
33
+ });
34
+ res.status(meta.body.status);
35
+ const body = Buffer.from(await meta.body.arrayBuffer());
36
+ res.send(body);
37
+ return;
38
+ }
39
+ if (meta.contentType && !res.getHeader("Content-Type")) res.setHeader("Content-Type", meta.contentType);
40
+ if (meta.isEmpty) {
41
+ res.sendStatus(meta.status);
42
+ return;
43
+ }
44
+ res.send(meta.body);
45
+ }
46
+ /**
47
+ * Adds a new route to the router.
48
+ *
49
+ * @param methods
50
+ * @param path
51
+ * @param handler
52
+ * @param middlewares
53
+ */
54
+ static add(methods, path, handler, middlewares) {
55
+ return super.add(methods, path, handler, middlewares);
56
+ }
57
+ /**
58
+ * Define a resourceful API controller with standard CRUD routes
59
+ *
60
+ * @param basePath
61
+ * @param controller
62
+ * @param options
63
+ */
64
+ static apiResource(basePath, controller, options) {
65
+ return super.apiResource(basePath, controller, options);
66
+ }
67
+ /**
68
+ * Adds a new GET route to the router.
69
+ *
70
+ * @param path
71
+ * @param handler
72
+ * @param middlewares
73
+ */
74
+ static get(path, handler, middlewares) {
75
+ return super.get(path, handler, middlewares);
76
+ }
77
+ /**
78
+ * Adds a new POST route to the router.
79
+ *
80
+ * @param path
81
+ * @param handler
82
+ * @param middlewares
83
+ */
84
+ static post(path, handler, middlewares) {
85
+ return super.post(path, handler, middlewares);
86
+ }
87
+ /**
88
+ * Adds a new PUT route to the router.
89
+ *
90
+ * @param path
91
+ * @param handler
92
+ * @param middlewares
93
+ */
94
+ static put(path, handler, middlewares) {
95
+ return super.put(path, handler, middlewares);
96
+ }
97
+ /**
98
+ * Adds a new DELETE route to the router.
99
+ *
100
+ * @param path
101
+ * @param handler
102
+ * @param middlewares
103
+ */
104
+ static delete(path, handler, middlewares) {
105
+ return super.delete(path, handler, middlewares);
106
+ }
107
+ /**
108
+ * Adds a new PATCH route to the router.
109
+ *
110
+ * @param path
111
+ * @param handler
112
+ * @param middlewares
113
+ */
114
+ static patch(path, handler, middlewares) {
115
+ return super.patch(path, handler, middlewares);
116
+ }
117
+ /**
118
+ * Adds a new OPTIONS route to the router.
119
+ *
120
+ * @param path
121
+ * @param handler
122
+ * @param middlewares
123
+ */
124
+ static options(path, handler, middlewares) {
125
+ return super.options(path, handler, middlewares);
126
+ }
127
+ /**
128
+ * Adds a new HEAD route to the router.
129
+ *
130
+ * @param path
131
+ * @param handler
132
+ * @param middlewares
133
+ */
134
+ static head(path, handler, middlewares) {
135
+ return super.head(path, handler, middlewares);
136
+ }
137
+ /**
138
+ * Defines a group of routes with a common prefix.
139
+ *
140
+ * @param prefix
141
+ * @param callback
142
+ * @param middlewares
143
+ */
144
+ static async group(prefix, callback, middlewares) {
145
+ await super.group(prefix, callback, middlewares);
146
+ }
147
+ /**
148
+ * Adds global middlewares to the router, which will be applied to all routes.
149
+ *
150
+ * @param middlewares
151
+ * @param callback
152
+ */
153
+ static middleware(middlewares, callback) {
154
+ super.middleware(middlewares, callback);
155
+ }
156
+ static allRoutes(type) {
157
+ return super.allRoutes(type);
158
+ }
159
+ static route(name) {
160
+ return super.route(name);
161
+ }
162
+ static async apply(router) {
163
+ for (const route of this.orderedRoutes()) {
164
+ let handlerFunction = null;
165
+ let instance = null;
166
+ let bindingTarget;
167
+ let bindingMethod;
168
+ let bindingHandler;
169
+ let bindingMetadata;
170
+ try {
171
+ const resolved = this.resolveHandler(route);
172
+ handlerFunction = resolved.handlerFunction;
173
+ instance = resolved.instance;
174
+ bindingTarget = resolved.bindingTarget;
175
+ bindingMethod = resolved.bindingMethod;
176
+ bindingHandler = resolved.bindingHandler;
177
+ bindingMetadata = resolved.bindingMetadata;
178
+ } catch (error) {
179
+ console.error(`[ROUTES] Error setting up route ${route.path}:`, error.message);
180
+ throw error;
181
+ }
182
+ if (!handlerFunction) continue;
183
+ for (const method of route.methods) {
184
+ const allowedMethods = [
185
+ "get",
186
+ "post",
187
+ "put",
188
+ "delete",
189
+ "patch",
190
+ "options",
191
+ "head"
192
+ ];
193
+ if (method === "options" && route.methods.length > 1) continue;
194
+ if (!allowedMethods.includes(method)) {
195
+ const error = /* @__PURE__ */ new Error(`Invalid HTTP method: ${method} for route: ${route.path}`);
196
+ console.error("[ROUTES]", error.message);
197
+ throw error;
198
+ }
199
+ for (const registrationPath of route.registrationPaths) router[method](registrationPath, (req, _res, next) => {
200
+ Router.ensureRequestBodyAccessor(req);
201
+ const override = Router.resolveMethodOverride(req.method, req.headers, req.body);
202
+ if (method === "post" && override && override !== "post") return next("route");
203
+ return next();
204
+ }, ...route.middlewares || [], async (req, res, next) => {
205
+ try {
206
+ Router.ensureRequestBodyAccessor(req);
207
+ const ctx = {
208
+ req,
209
+ res,
210
+ next
211
+ };
212
+ const inst = instance ?? route;
213
+ Router.bindRequestToInstance(ctx, inst, route, {
214
+ body: ctx.req.getBody(),
215
+ query: ctx.req.query,
216
+ params: ctx.req.params,
217
+ method
218
+ });
219
+ const result = await Router.callHandler(handlerFunction, ctx, bindingTarget, bindingMethod, bindingHandler, bindingMetadata);
220
+ const resolved = await Promise.resolve(result);
221
+ const outgoing = typeof resolved === "undefined" && ctx.clearResponse?.sent ? ctx.clearResponse : resolved;
222
+ await Router.sendReturnValue(ctx, outgoing, method, route.path);
223
+ } catch (error) {
224
+ next(error);
225
+ }
226
+ });
227
+ if ([
228
+ "put",
229
+ "patch",
230
+ "delete"
231
+ ].includes(method)) for (const registrationPath of route.registrationPaths) router.post(registrationPath, (req, _res, next) => {
232
+ Router.ensureRequestBodyAccessor(req);
233
+ if (Router.resolveMethodOverride(req.method, req.headers, req.body) !== method) return next("route");
234
+ req.method = method.toUpperCase();
235
+ return next();
236
+ }, ...route.middlewares || [], async (req, res, next) => {
237
+ try {
238
+ Router.ensureRequestBodyAccessor(req);
239
+ const ctx = {
240
+ req,
241
+ res,
242
+ next
243
+ };
244
+ const inst = instance ?? route;
245
+ Router.bindRequestToInstance(ctx, inst, route, {
246
+ body: ctx.req.getBody(),
247
+ query: ctx.req.query,
248
+ params: ctx.req.params,
249
+ method
250
+ });
251
+ const result = await Router.callHandler(handlerFunction, ctx, bindingTarget, bindingMethod, bindingHandler, bindingMetadata);
252
+ const resolved = await Promise.resolve(result);
253
+ const outgoing = typeof resolved === "undefined" && ctx.clearResponse?.sent ? ctx.clearResponse : resolved;
254
+ await Router.sendReturnValue(ctx, outgoing, method, route.path);
255
+ } catch (error) {
256
+ next(error);
257
+ }
258
+ });
259
+ }
260
+ }
261
+ }
262
+ };
263
+
264
+ //#endregion
265
+ exports.default = Router;
@@ -0,0 +1,132 @@
1
+ import { ApiResourceMiddleware, ControllerAction, HttpMethod } from "../types/basic.cjs";
2
+ import { Handler, HttpContext, Middleware } from "../types/express.cjs";
3
+ import { Route } from "../Route.cjs";
4
+ import { ResourceRoutes } from "../ResourceRoutes.cjs";
5
+ import { CoreRouter } from "../core/router.cjs";
6
+ import { Router } from "express";
7
+
8
+ //#region src/express/router.d.ts
9
+ /**
10
+ * @class clear-router Express Router
11
+ * @description Laravel-style routing system for Express.js and H3 with support for CommonJS, ESM, and TypeScript
12
+ * @author Refkinscallv
13
+ * @author 3m1n3nc3
14
+ * @repository https://github.com/arkstack-tmp/clear-router
15
+ */
16
+ declare class Router$1 extends CoreRouter {
17
+ protected static routerStateNamespace: string;
18
+ private static ensureRequestBodyAccessor;
19
+ private static sendReturnValue;
20
+ /**
21
+ * Adds a new route to the router.
22
+ *
23
+ * @param methods
24
+ * @param path
25
+ * @param handler
26
+ * @param middlewares
27
+ */
28
+ static add(methods: HttpMethod | HttpMethod[], path: string, handler: Handler, middlewares?: Middleware[] | Middleware): Route<HttpContext, Middleware, Handler>;
29
+ /**
30
+ * Define a resourceful API controller with standard CRUD routes
31
+ *
32
+ * @param basePath
33
+ * @param controller
34
+ * @param options
35
+ */
36
+ static apiResource(basePath: string, controller: any, options?: {
37
+ only?: ControllerAction[];
38
+ except?: ControllerAction[];
39
+ middlewares?: ApiResourceMiddleware<Middleware>;
40
+ }): ResourceRoutes<HttpContext, Middleware, Handler>;
41
+ /**
42
+ * Adds a new GET route to the router.
43
+ *
44
+ * @param path
45
+ * @param handler
46
+ * @param middlewares
47
+ */
48
+ static get(path: string, handler: Handler, middlewares?: Middleware[] | Middleware): Route<HttpContext, Middleware, Handler>;
49
+ /**
50
+ * Adds a new POST route to the router.
51
+ *
52
+ * @param path
53
+ * @param handler
54
+ * @param middlewares
55
+ */
56
+ static post(path: string, handler: Handler, middlewares?: Middleware[] | Middleware): Route<HttpContext, Middleware, Handler>;
57
+ /**
58
+ * Adds a new PUT route to the router.
59
+ *
60
+ * @param path
61
+ * @param handler
62
+ * @param middlewares
63
+ */
64
+ static put(path: string, handler: Handler, middlewares?: Middleware[] | Middleware): Route<HttpContext, Middleware, Handler>;
65
+ /**
66
+ * Adds a new DELETE route to the router.
67
+ *
68
+ * @param path
69
+ * @param handler
70
+ * @param middlewares
71
+ */
72
+ static delete(path: string, handler: Handler, middlewares?: Middleware[] | Middleware): Route<HttpContext, Middleware, Handler>;
73
+ /**
74
+ * Adds a new PATCH route to the router.
75
+ *
76
+ * @param path
77
+ * @param handler
78
+ * @param middlewares
79
+ */
80
+ static patch(path: string, handler: Handler, middlewares?: Middleware[] | Middleware): Route<HttpContext, Middleware, Handler>;
81
+ /**
82
+ * Adds a new OPTIONS route to the router.
83
+ *
84
+ * @param path
85
+ * @param handler
86
+ * @param middlewares
87
+ */
88
+ static options(path: string, handler: Handler, middlewares?: Middleware[] | Middleware): Route<HttpContext, Middleware, Handler>;
89
+ /**
90
+ * Adds a new HEAD route to the router.
91
+ *
92
+ * @param path
93
+ * @param handler
94
+ * @param middlewares
95
+ */
96
+ static head(path: string, handler: Handler, middlewares?: Middleware[] | Middleware): Route<HttpContext, Middleware, Handler>;
97
+ /**
98
+ * Defines a group of routes with a common prefix.
99
+ *
100
+ * @param prefix
101
+ * @param callback
102
+ * @param middlewares
103
+ */
104
+ static group(prefix: string, callback: () => void | Promise<void>, middlewares?: Middleware[]): Promise<void>;
105
+ /**
106
+ * Adds global middlewares to the router, which will be applied to all routes.
107
+ *
108
+ * @param middlewares
109
+ * @param callback
110
+ */
111
+ static middleware(middlewares: Middleware[], callback: () => void): void;
112
+ /**
113
+ * Retrieves all registered routes in the router, optionally organized by path or method.
114
+ *
115
+ * @param type
116
+ */
117
+ static allRoutes(): Array<Route<HttpContext, Middleware, Handler>>;
118
+ static allRoutes(type: 'path'): Record<string, Route<HttpContext, Middleware, Handler>>;
119
+ static allRoutes(type: 'method'): { [method in Uppercase<HttpMethod>]?: Array<Route<HttpContext, Middleware, Handler>> };
120
+ static allRoutes(type: 'name'): Record<string, Route<HttpContext, Middleware, Handler>>;
121
+ static route(name: string): Route<HttpContext, Middleware, Handler> | undefined;
122
+ /**
123
+ * Applies the registered routes to the given Express router instance, setting up the necessary
124
+ * handlers and middlewares for each route.
125
+ *
126
+ * @param router
127
+ */
128
+ static apply(router: Router): void;
129
+ static apply(router: Router): Promise<void>;
130
+ }
131
+ //#endregion
132
+ export { Router$1 as Router };