hono 4.12.34 → 4.13.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/dist/cjs/context.js +28 -13
- package/dist/cjs/hono-base.js +3 -2
- package/dist/cjs/jsx/base.js +26 -14
- package/dist/cjs/jsx/hooks/index.js +2 -2
- package/dist/cjs/middleware/cache/index.js +103 -8
- package/dist/cjs/middleware/compress/index.js +5 -0
- package/dist/cjs/middleware/cors/index.js +1 -1
- package/dist/cjs/middleware/etag/index.js +1 -1
- package/dist/cjs/middleware/jwk/jwk.js +9 -4
- package/dist/cjs/middleware/jwt/jwt.js +9 -4
- package/dist/cjs/middleware/method-not-allowed/index.js +90 -0
- package/dist/cjs/request.js +6 -8
- package/dist/cjs/router/reg-exp-router/node.js +55 -56
- package/dist/cjs/router/reg-exp-router/router.js +64 -85
- package/dist/cjs/router/reg-exp-router/trie.js +13 -5
- package/dist/cjs/router.js +1 -1
- package/dist/cjs/utils/cookie.js +1 -1
- package/dist/cjs/utils/url.js +7 -7
- package/dist/context.js +28 -13
- package/dist/hono-base.js +3 -2
- package/dist/jsx/base.js +26 -14
- package/dist/jsx/hooks/index.js +2 -2
- package/dist/middleware/cache/index.js +103 -8
- package/dist/middleware/compress/index.js +5 -0
- package/dist/middleware/cors/index.js +1 -1
- package/dist/middleware/etag/index.js +1 -1
- package/dist/middleware/jwk/jwk.js +9 -4
- package/dist/middleware/jwt/jwt.js +9 -4
- package/dist/middleware/method-not-allowed/index.js +68 -0
- package/dist/request.js +7 -9
- package/dist/router/reg-exp-router/node.js +55 -56
- package/dist/router/reg-exp-router/router.js +64 -85
- package/dist/router/reg-exp-router/trie.js +13 -5
- package/dist/router.js +1 -1
- package/dist/types/client/types.d.ts +1 -1
- package/dist/types/hono-base.d.ts +4 -3
- package/dist/types/jsx/base.d.ts +4 -2
- package/dist/types/jsx/dom/index.d.ts +5 -5
- package/dist/types/jsx/dom/intrinsic-element/components.d.ts +2 -2
- package/dist/types/jsx/dom/server.d.ts +5 -5
- package/dist/types/jsx/hooks/index.d.ts +8 -6
- package/dist/types/jsx/index.d.ts +5 -5
- package/dist/types/middleware/cache/index.d.ts +6 -4
- package/dist/types/middleware/cors/index.d.ts +1 -1
- package/dist/types/middleware/jsx-renderer/index.d.ts +2 -2
- package/dist/types/middleware/jwk/jwk.d.ts +2 -0
- package/dist/types/middleware/jwt/jwt.d.ts +2 -0
- package/dist/types/middleware/method-not-allowed/index.d.ts +49 -0
- package/dist/types/router/reg-exp-router/node.d.ts +1 -1
- package/dist/types/router/reg-exp-router/trie.d.ts +2 -1
- package/dist/types/router.d.ts +1 -1
- package/dist/types/utils/headers.d.ts +2 -2
- package/dist/types/utils/url.d.ts +1 -0
- package/dist/utils/cookie.js +2 -2
- package/dist/utils/url.js +5 -6
- package/package.json +9 -1
package/dist/cjs/context.js
CHANGED
|
@@ -295,11 +295,11 @@ class Context {
|
|
|
295
295
|
return Object.fromEntries(this.#var);
|
|
296
296
|
}
|
|
297
297
|
#newResponse(data, arg, headers) {
|
|
298
|
-
|
|
299
|
-
if (typeof arg === "object" &&
|
|
300
|
-
|
|
301
|
-
for (const [key, value] of
|
|
302
|
-
if (key
|
|
298
|
+
let responseHeaders = this.#res ? new Headers(this.#res.headers) : this.#preparedHeaders;
|
|
299
|
+
if (typeof arg === "object" && arg.headers) {
|
|
300
|
+
responseHeaders ??= new Headers();
|
|
301
|
+
for (const [key, value] of new Headers(arg.headers)) {
|
|
302
|
+
if (key === "set-cookie") {
|
|
303
303
|
responseHeaders.append(key, value);
|
|
304
304
|
} else {
|
|
305
305
|
responseHeaders.set(key, value);
|
|
@@ -307,19 +307,34 @@ class Context {
|
|
|
307
307
|
}
|
|
308
308
|
}
|
|
309
309
|
if (headers) {
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
310
|
+
if (!responseHeaders) {
|
|
311
|
+
let count = 0;
|
|
312
|
+
for (const k in headers) {
|
|
313
|
+
if (++count > 1 || typeof headers[k] !== "string") {
|
|
314
|
+
responseHeaders = new Headers();
|
|
315
|
+
break;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
if (responseHeaders) {
|
|
320
|
+
for (const k in headers) {
|
|
321
|
+
const v = headers[k];
|
|
322
|
+
if (typeof v === "string") {
|
|
323
|
+
responseHeaders.set(k, v);
|
|
324
|
+
} else {
|
|
325
|
+
responseHeaders.delete(k);
|
|
326
|
+
for (const v2 of v) {
|
|
327
|
+
responseHeaders.append(k, v2);
|
|
328
|
+
}
|
|
317
329
|
}
|
|
318
330
|
}
|
|
319
331
|
}
|
|
320
332
|
}
|
|
321
333
|
const status = typeof arg === "number" ? arg : arg?.status ?? this.#status;
|
|
322
|
-
return createResponseInstance(data, {
|
|
334
|
+
return createResponseInstance(data, {
|
|
335
|
+
status,
|
|
336
|
+
headers: responseHeaders ?? headers
|
|
337
|
+
});
|
|
323
338
|
}
|
|
324
339
|
newResponse = (...args) => this.#newResponse(...args);
|
|
325
340
|
/**
|
package/dist/cjs/hono-base.js
CHANGED
|
@@ -43,6 +43,7 @@ class Hono {
|
|
|
43
43
|
delete;
|
|
44
44
|
options;
|
|
45
45
|
patch;
|
|
46
|
+
query;
|
|
46
47
|
all;
|
|
47
48
|
on;
|
|
48
49
|
use;
|
|
@@ -342,8 +343,8 @@ class Hono {
|
|
|
342
343
|
* @see {@link https://hono.dev/docs/api/hono#fetch}
|
|
343
344
|
*
|
|
344
345
|
* @param {Request} request - request Object of request
|
|
345
|
-
* @param {Env}
|
|
346
|
-
* @param {ExecutionContext} - context of execution
|
|
346
|
+
* @param {Env} env - env Object
|
|
347
|
+
* @param {ExecutionContext} executionCtx - context of execution
|
|
347
348
|
* @returns {Response | Promise<Response>} response of request
|
|
348
349
|
*
|
|
349
350
|
*/
|
package/dist/cjs/jsx/base.js
CHANGED
|
@@ -100,6 +100,18 @@ const booleanAttributes = [
|
|
|
100
100
|
"reversed",
|
|
101
101
|
"selected"
|
|
102
102
|
];
|
|
103
|
+
const resolveFunctionComponentResult = (result, suspendedContext) => result.then((resolved) => {
|
|
104
|
+
if (!Array.isArray(resolved) && !(resolved instanceof JSXNode)) {
|
|
105
|
+
return resolved;
|
|
106
|
+
}
|
|
107
|
+
const children = Array.isArray(resolved) ? resolved : [resolved];
|
|
108
|
+
const render = () => {
|
|
109
|
+
const buffer = [""];
|
|
110
|
+
childrenToStringToBuffer(children, buffer);
|
|
111
|
+
return buffer.length === 1 ? (0, import_html.raw)(buffer[0], buffer.callbacks) : (0, import_html2.stringBufferToString)(buffer, buffer.callbacks);
|
|
112
|
+
};
|
|
113
|
+
return suspendedContext ? suspendedContext(render) : (0, import_context.runWithRenderContext)(render);
|
|
114
|
+
});
|
|
103
115
|
const childrenToStringToBuffer = (children, buffer) => {
|
|
104
116
|
for (let i = 0, len = children.length; i < len; i++) {
|
|
105
117
|
const child = children[i];
|
|
@@ -109,9 +121,17 @@ const childrenToStringToBuffer = (children, buffer) => {
|
|
|
109
121
|
continue;
|
|
110
122
|
} else if (child instanceof JSXNode) {
|
|
111
123
|
child.toStringToBuffer(buffer);
|
|
112
|
-
} else if (typeof child === "number"
|
|
124
|
+
} else if (typeof child === "number") {
|
|
113
125
|
;
|
|
114
126
|
buffer[0] += child;
|
|
127
|
+
} else if (child.isEscaped) {
|
|
128
|
+
;
|
|
129
|
+
buffer[0] += child;
|
|
130
|
+
const callbacks = child.callbacks;
|
|
131
|
+
if (callbacks) {
|
|
132
|
+
buffer.callbacks ||= [];
|
|
133
|
+
buffer.callbacks.push(...callbacks);
|
|
134
|
+
}
|
|
115
135
|
} else if (child instanceof Promise) {
|
|
116
136
|
buffer.unshift("", child);
|
|
117
137
|
} else {
|
|
@@ -125,7 +145,6 @@ class JSXNode {
|
|
|
125
145
|
key;
|
|
126
146
|
children;
|
|
127
147
|
isEscaped = true;
|
|
128
|
-
suspendedContext;
|
|
129
148
|
constructor(tag, props, children) {
|
|
130
149
|
if (typeof tag !== "function" && !(0, import_utils.isValidTagName)(tag)) {
|
|
131
150
|
throw new Error(`Invalid JSX tag name: ${tag}`);
|
|
@@ -148,7 +167,7 @@ class JSXNode {
|
|
|
148
167
|
this.toStringToBuffer(buffer);
|
|
149
168
|
return buffer.length === 1 ? "callbacks" in buffer ? (0, import_html2.resolveCallbackSync)((0, import_html.raw)(buffer[0], buffer.callbacks)).toString() : buffer[0] : (0, import_html2.stringBufferToString)(buffer, buffer.callbacks);
|
|
150
169
|
};
|
|
151
|
-
return
|
|
170
|
+
return (0, import_context.runWithRenderContext)(render);
|
|
152
171
|
}
|
|
153
172
|
toStringToBuffer(buffer) {
|
|
154
173
|
const tag = this.tag;
|
|
@@ -222,21 +241,14 @@ class JSXFunctionNode extends JSXNode {
|
|
|
222
241
|
return;
|
|
223
242
|
} else if (res instanceof Promise) {
|
|
224
243
|
if (import_context.globalContexts.length === 0) {
|
|
225
|
-
buffer.unshift("", res);
|
|
244
|
+
buffer.unshift("", resolveFunctionComponentResult(res));
|
|
226
245
|
} else {
|
|
227
|
-
|
|
228
|
-
buffer.unshift(
|
|
229
|
-
"",
|
|
230
|
-
res.then((childRes) => {
|
|
231
|
-
if (childRes instanceof JSXNode) {
|
|
232
|
-
childRes.suspendedContext = suspendedContext;
|
|
233
|
-
}
|
|
234
|
-
return childRes;
|
|
235
|
-
})
|
|
236
|
-
);
|
|
246
|
+
buffer.unshift("", resolveFunctionComponentResult(res, (0, import_context.captureRenderContext)()));
|
|
237
247
|
}
|
|
238
248
|
} else if (res instanceof JSXNode) {
|
|
239
249
|
res.toStringToBuffer(buffer);
|
|
250
|
+
} else if (Array.isArray(res)) {
|
|
251
|
+
childrenToStringToBuffer(res, buffer);
|
|
240
252
|
} else if (typeof res === "number" || res.isEscaped) {
|
|
241
253
|
buffer[0] += res;
|
|
242
254
|
if (res.callbacks) {
|
|
@@ -263,7 +263,7 @@ const useCallback = (callback, deps) => {
|
|
|
263
263
|
}
|
|
264
264
|
return callback;
|
|
265
265
|
};
|
|
266
|
-
|
|
266
|
+
function useRef(initialValue) {
|
|
267
267
|
const buildData = import_render.buildDataStack.at(-1);
|
|
268
268
|
if (!buildData) {
|
|
269
269
|
return { current: initialValue };
|
|
@@ -272,7 +272,7 @@ const useRef = (initialValue) => {
|
|
|
272
272
|
const refArray = node[import_constants.DOM_STASH][1][STASH_REF] ||= [];
|
|
273
273
|
const hookIndex = node[import_constants.DOM_STASH][0]++;
|
|
274
274
|
return refArray[hookIndex] ||= { current: initialValue };
|
|
275
|
-
}
|
|
275
|
+
}
|
|
276
276
|
const use = (promise) => {
|
|
277
277
|
const cachedRes = resolvedPromiseValueMap.get(promise);
|
|
278
278
|
if (cachedRes) {
|
|
@@ -20,7 +20,21 @@ __export(cache_exports, {
|
|
|
20
20
|
cache: () => cache
|
|
21
21
|
});
|
|
22
22
|
module.exports = __toCommonJS(cache_exports);
|
|
23
|
+
var import_request = require("../../request");
|
|
24
|
+
var import_crypto = require("../../utils/crypto");
|
|
23
25
|
const defaultCacheableStatusCodes = [200];
|
|
26
|
+
const defaultMaxQueryBodySize = 64 * 1024;
|
|
27
|
+
const cacheKeyPath = "/.hono/cache";
|
|
28
|
+
const cacheKeyParameter = "__hono_cache_key";
|
|
29
|
+
const cacheMethodKeyParameter = "__hono_cache_method";
|
|
30
|
+
const queryDigestKeyParameter = "__hono_query_digest";
|
|
31
|
+
const cacheVaryKeyParameter = "__hono_cache_vary";
|
|
32
|
+
const queryRepresentationMetadataHeaders = [
|
|
33
|
+
"content-type",
|
|
34
|
+
"content-encoding",
|
|
35
|
+
"content-language",
|
|
36
|
+
"content-location"
|
|
37
|
+
];
|
|
24
38
|
const shouldSkipCacheControl = (cacheControl) => !!cacheControl && /(?:^|,\s*)(?:private|no-(?:store|cache))(?:\s*(?:=|,|$))/i.test(cacheControl);
|
|
25
39
|
const parseVaryDirectives = (vary) => {
|
|
26
40
|
if (vary == null) {
|
|
@@ -28,17 +42,86 @@ const parseVaryDirectives = (vary) => {
|
|
|
28
42
|
}
|
|
29
43
|
return (Array.isArray(vary) ? vary : vary.split(",")).map((directive) => directive.trim().toLowerCase()).filter(Boolean);
|
|
30
44
|
};
|
|
45
|
+
const createCacheKey = (key, requestUrl, request, varyHeaders) => {
|
|
46
|
+
const url = new URL(cacheKeyPath, requestUrl);
|
|
47
|
+
url.searchParams.append(cacheKeyParameter, key.split("#", 1)[0]);
|
|
48
|
+
url.searchParams.append(cacheMethodKeyParameter, request.method);
|
|
49
|
+
if (request.method === "QUERY") {
|
|
50
|
+
url.searchParams.append(queryDigestKeyParameter, request.digest);
|
|
51
|
+
}
|
|
52
|
+
for (const header of varyHeaders) {
|
|
53
|
+
url.searchParams.append(cacheVaryKeyParameter, JSON.stringify(header));
|
|
54
|
+
}
|
|
55
|
+
return url.href;
|
|
56
|
+
};
|
|
31
57
|
const shouldSkipCache = (res, optionsVaryDirectives, responseVary) => responseVary.length && (!optionsVaryDirectives || responseVary.some((name) => !optionsVaryDirectives.has(name))) || shouldSkipCacheControl(res.headers.get("Cache-Control")) || res.headers.has("Set-Cookie");
|
|
58
|
+
const reportCacheNotAvailable = (onCacheNotAvailable, reason) => {
|
|
59
|
+
if (onCacheNotAvailable === false) {
|
|
60
|
+
} else if (onCacheNotAvailable) {
|
|
61
|
+
onCacheNotAvailable(reason);
|
|
62
|
+
} else {
|
|
63
|
+
console.log(reason);
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
const createQueryDigest = async (c, maxQueryBodySize) => {
|
|
67
|
+
if (!globalThis.crypto?.subtle) {
|
|
68
|
+
return void 0;
|
|
69
|
+
}
|
|
70
|
+
if (c.req.raw.bodyUsed && Object.keys(c.req.bodyCache)[0] === "formData") {
|
|
71
|
+
return void 0;
|
|
72
|
+
}
|
|
73
|
+
try {
|
|
74
|
+
const requestHeaders = c.req.raw.headers;
|
|
75
|
+
const metadata = new TextEncoder().encode(
|
|
76
|
+
JSON.stringify(
|
|
77
|
+
queryRepresentationMetadataHeaders.map((header) => [header, requestHeaders.get(header)])
|
|
78
|
+
)
|
|
79
|
+
);
|
|
80
|
+
const body = (await (0, import_request.cloneRawRequest)(c.req)).body;
|
|
81
|
+
const chunks = [];
|
|
82
|
+
let bodySize = 0;
|
|
83
|
+
if (body) {
|
|
84
|
+
const reader = body.getReader();
|
|
85
|
+
for (; ; ) {
|
|
86
|
+
const { done, value } = await reader.read();
|
|
87
|
+
if (done) {
|
|
88
|
+
break;
|
|
89
|
+
}
|
|
90
|
+
bodySize += value.byteLength;
|
|
91
|
+
if (bodySize > maxQueryBodySize) {
|
|
92
|
+
void reader.cancel().catch(() => {
|
|
93
|
+
});
|
|
94
|
+
return void 0;
|
|
95
|
+
}
|
|
96
|
+
chunks.push(value);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
const data = new Uint8Array(metadata.byteLength + bodySize);
|
|
100
|
+
data.set(metadata);
|
|
101
|
+
let offset = metadata.byteLength;
|
|
102
|
+
for (const chunk of chunks) {
|
|
103
|
+
data.set(chunk, offset);
|
|
104
|
+
offset += chunk.byteLength;
|
|
105
|
+
}
|
|
106
|
+
return await (0, import_crypto.sha256)(data) ?? void 0;
|
|
107
|
+
} catch {
|
|
108
|
+
return void 0;
|
|
109
|
+
}
|
|
110
|
+
};
|
|
32
111
|
const cache = (options) => {
|
|
33
112
|
if (!globalThis.caches) {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
console.log("Cache Middleware is not enabled because caches is not defined.");
|
|
39
|
-
}
|
|
113
|
+
reportCacheNotAvailable(
|
|
114
|
+
options.onCacheNotAvailable,
|
|
115
|
+
"Cache Middleware is not enabled because caches is not defined."
|
|
116
|
+
);
|
|
40
117
|
return async (_c, next) => await next();
|
|
41
118
|
}
|
|
119
|
+
if (!globalThis.crypto?.subtle) {
|
|
120
|
+
reportCacheNotAvailable(
|
|
121
|
+
options.onCacheNotAvailable,
|
|
122
|
+
"Cache Middleware cannot cache QUERY requests because Web Crypto is not available."
|
|
123
|
+
);
|
|
124
|
+
}
|
|
42
125
|
if (options.wait === void 0) {
|
|
43
126
|
options.wait = false;
|
|
44
127
|
}
|
|
@@ -53,6 +136,7 @@ const cache = (options) => {
|
|
|
53
136
|
const cacheableStatusCodes = new Set(
|
|
54
137
|
options.cacheableStatusCodes ?? defaultCacheableStatusCodes
|
|
55
138
|
);
|
|
139
|
+
const maxQueryBodySize = options.maxQueryBodySize ?? defaultMaxQueryBodySize;
|
|
56
140
|
const addHeader = (c, responseVary) => {
|
|
57
141
|
if (cacheControlDirectives) {
|
|
58
142
|
const existingDirectives = c.res.headers.get("Cache-Control")?.split(",").map((d) => d.trim().split("=", 1)[0].toLowerCase()) ?? [];
|
|
@@ -81,20 +165,31 @@ const cache = (options) => {
|
|
|
81
165
|
}
|
|
82
166
|
};
|
|
83
167
|
return async function cache2(c, next) {
|
|
84
|
-
if (c.req.method !== "GET" || c.req.raw.headers.has("Authorization")) {
|
|
168
|
+
if (c.req.method !== "GET" && c.req.method !== "QUERY" || c.req.raw.headers.has("Authorization")) {
|
|
85
169
|
await next();
|
|
86
170
|
return;
|
|
87
171
|
}
|
|
172
|
+
let cacheKeyRequest = { method: "GET" };
|
|
173
|
+
if (c.req.method === "QUERY") {
|
|
174
|
+
const digest = await createQueryDigest(c, maxQueryBodySize);
|
|
175
|
+
if (digest === void 0) {
|
|
176
|
+
await next();
|
|
177
|
+
return;
|
|
178
|
+
}
|
|
179
|
+
cacheKeyRequest = { method: "QUERY", digest };
|
|
180
|
+
}
|
|
88
181
|
let key = c.req.url;
|
|
89
182
|
if (options.keyGenerator) {
|
|
90
183
|
key = await options.keyGenerator(c);
|
|
91
184
|
}
|
|
185
|
+
const varyHeaders = [];
|
|
92
186
|
if (varyDirectives) {
|
|
93
187
|
for (const directive of varyDirectives) {
|
|
94
188
|
const value = c.req.raw.headers.get(directive) ?? "";
|
|
95
|
-
|
|
189
|
+
varyHeaders.push([directive, value]);
|
|
96
190
|
}
|
|
97
191
|
}
|
|
192
|
+
key = createCacheKey(key, c.req.url, cacheKeyRequest, varyHeaders);
|
|
98
193
|
const cacheName = typeof options.cacheName === "function" ? await options.cacheName(c) : options.cacheName;
|
|
99
194
|
const cache3 = await caches.open(cacheName);
|
|
100
195
|
const response = await cache3.match(key);
|
|
@@ -43,6 +43,7 @@ const selectEncoding = (header, candidates) => {
|
|
|
43
43
|
}
|
|
44
44
|
return best?.encoding;
|
|
45
45
|
};
|
|
46
|
+
const varyAcceptEncodingRegExp = /(?:^|,)\s*accept-encoding\s*(?:,|$)/i;
|
|
46
47
|
const compress = (options) => {
|
|
47
48
|
const threshold = options?.threshold ?? 1024;
|
|
48
49
|
const candidates = options?.encoding ? [options.encoding] : ENCODING_TYPES;
|
|
@@ -66,6 +67,10 @@ const compress = (options) => {
|
|
|
66
67
|
!shouldTransform(ctx.res)) {
|
|
67
68
|
return;
|
|
68
69
|
}
|
|
70
|
+
const current = ctx.res.headers.get("Vary");
|
|
71
|
+
if (current !== "*" && !(current && varyAcceptEncodingRegExp.test(current))) {
|
|
72
|
+
ctx.header("Vary", current ? `${current}, Accept-Encoding` : "Accept-Encoding");
|
|
73
|
+
}
|
|
69
74
|
const accepted = ctx.req.header("Accept-Encoding");
|
|
70
75
|
const encoding = selectEncoding(accepted, candidates);
|
|
71
76
|
if (!encoding || !ctx.res.body) {
|
|
@@ -23,7 +23,7 @@ module.exports = __toCommonJS(cors_exports);
|
|
|
23
23
|
const cors = (options) => {
|
|
24
24
|
const opts = {
|
|
25
25
|
origin: "*",
|
|
26
|
-
allowMethods: ["GET", "HEAD", "PUT", "POST", "DELETE", "PATCH"],
|
|
26
|
+
allowMethods: ["GET", "HEAD", "PUT", "POST", "DELETE", "PATCH", "QUERY"],
|
|
27
27
|
allowHeaders: [],
|
|
28
28
|
exposeHeaders: [],
|
|
29
29
|
...options
|
|
@@ -70,7 +70,7 @@ const etag = (options) => {
|
|
|
70
70
|
}
|
|
71
71
|
etag3 = weak ? `W/"${hash}"` : `"${hash}"`;
|
|
72
72
|
}
|
|
73
|
-
const matched = ifNoneMatch === "*" ? (c.req.method === "GET" || c.req.method === "HEAD") && res.ok : etagMatches(etag3, ifNoneMatch);
|
|
73
|
+
const matched = ifNoneMatch === "*" ? (c.req.method === "GET" || c.req.method === "HEAD" || c.req.method === "QUERY") && res.ok : etagMatches(etag3, ifNoneMatch);
|
|
74
74
|
if (matched) {
|
|
75
75
|
c.res = new Response(null, {
|
|
76
76
|
status: 304,
|
|
@@ -45,7 +45,8 @@ const jwk = (options, init) => {
|
|
|
45
45
|
res: unauthorizedResponse({
|
|
46
46
|
ctx,
|
|
47
47
|
error: "invalid_request",
|
|
48
|
-
errDescription
|
|
48
|
+
errDescription,
|
|
49
|
+
realm: options.realm
|
|
49
50
|
})
|
|
50
51
|
});
|
|
51
52
|
} else {
|
|
@@ -83,7 +84,8 @@ const jwk = (options, init) => {
|
|
|
83
84
|
res: unauthorizedResponse({
|
|
84
85
|
ctx,
|
|
85
86
|
error: "invalid_request",
|
|
86
|
-
errDescription
|
|
87
|
+
errDescription,
|
|
88
|
+
realm: options.realm
|
|
87
89
|
})
|
|
88
90
|
});
|
|
89
91
|
}
|
|
@@ -110,7 +112,8 @@ const jwk = (options, init) => {
|
|
|
110
112
|
ctx,
|
|
111
113
|
error: "invalid_token",
|
|
112
114
|
statusText: "Unauthorized",
|
|
113
|
-
errDescription: "token verification failure"
|
|
115
|
+
errDescription: "token verification failure",
|
|
116
|
+
realm: options.realm
|
|
114
117
|
}),
|
|
115
118
|
cause
|
|
116
119
|
});
|
|
@@ -120,11 +123,13 @@ const jwk = (options, init) => {
|
|
|
120
123
|
};
|
|
121
124
|
};
|
|
122
125
|
function unauthorizedResponse(opts) {
|
|
126
|
+
const realm = (opts.realm ?? opts.ctx.req.url).replace(/"/g, '\\"');
|
|
127
|
+
const errDescription = opts.errDescription.replace(/"/g, '\\"');
|
|
123
128
|
return new Response("Unauthorized", {
|
|
124
129
|
status: 401,
|
|
125
130
|
statusText: opts.statusText,
|
|
126
131
|
headers: {
|
|
127
|
-
"WWW-Authenticate": `Bearer realm="${
|
|
132
|
+
"WWW-Authenticate": `Bearer realm="${realm}",error="${opts.error}",error_description="${errDescription}"`
|
|
128
133
|
}
|
|
129
134
|
});
|
|
130
135
|
}
|
|
@@ -52,7 +52,8 @@ const jwt = (options) => {
|
|
|
52
52
|
res: unauthorizedResponse({
|
|
53
53
|
ctx,
|
|
54
54
|
error: "invalid_request",
|
|
55
|
-
errDescription
|
|
55
|
+
errDescription,
|
|
56
|
+
realm: options.realm
|
|
56
57
|
})
|
|
57
58
|
});
|
|
58
59
|
} else {
|
|
@@ -87,7 +88,8 @@ const jwt = (options) => {
|
|
|
87
88
|
res: unauthorizedResponse({
|
|
88
89
|
ctx,
|
|
89
90
|
error: "invalid_request",
|
|
90
|
-
errDescription
|
|
91
|
+
errDescription,
|
|
92
|
+
realm: options.realm
|
|
91
93
|
})
|
|
92
94
|
});
|
|
93
95
|
}
|
|
@@ -108,7 +110,8 @@ const jwt = (options) => {
|
|
|
108
110
|
ctx,
|
|
109
111
|
error: "invalid_token",
|
|
110
112
|
statusText: "Unauthorized",
|
|
111
|
-
errDescription: "token verification failure"
|
|
113
|
+
errDescription: "token verification failure",
|
|
114
|
+
realm: options.realm
|
|
112
115
|
}),
|
|
113
116
|
cause
|
|
114
117
|
});
|
|
@@ -118,11 +121,13 @@ const jwt = (options) => {
|
|
|
118
121
|
};
|
|
119
122
|
};
|
|
120
123
|
function unauthorizedResponse(opts) {
|
|
124
|
+
const realm = (opts.realm ?? opts.ctx.req.url).replace(/"/g, '\\"');
|
|
125
|
+
const errDescription = opts.errDescription.replace(/"/g, '\\"');
|
|
121
126
|
return new Response("Unauthorized", {
|
|
122
127
|
status: 401,
|
|
123
128
|
statusText: opts.statusText,
|
|
124
129
|
headers: {
|
|
125
|
-
"WWW-Authenticate": `Bearer realm="${
|
|
130
|
+
"WWW-Authenticate": `Bearer realm="${realm}",error="${opts.error}",error_description="${errDescription}"`
|
|
126
131
|
}
|
|
127
132
|
});
|
|
128
133
|
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var method_not_allowed_exports = {};
|
|
19
|
+
__export(method_not_allowed_exports, {
|
|
20
|
+
methodNotAllowed: () => methodNotAllowed
|
|
21
|
+
});
|
|
22
|
+
module.exports = __toCommonJS(method_not_allowed_exports);
|
|
23
|
+
var import_route = require("../../helper/route");
|
|
24
|
+
var import_router = require("../../router");
|
|
25
|
+
var import_trie_router = require("../../router/trie-router");
|
|
26
|
+
const methodNotAllowed = (options) => {
|
|
27
|
+
let methodRouter;
|
|
28
|
+
return async function methodNotAllowed2(c, next) {
|
|
29
|
+
const routeIndex = c.req.routeIndex;
|
|
30
|
+
await next();
|
|
31
|
+
if (c.res.status !== 404) {
|
|
32
|
+
return;
|
|
33
|
+
}
|
|
34
|
+
if (c.error) {
|
|
35
|
+
return;
|
|
36
|
+
}
|
|
37
|
+
if (!methodRouter) {
|
|
38
|
+
const methodsByPath = /* @__PURE__ */ new Map();
|
|
39
|
+
for (const route of options.app.routes) {
|
|
40
|
+
if (route.method === import_router.METHOD_NAME_ALL || route.method === "HEAD") {
|
|
41
|
+
continue;
|
|
42
|
+
}
|
|
43
|
+
const methods2 = methodsByPath.get(route.path) ?? /* @__PURE__ */ new Set();
|
|
44
|
+
methods2.add(route.method);
|
|
45
|
+
if (route.method === "GET") {
|
|
46
|
+
methods2.add("HEAD");
|
|
47
|
+
}
|
|
48
|
+
methodsByPath.set(route.path, methods2);
|
|
49
|
+
}
|
|
50
|
+
methodRouter = new import_trie_router.TrieRouter();
|
|
51
|
+
for (const [path, methods2] of methodsByPath) {
|
|
52
|
+
methodRouter.add(import_router.METHOD_NAME_ALL, path, [...methods2]);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
let requestPath = c.req.path;
|
|
56
|
+
const routes = (0, import_route.matchedRoutes)(c);
|
|
57
|
+
const currentRoute = routes[routeIndex];
|
|
58
|
+
const sourceRoute = options.app.routes.find((route) => route.handler === methodNotAllowed2);
|
|
59
|
+
if (currentRoute && sourceRoute) {
|
|
60
|
+
const currentBasePathParts = (0, import_route.basePath)(c, routeIndex).split("/").filter(Boolean);
|
|
61
|
+
const sourceBasePathLength = sourceRoute.basePath.split("/").filter(Boolean).length;
|
|
62
|
+
const mountBasePathParts = currentBasePathParts.slice(
|
|
63
|
+
0,
|
|
64
|
+
currentBasePathParts.length - sourceBasePathLength
|
|
65
|
+
);
|
|
66
|
+
if (mountBasePathParts.length > 0) {
|
|
67
|
+
const mountBasePath = `/${mountBasePathParts.join("/")}`;
|
|
68
|
+
requestPath = c.req.path.slice(mountBasePath.length) || "/";
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
const allowedMethods = /* @__PURE__ */ new Set();
|
|
72
|
+
for (const [methods2] of methodRouter.match(import_router.METHOD_NAME_ALL, requestPath)[0]) {
|
|
73
|
+
for (const method of methods2) {
|
|
74
|
+
allowedMethods.add(method);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
if (allowedMethods.size === 0 || allowedMethods.has(c.req.method)) {
|
|
78
|
+
return;
|
|
79
|
+
}
|
|
80
|
+
c.res.headers.delete("Allow");
|
|
81
|
+
c.res.headers.delete("Content-Length");
|
|
82
|
+
const methods = [...allowedMethods];
|
|
83
|
+
const allow = methods.join(", ");
|
|
84
|
+
c.res = options.onMethodNotAllowed ? await options.onMethodNotAllowed(c, methods) : c.text("Method Not Allowed", 405, { Allow: allow });
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
88
|
+
0 && (module.exports = {
|
|
89
|
+
methodNotAllowed
|
|
90
|
+
});
|
package/dist/cjs/request.js
CHANGED
|
@@ -25,7 +25,6 @@ var import_http_exception = require("./http-exception");
|
|
|
25
25
|
var import_constants = require("./request/constants");
|
|
26
26
|
var import_body = require("./utils/body");
|
|
27
27
|
var import_url = require("./utils/url");
|
|
28
|
-
const tryDecodeURIComponent = (str) => (0, import_url.tryDecode)(str, import_url.decodeURIComponent_);
|
|
29
28
|
class HonoRequest {
|
|
30
29
|
/**
|
|
31
30
|
* `.raw` can get the raw Request object.
|
|
@@ -64,7 +63,6 @@ class HonoRequest {
|
|
|
64
63
|
this.raw = request;
|
|
65
64
|
this.path = path;
|
|
66
65
|
this.#matchResult = matchResult;
|
|
67
|
-
this.#validatedData = {};
|
|
68
66
|
}
|
|
69
67
|
param(key) {
|
|
70
68
|
return key ? this.#getDecodedParam(key) : this.#getAllDecodedParams();
|
|
@@ -72,7 +70,7 @@ class HonoRequest {
|
|
|
72
70
|
#getDecodedParam(key) {
|
|
73
71
|
const paramKey = this.#matchResult[0][this.routeIndex][1][key];
|
|
74
72
|
const param = this.#getParamValue(paramKey);
|
|
75
|
-
return param &&
|
|
73
|
+
return param && (0, import_url.tryDecodeURIComponent)(param);
|
|
76
74
|
}
|
|
77
75
|
#getAllDecodedParams() {
|
|
78
76
|
const decoded = {};
|
|
@@ -80,7 +78,7 @@ class HonoRequest {
|
|
|
80
78
|
for (const key of keys) {
|
|
81
79
|
const value = this.#getParamValue(this.#matchResult[0][this.routeIndex][1][key]);
|
|
82
80
|
if (value !== void 0) {
|
|
83
|
-
decoded[key] =
|
|
81
|
+
decoded[key] = (0, import_url.tryDecodeURIComponent)(value);
|
|
84
82
|
}
|
|
85
83
|
}
|
|
86
84
|
return decoded;
|
|
@@ -113,8 +111,7 @@ class HonoRequest {
|
|
|
113
111
|
if (cachedBody) {
|
|
114
112
|
return cachedBody;
|
|
115
113
|
}
|
|
116
|
-
const anyCachedKey
|
|
117
|
-
if (anyCachedKey) {
|
|
114
|
+
for (const anyCachedKey in bodyCache) {
|
|
118
115
|
return bodyCache[anyCachedKey].then((body) => {
|
|
119
116
|
if (anyCachedKey === "json") {
|
|
120
117
|
body = JSON.stringify(body);
|
|
@@ -217,10 +214,11 @@ class HonoRequest {
|
|
|
217
214
|
* @param data - The validated data to add.
|
|
218
215
|
*/
|
|
219
216
|
addValidatedData(target, data) {
|
|
220
|
-
|
|
217
|
+
;
|
|
218
|
+
(this.#validatedData ??= {})[target] = data;
|
|
221
219
|
}
|
|
222
220
|
valid(target) {
|
|
223
|
-
return this.#validatedData[target];
|
|
221
|
+
return this.#validatedData?.[target];
|
|
224
222
|
}
|
|
225
223
|
/**
|
|
226
224
|
* `.url()` can get the request url strings.
|