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