@aura-stack/router 0.2.0 → 0.4.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.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
- # `@aura-stack/router`
2
-
3
1
  <div align="center">
4
2
 
3
+ <h1>Aura Router</h1>
4
+
5
5
  **A modern, TypeScript-first router and endpoint definition library**
6
6
 
7
7
  Build fully-typed APIs with declarative endpoints, automatic parameter inference, and first-class middleware support — all returning native `Response` objects.
package/dist/assert.cjs CHANGED
@@ -20,14 +20,67 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
20
20
  // src/assert.ts
21
21
  var assert_exports = {};
22
22
  __export(assert_exports, {
23
+ isRouterError: () => isRouterError,
23
24
  isSupportedBodyMethod: () => isSupportedBodyMethod,
24
25
  isSupportedMethod: () => isSupportedMethod,
25
26
  isValidHandler: () => isValidHandler,
26
- isValidRoute: () => isValidRoute
27
+ isValidRoute: () => isValidRoute,
28
+ supportedProtocols: () => supportedProtocols
27
29
  });
28
30
  module.exports = __toCommonJS(assert_exports);
29
- var supportedMethods = /* @__PURE__ */ new Set(["GET", "POST", "DELETE", "PUT", "PATCH"]);
31
+
32
+ // src/error.ts
33
+ var statusCode = {
34
+ OK: 200,
35
+ CREATED: 201,
36
+ ACCEPTED: 202,
37
+ NO_CONTENT: 204,
38
+ MULTIPLE_CHOICES: 300,
39
+ MOVED_PERMANENTLY: 301,
40
+ FOUND: 302,
41
+ SEE_OTHER: 303,
42
+ NOT_MODIFIED: 304,
43
+ TEMPORARY_REDIRECT: 307,
44
+ BAD_REQUEST: 400,
45
+ UNAUTHORIZED: 401,
46
+ PAYMENT_REQUIRED: 402,
47
+ FORBIDDEN: 403,
48
+ NOT_FOUND: 404,
49
+ METHOD_NOT_ALLOWED: 405,
50
+ NOT_ACCEPTABLE: 406,
51
+ PROXY_AUTHENTICATION_REQUIRED: 407,
52
+ UNPROCESSABLE_ENTITY: 422,
53
+ INTERNAL_SERVER_ERROR: 500,
54
+ NOT_IMPLEMENTED: 501,
55
+ BAD_GATEWAY: 502,
56
+ SERVICE_UNAVAILABLE: 503,
57
+ HTTP_VERSION_NOT_SUPPORTED: 505
58
+ };
59
+ var statusText = Object.keys(statusCode).reduce(
60
+ (previous, status) => {
61
+ return { ...previous, [status]: status };
62
+ },
63
+ {}
64
+ );
65
+ var AuraStackRouterError = class extends Error {
66
+ constructor(type, message, name) {
67
+ super(message);
68
+ this.name = name ?? "RouterError";
69
+ this.status = statusCode[type];
70
+ this.statusText = statusText[type];
71
+ }
72
+ };
73
+ var RouterError = class extends AuraStackRouterError {
74
+ constructor(type, message, name) {
75
+ super(type, message, name);
76
+ this.name = name ?? "RouterError";
77
+ }
78
+ };
79
+
80
+ // src/assert.ts
81
+ var supportedMethods = /* @__PURE__ */ new Set(["GET", "POST", "DELETE", "PUT", "PATCH", "OPTIONS", "HEAD", "TRACE", "CONNECT"]);
30
82
  var supportedBodyMethods = /* @__PURE__ */ new Set(["POST", "PUT", "PATCH"]);
83
+ var supportedProtocols = /* @__PURE__ */ new Set(["http:", "https:"]);
31
84
  var isSupportedMethod = (method) => {
32
85
  return supportedMethods.has(method);
33
86
  };
@@ -41,10 +94,15 @@ var isValidRoute = (route) => {
41
94
  var isValidHandler = (handler) => {
42
95
  return typeof handler === "function";
43
96
  };
97
+ var isRouterError = (error) => {
98
+ return error instanceof RouterError;
99
+ };
44
100
  // Annotate the CommonJS export names for ESM import in node:
45
101
  0 && (module.exports = {
102
+ isRouterError,
46
103
  isSupportedBodyMethod,
47
104
  isSupportedMethod,
48
105
  isValidHandler,
49
- isValidRoute
106
+ isValidRoute,
107
+ supportedProtocols
50
108
  });
package/dist/assert.d.ts CHANGED
@@ -1,6 +1,8 @@
1
+ import { RouterError } from './error.js';
1
2
  import { HTTPMethod, RoutePattern, RouteHandler } from './types.js';
2
3
  import 'zod';
3
4
 
5
+ declare const supportedProtocols: Set<string>;
4
6
  /**
5
7
  * Checks if the provided method is a supported HTTP method.
6
8
  *
@@ -28,5 +30,23 @@ declare const isValidRoute: (route: string) => route is RoutePattern;
28
30
  * @returns True if the handler is valid, false otherwise.
29
31
  */
30
32
  declare const isValidHandler: (handler: unknown) => handler is RouteHandler<any, any>;
33
+ /**
34
+ * Asserts that the error is an instance of RouterError. It is useful if you want
35
+ * to check if the error thrown by the router is an RouterError or by other sources.
36
+ *
37
+ * @param error - The error to check
38
+ * @returns True if the error is an instance of RouterError, false otherwise.
39
+ * @example
40
+ * import { isRouterError } from "aura-stack/router";
41
+ *
42
+ * try {
43
+ * // Some router operation that may throw an error
44
+ * } catch (error) {
45
+ * if (isRouterError(error)) {
46
+ * // Handle RouterError
47
+ * }
48
+ * }
49
+ */
50
+ declare const isRouterError: (error: unknown) => error is RouterError;
31
51
 
32
- export { isSupportedBodyMethod, isSupportedMethod, isValidHandler, isValidRoute };
52
+ export { isRouterError, isSupportedBodyMethod, isSupportedMethod, isValidHandler, isValidRoute, supportedProtocols };
package/dist/assert.js CHANGED
@@ -1,12 +1,17 @@
1
1
  import {
2
+ isRouterError,
2
3
  isSupportedBodyMethod,
3
4
  isSupportedMethod,
4
5
  isValidHandler,
5
- isValidRoute
6
- } from "./chunk-JRJKKBSH.js";
6
+ isValidRoute,
7
+ supportedProtocols
8
+ } from "./chunk-JNMXLKDG.js";
9
+ import "./chunk-GJC3ODME.js";
7
10
  export {
11
+ isRouterError,
8
12
  isSupportedBodyMethod,
9
13
  isSupportedMethod,
10
14
  isValidHandler,
11
- isValidRoute
15
+ isValidRoute,
16
+ supportedProtocols
12
17
  };
@@ -0,0 +1,31 @@
1
+ import {
2
+ isSupportedMethod,
3
+ isValidHandler,
4
+ isValidRoute
5
+ } from "./chunk-JNMXLKDG.js";
6
+ import {
7
+ RouterError
8
+ } from "./chunk-GJC3ODME.js";
9
+
10
+ // src/endpoint.ts
11
+ var createEndpoint = (method, route, handler, config = {}) => {
12
+ if (!isSupportedMethod(method)) {
13
+ throw new RouterError("METHOD_NOT_ALLOWED", `Unsupported HTTP method: ${method}`);
14
+ }
15
+ if (!isValidRoute(route)) {
16
+ throw new RouterError("BAD_REQUEST", `Invalid route format: ${route}`);
17
+ }
18
+ if (!isValidHandler(handler)) {
19
+ throw new RouterError("BAD_REQUEST", "Handler must be a function");
20
+ }
21
+ return { method, route, handler, config };
22
+ };
23
+ function createEndpointConfig(...args) {
24
+ if (typeof args[0] === "string") return args[1];
25
+ return args[0];
26
+ }
27
+
28
+ export {
29
+ createEndpoint,
30
+ createEndpointConfig
31
+ };
@@ -0,0 +1,41 @@
1
+ import {
2
+ RouterError
3
+ } from "./chunk-GJC3ODME.js";
4
+
5
+ // src/middlewares.ts
6
+ var executeGlobalMiddlewares = async (context, middlewares) => {
7
+ if (!middlewares) return context;
8
+ for (const middleware of middlewares) {
9
+ if (typeof middleware !== "function") {
10
+ throw new RouterError("BAD_REQUEST", "Global middlewares must be functions");
11
+ }
12
+ const executed = await middleware(context);
13
+ if (executed instanceof Response) {
14
+ return executed;
15
+ }
16
+ context = executed;
17
+ }
18
+ if (!context || !(context.request instanceof Request)) {
19
+ throw new RouterError("BAD_REQUEST", "Global middleware must return a Request or Response object");
20
+ }
21
+ return context;
22
+ };
23
+ var executeMiddlewares = async (context, middlewares = []) => {
24
+ try {
25
+ let ctx = context;
26
+ for (const middleware of middlewares) {
27
+ if (typeof middleware !== "function") {
28
+ throw new RouterError("BAD_REQUEST", "Middleware must be a function");
29
+ }
30
+ ctx = await middleware(ctx);
31
+ }
32
+ return ctx;
33
+ } catch {
34
+ throw new RouterError("BAD_REQUEST", "Handler threw an error");
35
+ }
36
+ };
37
+
38
+ export {
39
+ executeGlobalMiddlewares,
40
+ executeMiddlewares
41
+ };
@@ -0,0 +1,149 @@
1
+ import {
2
+ getBody,
3
+ getHeaders,
4
+ getRouteParams,
5
+ getSearchParams
6
+ } from "./chunk-PT4GU6PH.js";
7
+ import {
8
+ isRouterError,
9
+ isSupportedMethod
10
+ } from "./chunk-JNMXLKDG.js";
11
+ import {
12
+ executeGlobalMiddlewares,
13
+ executeMiddlewares
14
+ } from "./chunk-CFAIW6YL.js";
15
+ import {
16
+ RouterError,
17
+ statusText
18
+ } from "./chunk-GJC3ODME.js";
19
+
20
+ // src/router.ts
21
+ var createNode = () => ({
22
+ statics: /* @__PURE__ */ new Map(),
23
+ endpoints: /* @__PURE__ */ new Map()
24
+ });
25
+ var insert = (root, endpoint) => {
26
+ if (!root || !endpoint) return;
27
+ let node = root;
28
+ const segments = endpoint.route === "/" ? [] : endpoint.route.split("/").filter(Boolean);
29
+ for (const segment of segments) {
30
+ if (segment.startsWith(":")) {
31
+ const name = segment.slice(1);
32
+ if (!node.param) {
33
+ node.param = { name, node: createNode() };
34
+ } else if (node.param.name !== name) {
35
+ throw new RouterError(
36
+ "BAD_REQUEST",
37
+ `Conflicting in the route by the dynamic segment "${node.param.name}" and "${name}"`
38
+ );
39
+ }
40
+ node = node.param.node;
41
+ } else {
42
+ if (!node.statics.has(segment)) {
43
+ node.statics.set(segment, createNode());
44
+ }
45
+ node = node.statics.get(segment);
46
+ }
47
+ }
48
+ if (node.endpoints.has(endpoint.method)) {
49
+ throw new RouterError("BAD_REQUEST", `Duplicate endpoint for ${endpoint?.method} ${endpoint?.route}`);
50
+ }
51
+ node.endpoints.set(endpoint.method, endpoint);
52
+ };
53
+ var search = (method, root, pathname) => {
54
+ let node = root;
55
+ const params = {};
56
+ const segments = pathname === "/" ? [] : pathname.split("/").filter(Boolean);
57
+ for (const segment of segments) {
58
+ if (node?.statics.has(segment)) {
59
+ node = node.statics.get(segment);
60
+ } else if (node?.param) {
61
+ params[node.param.name] = decodeURIComponent(segment);
62
+ node = node.param.node;
63
+ } else {
64
+ throw new RouterError("NOT_FOUND", `No route found for path: ${pathname}`);
65
+ }
66
+ }
67
+ if (!node.endpoints.has(method)) {
68
+ throw new RouterError("NOT_FOUND", `No route found for path: ${pathname}`);
69
+ }
70
+ return { endpoint: node.endpoints.get(method), params };
71
+ };
72
+ var handleError = async (error, request, config) => {
73
+ if (config.onError) {
74
+ try {
75
+ const response = await config.onError(error, request);
76
+ return response;
77
+ } catch {
78
+ return Response.json(
79
+ { message: "A critical failure occurred during error handling" },
80
+ { status: 500, statusText: statusText.INTERNAL_SERVER_ERROR }
81
+ );
82
+ }
83
+ }
84
+ if (isRouterError(error)) {
85
+ const { message, status, statusText: statusText2 } = error;
86
+ return Response.json({ message }, { status, statusText: statusText2 });
87
+ }
88
+ return Response.json({ message: "Internal Server Error" }, { status: 500, statusText: statusText.INTERNAL_SERVER_ERROR });
89
+ };
90
+ var handleRequest = async (method, request, config, root) => {
91
+ try {
92
+ if (!isSupportedMethod(request.method)) {
93
+ throw new RouterError("METHOD_NOT_ALLOWED", `The HTTP method '${request.method}' is not supported`);
94
+ }
95
+ const globalContext = { request, context: config.context ?? {} };
96
+ const globalRequestContext = await executeGlobalMiddlewares(globalContext, config.middlewares);
97
+ if (globalRequestContext instanceof Response) return globalRequestContext;
98
+ const url = new URL(globalRequestContext.request.url);
99
+ const pathnameWithBase = url.pathname;
100
+ if (globalRequestContext.request.method !== method) {
101
+ throw new RouterError("METHOD_NOT_ALLOWED", `The HTTP method '${globalRequestContext.request.method}' is not allowed`);
102
+ }
103
+ const { endpoint, params } = search(method, root, pathnameWithBase);
104
+ if (endpoint.method !== globalRequestContext.request.method) {
105
+ throw new RouterError("METHOD_NOT_ALLOWED", `The HTTP method '${globalRequestContext.request.method}' is not allowed`);
106
+ }
107
+ const dynamicParams = getRouteParams(params, endpoint.config);
108
+ const body = await getBody(globalRequestContext.request, endpoint.config);
109
+ const searchParams = getSearchParams(globalRequestContext.request.url, endpoint.config);
110
+ const headers = getHeaders(globalRequestContext.request);
111
+ let context = {
112
+ params: dynamicParams,
113
+ searchParams,
114
+ headers,
115
+ body,
116
+ request: globalRequestContext.request,
117
+ url,
118
+ method: globalRequestContext.request.method,
119
+ route: endpoint.route,
120
+ context: config.context ?? {}
121
+ };
122
+ context = await executeMiddlewares(context, endpoint.config.middlewares);
123
+ const response = await endpoint.handler(context);
124
+ return response;
125
+ } catch (error) {
126
+ return handleError(error, request, config);
127
+ }
128
+ };
129
+ var createRouter = (endpoints, config = {}) => {
130
+ const root = createNode();
131
+ const server = {};
132
+ const methods = /* @__PURE__ */ new Set();
133
+ for (const endpoint of endpoints) {
134
+ const withBasePath = config.basePath ? `${config.basePath}${endpoint.route}` : endpoint.route;
135
+ insert(root, { ...endpoint, route: withBasePath });
136
+ methods.add(endpoint.method);
137
+ }
138
+ for (const method of methods) {
139
+ server[method] = (request) => handleRequest(method, request, config, root);
140
+ }
141
+ return server;
142
+ };
143
+
144
+ export {
145
+ createNode,
146
+ insert,
147
+ search,
148
+ createRouter
149
+ };
@@ -25,21 +25,30 @@ var statusCode = {
25
25
  SERVICE_UNAVAILABLE: 503,
26
26
  HTTP_VERSION_NOT_SUPPORTED: 505
27
27
  };
28
- var statusText = Object.entries(statusCode).reduce(
29
- (previous, [status, code]) => {
30
- return { ...previous, [code]: status };
28
+ var statusText = Object.keys(statusCode).reduce(
29
+ (previous, status) => {
30
+ return { ...previous, [status]: status };
31
31
  },
32
32
  {}
33
33
  );
34
34
  var AuraStackRouterError = class extends Error {
35
35
  constructor(type, message, name) {
36
36
  super(message);
37
- this.name = name ?? "AuraStackRouterError";
37
+ this.name = name ?? "RouterError";
38
38
  this.status = statusCode[type];
39
- this.statusText = statusText[this.status];
39
+ this.statusText = statusText[type];
40
+ }
41
+ };
42
+ var RouterError = class extends AuraStackRouterError {
43
+ constructor(type, message, name) {
44
+ super(type, message, name);
45
+ this.name = name ?? "RouterError";
40
46
  }
41
47
  };
42
48
 
43
49
  export {
44
- AuraStackRouterError
50
+ statusCode,
51
+ statusText,
52
+ AuraStackRouterError,
53
+ RouterError
45
54
  };
@@ -1,6 +1,11 @@
1
+ import {
2
+ RouterError
3
+ } from "./chunk-GJC3ODME.js";
4
+
1
5
  // src/assert.ts
2
- var supportedMethods = /* @__PURE__ */ new Set(["GET", "POST", "DELETE", "PUT", "PATCH"]);
6
+ var supportedMethods = /* @__PURE__ */ new Set(["GET", "POST", "DELETE", "PUT", "PATCH", "OPTIONS", "HEAD", "TRACE", "CONNECT"]);
3
7
  var supportedBodyMethods = /* @__PURE__ */ new Set(["POST", "PUT", "PATCH"]);
8
+ var supportedProtocols = /* @__PURE__ */ new Set(["http:", "https:"]);
4
9
  var isSupportedMethod = (method) => {
5
10
  return supportedMethods.has(method);
6
11
  };
@@ -14,10 +19,15 @@ var isValidRoute = (route) => {
14
19
  var isValidHandler = (handler) => {
15
20
  return typeof handler === "function";
16
21
  };
22
+ var isRouterError = (error) => {
23
+ return error instanceof RouterError;
24
+ };
17
25
 
18
26
  export {
27
+ supportedProtocols,
19
28
  isSupportedMethod,
20
29
  isSupportedBodyMethod,
21
30
  isValidRoute,
22
- isValidHandler
31
+ isValidHandler,
32
+ isRouterError
23
33
  };
@@ -0,0 +1,78 @@
1
+ import {
2
+ isSupportedBodyMethod
3
+ } from "./chunk-JNMXLKDG.js";
4
+ import {
5
+ RouterError
6
+ } from "./chunk-GJC3ODME.js";
7
+
8
+ // src/context.ts
9
+ var getRouteParams = (params, config) => {
10
+ if (config.schemas?.params) {
11
+ const parsed = config.schemas.params.safeParse(params);
12
+ if (!parsed.success) {
13
+ throw new RouterError("UNPROCESSABLE_ENTITY", "Invalid route parameters");
14
+ }
15
+ return parsed.data;
16
+ }
17
+ return params;
18
+ };
19
+ var getSearchParams = (url, config) => {
20
+ const route = new URL(url);
21
+ if (config.schemas?.searchParams) {
22
+ const parsed = config.schemas.searchParams.safeParse(Object.fromEntries(route.searchParams.entries()));
23
+ if (!parsed.success) {
24
+ throw new RouterError("UNPROCESSABLE_ENTITY", "Invalid search parameters");
25
+ }
26
+ return parsed.data;
27
+ }
28
+ return new URLSearchParams(route.searchParams.toString());
29
+ };
30
+ var getHeaders = (request) => {
31
+ return new Headers(request.headers);
32
+ };
33
+ var getBody = async (request, config) => {
34
+ if (!isSupportedBodyMethod(request.method)) {
35
+ return null;
36
+ }
37
+ const clone = request.clone();
38
+ const contentType = clone.headers.get("Content-Type") ?? "";
39
+ if (contentType.includes("application/json") || config.schemas?.body) {
40
+ const json = await clone.json();
41
+ if (config.schemas?.body) {
42
+ const parsed = config.schemas.body.safeParse(json);
43
+ if (!parsed.success) {
44
+ throw new RouterError("UNPROCESSABLE_ENTITY", "Invalid request body");
45
+ }
46
+ return parsed.data;
47
+ }
48
+ return json;
49
+ }
50
+ try {
51
+ if (createContentTypeRegex(["application/x-www-form-urlencoded", "multipart/form-data"], contentType)) {
52
+ return await clone.formData();
53
+ }
54
+ if (createContentTypeRegex(["text/", "application/xml"], contentType)) {
55
+ return await clone.text();
56
+ }
57
+ if (createContentTypeRegex(["application/octet-stream"], contentType)) {
58
+ return await clone.arrayBuffer();
59
+ }
60
+ if (createContentTypeRegex(["image/", "video/", "audio/", "application/pdf"], contentType)) {
61
+ return await clone.blob();
62
+ }
63
+ return null;
64
+ } catch {
65
+ throw new RouterError("UNPROCESSABLE_ENTITY", "Invalid request body, the content-type does not match the body format");
66
+ }
67
+ };
68
+ var createContentTypeRegex = (contentTypes, contenType) => {
69
+ const regex = new RegExp(`${contentTypes.join("|")}`);
70
+ return regex.test(contenType);
71
+ };
72
+
73
+ export {
74
+ getRouteParams,
75
+ getSearchParams,
76
+ getHeaders,
77
+ getBody
78
+ };
package/dist/context.cjs CHANGED
@@ -27,12 +27,6 @@ __export(context_exports, {
27
27
  });
28
28
  module.exports = __toCommonJS(context_exports);
29
29
 
30
- // src/assert.ts
31
- var supportedBodyMethods = /* @__PURE__ */ new Set(["POST", "PUT", "PATCH"]);
32
- var isSupportedBodyMethod = (method) => {
33
- return supportedBodyMethods.has(method);
34
- };
35
-
36
30
  // src/error.ts
37
31
  var statusCode = {
38
32
  OK: 200,
@@ -60,50 +54,50 @@ var statusCode = {
60
54
  SERVICE_UNAVAILABLE: 503,
61
55
  HTTP_VERSION_NOT_SUPPORTED: 505
62
56
  };
63
- var statusText = Object.entries(statusCode).reduce(
64
- (previous, [status, code]) => {
65
- return { ...previous, [code]: status };
57
+ var statusText = Object.keys(statusCode).reduce(
58
+ (previous, status) => {
59
+ return { ...previous, [status]: status };
66
60
  },
67
61
  {}
68
62
  );
69
63
  var AuraStackRouterError = class extends Error {
70
64
  constructor(type, message, name) {
71
65
  super(message);
72
- this.name = name ?? "AuraStackRouterError";
66
+ this.name = name ?? "RouterError";
73
67
  this.status = statusCode[type];
74
- this.statusText = statusText[this.status];
68
+ this.statusText = statusText[type];
69
+ }
70
+ };
71
+ var RouterError = class extends AuraStackRouterError {
72
+ constructor(type, message, name) {
73
+ super(type, message, name);
74
+ this.name = name ?? "RouterError";
75
75
  }
76
76
  };
77
77
 
78
- // src/endpoint.ts
79
- var createRoutePattern = (route) => {
80
- const pattern = route.replace(/:[^/]+/g, "([^/]+)").replace(/\//g, "\\/");
81
- return new RegExp(`^${pattern}$`);
78
+ // src/assert.ts
79
+ var supportedBodyMethods = /* @__PURE__ */ new Set(["POST", "PUT", "PATCH"]);
80
+ var isSupportedBodyMethod = (method) => {
81
+ return supportedBodyMethods.has(method);
82
82
  };
83
83
 
84
84
  // src/context.ts
85
- var getRouteParams = (route, path) => {
86
- const routeRegex = createRoutePattern(route);
87
- if (!routeRegex.test(path)) {
88
- throw new AuraStackRouterError("BAD_REQUEST", `Missing required route params for route: ${route}`);
85
+ var getRouteParams = (params, config) => {
86
+ if (config.schemas?.params) {
87
+ const parsed = config.schemas.params.safeParse(params);
88
+ if (!parsed.success) {
89
+ throw new RouterError("UNPROCESSABLE_ENTITY", "Invalid route parameters");
90
+ }
91
+ return parsed.data;
89
92
  }
90
- const params = routeRegex.exec(route)?.slice(1).map((seg) => seg.replace(":", ""));
91
- if (!params) return {};
92
- const values = routeRegex.exec(path)?.slice(1);
93
- return params.reduce(
94
- (previous, now, idx) => ({
95
- ...previous,
96
- [now]: decodeURIComponent(values?.[idx] ?? "")
97
- }),
98
- {}
99
- );
93
+ return params;
100
94
  };
101
95
  var getSearchParams = (url, config) => {
102
96
  const route = new URL(url);
103
97
  if (config.schemas?.searchParams) {
104
98
  const parsed = config.schemas.searchParams.safeParse(Object.fromEntries(route.searchParams.entries()));
105
99
  if (!parsed.success) {
106
- throw new AuraStackRouterError("UNPROCESSABLE_ENTITY", "Invalid search parameters");
100
+ throw new RouterError("UNPROCESSABLE_ENTITY", "Invalid search parameters");
107
101
  }
108
102
  return parsed.data;
109
103
  }
@@ -114,33 +108,42 @@ var getHeaders = (request) => {
114
108
  };
115
109
  var getBody = async (request, config) => {
116
110
  if (!isSupportedBodyMethod(request.method)) {
117
- return void 0;
111
+ return null;
118
112
  }
119
- const contentType = request.headers.get("Content-Type") ?? "";
120
- if (contentType.includes("application/json")) {
121
- const json = await request.json();
113
+ const clone = request.clone();
114
+ const contentType = clone.headers.get("Content-Type") ?? "";
115
+ if (contentType.includes("application/json") || config.schemas?.body) {
116
+ const json = await clone.json();
122
117
  if (config.schemas?.body) {
123
118
  const parsed = config.schemas.body.safeParse(json);
124
119
  if (!parsed.success) {
125
- throw new AuraStackRouterError("UNPROCESSABLE_ENTITY", "Invalid request body");
120
+ throw new RouterError("UNPROCESSABLE_ENTITY", "Invalid request body");
126
121
  }
127
122
  return parsed.data;
128
123
  }
129
124
  return json;
130
125
  }
131
- if (contentType.includes("application/x-www-form-urlencoded") || contentType.includes("multipart/form-data")) {
132
- return await request.formData();
133
- }
134
- if (contentType.includes("text/")) {
135
- return await request.text();
136
- }
137
- if (contentType.includes("application/octet-stream")) {
138
- return await request.arrayBuffer();
139
- }
140
- if (contentType.includes("image/") || contentType.includes("video/") || contentType.includes("audio/")) {
141
- return await request.blob();
126
+ try {
127
+ if (createContentTypeRegex(["application/x-www-form-urlencoded", "multipart/form-data"], contentType)) {
128
+ return await clone.formData();
129
+ }
130
+ if (createContentTypeRegex(["text/", "application/xml"], contentType)) {
131
+ return await clone.text();
132
+ }
133
+ if (createContentTypeRegex(["application/octet-stream"], contentType)) {
134
+ return await clone.arrayBuffer();
135
+ }
136
+ if (createContentTypeRegex(["image/", "video/", "audio/", "application/pdf"], contentType)) {
137
+ return await clone.blob();
138
+ }
139
+ return null;
140
+ } catch {
141
+ throw new RouterError("UNPROCESSABLE_ENTITY", "Invalid request body, the content-type does not match the body format");
142
142
  }
143
- return null;
143
+ };
144
+ var createContentTypeRegex = (contentTypes, contenType) => {
145
+ const regex = new RegExp(`${contentTypes.join("|")}`);
146
+ return regex.test(contenType);
144
147
  };
145
148
  // Annotate the CommonJS export names for ESM import in node:
146
149
  0 && (module.exports = {