@zuplo/cli 6.73.30 → 6.73.31
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/test/invoke-test.d.ts.map +1 -1
- package/dist/test/invoke-test.js +4 -3
- package/dist/test/invoke-test.js.map +1 -1
- package/dist/test/invoke-test.test.d.ts +2 -0
- package/dist/test/invoke-test.test.d.ts.map +1 -0
- package/dist/test/invoke-test.test.js +57 -0
- package/dist/test/invoke-test.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@posthog/core/dist/posthog-core.d.ts.map +1 -1
- package/node_modules/@posthog/core/dist/posthog-core.js +18 -1
- package/node_modules/@posthog/core/dist/posthog-core.mjs +18 -1
- package/node_modules/@posthog/core/package.json +1 -1
- package/node_modules/@posthog/core/src/posthog-core.ts +28 -1
- package/node_modules/@zuplo/core/package.json +1 -1
- package/node_modules/@zuplo/editor/node_modules/hono/LICENSE +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/README.md +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/conninfo.js +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/handler.js +364 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/conninfo.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/index.js +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/serve-static.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/server.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/ssg.js +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/websocket.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/handler.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/serve-static-module.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js +22 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/utils.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/websocket.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/conninfo.js +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/deno.d.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/index.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/serve-static.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/ssg.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/websocket.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/handler.js +96 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/handler.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/index.js +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/mod.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/handler.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/conninfo.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/handler.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/conninfo.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +395 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/conninfo.js +49 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/index.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/serve-static.js +52 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/server.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/ssg.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/websocket.js +98 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/handler.js +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/index.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static-module.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/utils.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/websocket.js +63 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/conninfo.js +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/deno.d.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/index.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/serve-static.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/ssg.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/websocket.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/handler.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/index.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/mod.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/handler.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/conninfo.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/handler.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/client.js +204 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/fetch-result-please.js +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/utils.js +105 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/compose.js +68 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/context.js +435 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/accepts/accepts.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/accepts/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/adapter/index.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/conninfo/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/conninfo/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/cookie/index.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/css/common.js +273 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/css/index.js +157 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/dev/index.js +79 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/factory/index.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/html/index.js +64 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/proxy/index.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/route/index.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/index.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/middleware.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/plugins.js +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/ssg.js +320 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/utils.js +93 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/sse.js +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/stream.js +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/text.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/utils.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/testing/index.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/websocket/index.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/hono-base.js +405 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/hono.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/http-exception.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/base.js +374 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/children.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/components.js +221 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/constants.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/context.js +188 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/client.js +76 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/components.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/context.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/css.js +168 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/hooks/index.js +74 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/index.js +181 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/intrinsic-element/components.js +399 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/jsx-dev-runtime.js +52 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/jsx-runtime.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/render.js +641 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/server.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/utils.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/hooks/index.js +370 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/index.js +138 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-element/common.js +50 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-element/components.js +189 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-elements.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/jsx-dev-runtime.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/jsx-runtime.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/streaming.js +179 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/utils.js +200 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/basic-auth/index.js +88 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +114 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/body-limit/index.js +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/cache/index.js +124 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/combine/index.js +101 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/compress/index.js +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/context-storage/index.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/cors/index.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/csrf/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/etag/digest.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/etag/index.js +96 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/ip-restriction/index.js +176 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jsx-renderer/index.js +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwk/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +134 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwt/index.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/language/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/language/language.js +199 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/logger/index.js +72 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/method-override/index.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/powered-by/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/request-id/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/request-id/request-id.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/index.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/permissions-policy.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +195 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/serve-static/index.js +99 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/serve-static/path.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timeout/index.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timing/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timing/timing.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/trailing-slash/index.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/package.json +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/preset/quick.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/preset/tiny.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/request/constants.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/request.js +344 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/linear-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/linear-router/router.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/pattern-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/pattern-router/router.js +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/matcher.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +134 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/prepared-router.js +166 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +208 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/smart-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/smart-router/router.js +80 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/node.js +210 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/router.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/types.js +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/accept.js +245 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/basic-auth.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/body.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/buffer.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/color.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/compress.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/concurrent.js +61 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/constants.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/cookie.js +198 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/crypto.js +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/encode.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/filepath.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/handler.js +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/headers.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/html.js +150 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/http-status.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/ipaddr.js +318 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/index.js +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jwa.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jws.js +215 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jwt.js +219 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/types.js +161 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/utf8.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/mime.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/stream.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/url.js +256 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/utils.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/validator.js +108 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/client.js +189 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/fetch-result-please.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/index.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/utils.js +76 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/compose.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/context.js +412 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/accepts/accepts.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/accepts/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/adapter/index.js +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/conninfo/index.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/conninfo/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/cookie/index.js +102 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/css/common.js +236 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/css/index.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/dev/index.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/factory/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/html/index.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/proxy/index.js +89 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/route/index.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/index.js +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/middleware.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/plugins.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/ssg.js +297 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/utils.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/index.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/sse.js +68 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/stream.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/text.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/utils.js +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/testing/index.js +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/websocket/index.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/hono-base.js +383 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/hono.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/http-exception.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/base.js +342 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/children.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/components.js +198 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/constants.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/context.js +162 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/client.js +53 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/components.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/context.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/css.js +150 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/hooks/index.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/index.js +142 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/intrinsic-element/components.js +374 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/jsx-runtime.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/render.js +617 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/server.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/utils.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/hooks/index.js +328 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/index.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-element/common.js +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-element/components.js +165 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-elements.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/jsx-dev-runtime.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/jsx-runtime.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/streaming.js +155 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/utils.js +175 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/basic-auth/index.js +66 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/bearer-auth/index.js +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/body-limit/index.js +53 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/cache/index.js +102 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/combine/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/compress/index.js +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/context-storage/index.js +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/cors/index.js +84 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/csrf/index.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/etag/digest.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/etag/index.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/ip-restriction/index.js +162 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jsx-renderer/index.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwk/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwk/jwk.js +112 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwt/index.js +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwt/jwt.js +114 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/language/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/language/language.js +168 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/logger/index.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/method-override/index.js +84 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/powered-by/index.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/pretty-json/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/request-id/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/request-id/request-id.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/index.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/permissions-policy.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +172 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/serve-static/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/serve-static/path.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timeout/index.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timing/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timing/timing.js +104 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/trailing-slash/index.js +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/preset/quick.js +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/preset/tiny.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/request/constants.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/request.js +321 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/linear-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/linear-router/router.js +118 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/pattern-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/pattern-router/router.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/matcher.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/node.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/prepared-router.js +142 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/router.js +190 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/trie.js +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/smart-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/smart-router/router.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/node.js +188 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/router.js +26 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router.js +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/conninfo.d.ts +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +184 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +153 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/conninfo.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/index.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/serve-static.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/server.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/ssg.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/websocket.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/conninfo.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/handler.d.ts +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static-module.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/utils.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/websocket.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/conninfo.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/serve-static.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/ssg.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/websocket.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +87 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/conninfo.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/handler.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/mod.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/handler.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/index.d.ts +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/types.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/handler.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/index.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/client.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/fetch-result-please.d.ts +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/types.d.ts +229 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/utils.d.ts +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/compose.d.ts +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/context.d.ts +455 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/accepts/accepts.d.ts +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/accepts/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/adapter/index.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/conninfo/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/conninfo/types.d.ts +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/cookie/index.d.ts +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/css/common.d.ts +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/css/index.d.ts +80 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/dev/index.d.ts +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/factory/index.d.ts +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/html/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/proxy/index.d.ts +72 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/route/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/middleware.d.ts +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/plugins.d.ts +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/ssg.d.ts +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/utils.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/sse.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/stream.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/text.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/utils.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/testing/index.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/websocket/index.d.ts +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/hono-base.d.ts +220 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/hono.d.ts +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/http-exception.d.ts +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/index.d.ts +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/base.d.ts +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/children.d.ts +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/components.d.ts +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/constants.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/context.d.ts +51 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/client.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/components.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/context.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/css.d.ts +83 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/hooks/index.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/index.d.ts +88 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/jsx-dev-runtime.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/jsx-runtime.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/render.d.ts +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/server.d.ts +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/utils.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/hooks/index.d.ts +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-element/common.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-element/components.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-elements.d.ts +722 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/jsx-dev-runtime.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/jsx-runtime.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/streaming.d.ts +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/types.d.ts +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/utils.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/basic-auth/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/bearer-auth/index.d.ts +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/body-limit/index.d.ts +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/cache/index.d.ts +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/combine/index.d.ts +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/compress/index.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/cors/index.d.ts +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/csrf/index.d.ts +78 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/etag/digest.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/etag/index.d.ts +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/ip-restriction/index.d.ts +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwk/index.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwt/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/language/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/language/language.d.ts +120 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/logger/index.d.ts +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/method-override/index.d.ts +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/powered-by/index.d.ts +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/pretty-json/index.d.ts +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/request-id/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/request-id/request-id.d.ts +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/permissions-policy.d.ts +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/secure-headers.d.ts +109 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/serve-static/index.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/serve-static/path.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timeout/index.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timing/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timing/timing.d.ts +129 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/trailing-slash/index.d.ts +94 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/package.json +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/preset/quick.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/preset/tiny.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/request/constants.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/request.d.ts +324 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/linear-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/linear-router/router.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/pattern-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/pattern-router/router.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/index.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/matcher.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/prepared-router.d.ts +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/router.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/smart-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/smart-router/router.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/node.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/router.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router.d.ts +97 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/types.d.ts +573 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/accept.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/basic-auth.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/body.d.ts +79 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/buffer.d.ts +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/color.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/compress.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/concurrent.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/constants.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/cookie.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/crypto.d.ts +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/encode.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/filepath.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/handler.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/headers.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/html.d.ts +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/http-status.d.ts +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/ipaddr.d.ts +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/index.d.ts +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jwa.d.ts +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jws.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jwt.d.ts +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/types.d.ts +86 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/utf8.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/mime.d.ts +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/stream.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/types.d.ts +74 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/url.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/utils.d.ts +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/validator.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/accept.js +223 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/basic-auth.js +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/body.js +89 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/buffer.js +78 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/color.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/compress.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/concurrent.js +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/constants.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/cookie.js +173 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/crypto.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/encode.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/filepath.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/handler.js +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/headers.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/html.js +123 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/http-status.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/ipaddr.js +288 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/index.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jwa.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jws.js +192 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jwt.js +207 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/types.js +124 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/utf8.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/mime.js +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/stream.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/url.js +222 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/utils.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/validator.js +86 -0
- package/node_modules/@zuplo/editor/node_modules/hono/package.json +699 -0
- package/node_modules/@zuplo/graphql/package.json +1 -1
- package/node_modules/@zuplo/openapi-tools/package.json +1 -1
- package/node_modules/@zuplo/otel/out/esm/chunk-6UX7NFNJ.js +26 -0
- package/node_modules/@zuplo/otel/out/esm/chunk-6UX7NFNJ.js.map +1 -0
- package/node_modules/@zuplo/otel/out/esm/index.js +1 -1
- package/node_modules/@zuplo/otel/package.json +1 -1
- package/node_modules/@zuplo/runtime/out/esm/chunk-TOMTVLZA.js +405 -0
- package/node_modules/@zuplo/runtime/out/esm/chunk-TOMTVLZA.js.map +1 -0
- package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/index.js.map +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js.map +1 -1
- package/node_modules/@zuplo/runtime/out/types/index.d.ts +18 -0
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/node_modules/fast-uri/index.js +37 -1
- package/node_modules/fast-uri/package.json +1 -1
- package/node_modules/fast-uri/test/security.test.js +136 -0
- package/node_modules/hono/dist/cjs/jsx/hooks/index.js +14 -11
- package/node_modules/hono/dist/cjs/utils/cookie.js +2 -1
- package/node_modules/hono/dist/jsx/hooks/index.js +14 -11
- package/node_modules/hono/dist/utils/cookie.js +2 -1
- package/node_modules/hono/package.json +2 -3
- package/node_modules/ip-address/README.md +142 -128
- package/node_modules/ip-address/dist/common.d.ts +6 -0
- package/node_modules/ip-address/dist/common.js +17 -1
- package/node_modules/ip-address/dist/common.js.map +1 -1
- package/node_modules/ip-address/dist/ipv4.js +3 -12
- package/node_modules/ip-address/dist/ipv4.js.map +1 -1
- package/node_modules/ip-address/dist/ipv6.d.ts +9 -2
- package/node_modules/ip-address/dist/ipv6.js +35 -16
- package/node_modules/ip-address/dist/ipv6.js.map +1 -1
- package/node_modules/ip-address/package.json +5 -3
- package/package.json +6 -6
- package/node_modules/@zuplo/otel/out/esm/chunk-6IEB7H3W.js +0 -26
- package/node_modules/@zuplo/otel/out/esm/chunk-6IEB7H3W.js.map +0 -1
- package/node_modules/@zuplo/runtime/out/esm/chunk-6E46244D.js +0 -405
- package/node_modules/@zuplo/runtime/out/esm/chunk-6E46244D.js.map +0 -1
- /package/node_modules/@zuplo/runtime/out/esm/{chunk-6E46244D.js.LEGAL.txt → chunk-TOMTVLZA.js.LEGAL.txt} +0 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
// src/middleware/combine/index.ts
|
|
2
|
+
import { compose } from "../../compose.js";
|
|
3
|
+
import { METHOD_NAME_ALL } from "../../router.js";
|
|
4
|
+
import { TrieRouter } from "../../router/trie-router/index.js";
|
|
5
|
+
var some = (...middleware) => {
|
|
6
|
+
return async function some2(c, next) {
|
|
7
|
+
let isNextCalled = false;
|
|
8
|
+
const wrappedNext = () => {
|
|
9
|
+
isNextCalled = true;
|
|
10
|
+
return next();
|
|
11
|
+
};
|
|
12
|
+
let lastError;
|
|
13
|
+
for (const handler of middleware) {
|
|
14
|
+
try {
|
|
15
|
+
const result = await handler(c, wrappedNext);
|
|
16
|
+
if (result === true && !c.finalized) {
|
|
17
|
+
await wrappedNext();
|
|
18
|
+
} else if (result === false) {
|
|
19
|
+
lastError = new Error("No successful middleware found");
|
|
20
|
+
continue;
|
|
21
|
+
}
|
|
22
|
+
lastError = void 0;
|
|
23
|
+
break;
|
|
24
|
+
} catch (error) {
|
|
25
|
+
lastError = error;
|
|
26
|
+
if (isNextCalled) {
|
|
27
|
+
break;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
if (lastError) {
|
|
32
|
+
throw lastError;
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
var every = (...middleware) => {
|
|
37
|
+
return async function every2(c, next) {
|
|
38
|
+
const currentRouteIndex = c.req.routeIndex;
|
|
39
|
+
await compose(
|
|
40
|
+
middleware.map((m) => [
|
|
41
|
+
[
|
|
42
|
+
async (c2, next2) => {
|
|
43
|
+
c2.req.routeIndex = currentRouteIndex;
|
|
44
|
+
const res = await m(c2, next2);
|
|
45
|
+
if (res === false) {
|
|
46
|
+
throw new Error("Unmet condition");
|
|
47
|
+
}
|
|
48
|
+
return res;
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
])
|
|
52
|
+
)(c, next);
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
var except = (condition, ...middleware) => {
|
|
56
|
+
let router = void 0;
|
|
57
|
+
const conditions = (Array.isArray(condition) ? condition : [condition]).map((condition2) => {
|
|
58
|
+
if (typeof condition2 === "string") {
|
|
59
|
+
router ||= new TrieRouter();
|
|
60
|
+
router.add(METHOD_NAME_ALL, condition2, true);
|
|
61
|
+
} else {
|
|
62
|
+
return condition2;
|
|
63
|
+
}
|
|
64
|
+
}).filter(Boolean);
|
|
65
|
+
if (router) {
|
|
66
|
+
conditions.unshift((c) => !!router?.match(METHOD_NAME_ALL, c.req.path)?.[0]?.[0]?.[0]);
|
|
67
|
+
}
|
|
68
|
+
const handler = some((c) => conditions.some((cond) => cond(c)), every(...middleware));
|
|
69
|
+
return async function except2(c, next) {
|
|
70
|
+
await handler(c, next);
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
export {
|
|
74
|
+
every,
|
|
75
|
+
except,
|
|
76
|
+
some
|
|
77
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
// src/middleware/compress/index.ts
|
|
2
|
+
import { parseAccept } from "../../utils/accept.js";
|
|
3
|
+
import { COMPRESSIBLE_CONTENT_TYPE_REGEX } from "../../utils/compress.js";
|
|
4
|
+
var ENCODING_TYPES = ["gzip", "deflate"];
|
|
5
|
+
var cacheControlNoTransformRegExp = /(?:^|,)\s*?no-transform\s*?(?:,|$)/i;
|
|
6
|
+
var selectEncoding = (header, candidates) => {
|
|
7
|
+
if (header === void 0) {
|
|
8
|
+
return void 0;
|
|
9
|
+
}
|
|
10
|
+
const accepts = parseAccept(header);
|
|
11
|
+
const wildcardQ = accepts.find((a) => a.type === "*")?.q;
|
|
12
|
+
let best;
|
|
13
|
+
for (const enc of candidates) {
|
|
14
|
+
const explicit = accepts.find((a) => a.type.toLowerCase() === enc);
|
|
15
|
+
const q = explicit ? explicit.q : wildcardQ ?? 0;
|
|
16
|
+
if (q === 1) {
|
|
17
|
+
return enc;
|
|
18
|
+
} else if (q > 0 && (!best || q > best.q)) {
|
|
19
|
+
best = { encoding: enc, q };
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
return best?.encoding;
|
|
23
|
+
};
|
|
24
|
+
var compress = (options) => {
|
|
25
|
+
const threshold = options?.threshold ?? 1024;
|
|
26
|
+
const candidates = options?.encoding ? [options.encoding] : ENCODING_TYPES;
|
|
27
|
+
const contentTypeFilter = options?.contentTypeFilter ?? COMPRESSIBLE_CONTENT_TYPE_REGEX;
|
|
28
|
+
const shouldCompress = typeof contentTypeFilter === "function" ? (res) => {
|
|
29
|
+
const type = res.headers.get("Content-Type");
|
|
30
|
+
return type && contentTypeFilter(type);
|
|
31
|
+
} : (res) => {
|
|
32
|
+
const type = res.headers.get("Content-Type");
|
|
33
|
+
return type && contentTypeFilter.test(type);
|
|
34
|
+
};
|
|
35
|
+
return async function compress2(ctx, next) {
|
|
36
|
+
await next();
|
|
37
|
+
const contentLength = ctx.res.headers.get("Content-Length");
|
|
38
|
+
if (ctx.res.status === 206 || // partial content, Content-Range refers to the uncompressed bytes
|
|
39
|
+
ctx.res.headers.has("Content-Encoding") || // already encoded
|
|
40
|
+
ctx.res.headers.has("Transfer-Encoding") || // already encoded or chunked
|
|
41
|
+
ctx.req.method === "HEAD" || // HEAD request
|
|
42
|
+
contentLength && Number(contentLength) < threshold || // content-length below threshold
|
|
43
|
+
!shouldCompress(ctx.res) || // not compressible type
|
|
44
|
+
!shouldTransform(ctx.res)) {
|
|
45
|
+
return;
|
|
46
|
+
}
|
|
47
|
+
const accepted = ctx.req.header("Accept-Encoding");
|
|
48
|
+
const encoding = selectEncoding(accepted, candidates);
|
|
49
|
+
if (!encoding || !ctx.res.body) {
|
|
50
|
+
return;
|
|
51
|
+
}
|
|
52
|
+
const stream = new CompressionStream(encoding);
|
|
53
|
+
ctx.res = new Response(ctx.res.body.pipeThrough(stream), ctx.res);
|
|
54
|
+
ctx.res.headers.delete("Content-Length");
|
|
55
|
+
ctx.res.headers.set("Content-Encoding", encoding);
|
|
56
|
+
const etag = ctx.res.headers.get("ETag");
|
|
57
|
+
if (etag && !etag.startsWith("W/")) {
|
|
58
|
+
ctx.res.headers.set("ETag", `W/${etag}`);
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
var shouldTransform = (res) => {
|
|
63
|
+
const cacheControl = res.headers.get("Cache-Control");
|
|
64
|
+
return !cacheControl || !cacheControlNoTransformRegExp.test(cacheControl);
|
|
65
|
+
};
|
|
66
|
+
export {
|
|
67
|
+
COMPRESSIBLE_CONTENT_TYPE_REGEX,
|
|
68
|
+
compress
|
|
69
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// src/middleware/context-storage/index.ts
|
|
2
|
+
import { AsyncLocalStorage } from "node:async_hooks";
|
|
3
|
+
var asyncLocalStorage = new AsyncLocalStorage();
|
|
4
|
+
var contextStorage = () => {
|
|
5
|
+
return async function contextStorage2(c, next) {
|
|
6
|
+
await asyncLocalStorage.run(c, next);
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
var tryGetContext = () => {
|
|
10
|
+
return asyncLocalStorage.getStore();
|
|
11
|
+
};
|
|
12
|
+
var getContext = () => {
|
|
13
|
+
const context = tryGetContext();
|
|
14
|
+
if (!context) {
|
|
15
|
+
throw new Error("Context is not available");
|
|
16
|
+
}
|
|
17
|
+
return context;
|
|
18
|
+
};
|
|
19
|
+
export {
|
|
20
|
+
contextStorage,
|
|
21
|
+
getContext,
|
|
22
|
+
tryGetContext
|
|
23
|
+
};
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
// src/middleware/cors/index.ts
|
|
2
|
+
var cors = (options) => {
|
|
3
|
+
const opts = {
|
|
4
|
+
origin: "*",
|
|
5
|
+
allowMethods: ["GET", "HEAD", "PUT", "POST", "DELETE", "PATCH"],
|
|
6
|
+
allowHeaders: [],
|
|
7
|
+
exposeHeaders: [],
|
|
8
|
+
...options
|
|
9
|
+
};
|
|
10
|
+
const findAllowOrigin = ((optsOrigin) => {
|
|
11
|
+
if (typeof optsOrigin === "string") {
|
|
12
|
+
if (optsOrigin === "*") {
|
|
13
|
+
return () => optsOrigin;
|
|
14
|
+
} else {
|
|
15
|
+
return (origin) => optsOrigin === origin ? origin : null;
|
|
16
|
+
}
|
|
17
|
+
} else if (typeof optsOrigin === "function") {
|
|
18
|
+
return optsOrigin;
|
|
19
|
+
} else {
|
|
20
|
+
return (origin) => optsOrigin.includes(origin) ? origin : null;
|
|
21
|
+
}
|
|
22
|
+
})(opts.origin);
|
|
23
|
+
const findAllowMethods = ((optsAllowMethods) => {
|
|
24
|
+
if (typeof optsAllowMethods === "function") {
|
|
25
|
+
return optsAllowMethods;
|
|
26
|
+
} else if (Array.isArray(optsAllowMethods)) {
|
|
27
|
+
return () => optsAllowMethods;
|
|
28
|
+
} else {
|
|
29
|
+
return () => [];
|
|
30
|
+
}
|
|
31
|
+
})(opts.allowMethods);
|
|
32
|
+
return async function cors2(c, next) {
|
|
33
|
+
function set(key, value) {
|
|
34
|
+
c.res.headers.set(key, value);
|
|
35
|
+
}
|
|
36
|
+
const allowOrigin = await findAllowOrigin(c.req.header("origin") || "", c);
|
|
37
|
+
if (allowOrigin) {
|
|
38
|
+
set("Access-Control-Allow-Origin", allowOrigin);
|
|
39
|
+
}
|
|
40
|
+
if (opts.credentials) {
|
|
41
|
+
set("Access-Control-Allow-Credentials", "true");
|
|
42
|
+
}
|
|
43
|
+
if (opts.exposeHeaders?.length) {
|
|
44
|
+
set("Access-Control-Expose-Headers", opts.exposeHeaders.join(","));
|
|
45
|
+
}
|
|
46
|
+
if (c.req.method === "OPTIONS") {
|
|
47
|
+
if (opts.origin !== "*") {
|
|
48
|
+
set("Vary", "Origin");
|
|
49
|
+
}
|
|
50
|
+
if (opts.maxAge != null) {
|
|
51
|
+
set("Access-Control-Max-Age", opts.maxAge.toString());
|
|
52
|
+
}
|
|
53
|
+
const allowMethods = await findAllowMethods(c.req.header("origin") || "", c);
|
|
54
|
+
if (allowMethods.length) {
|
|
55
|
+
set("Access-Control-Allow-Methods", allowMethods.join(","));
|
|
56
|
+
}
|
|
57
|
+
let headers = opts.allowHeaders;
|
|
58
|
+
if (!headers?.length) {
|
|
59
|
+
const requestHeaders = c.req.header("Access-Control-Request-Headers");
|
|
60
|
+
if (requestHeaders) {
|
|
61
|
+
headers = requestHeaders.split(/\s*,\s*/);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
if (headers?.length) {
|
|
65
|
+
set("Access-Control-Allow-Headers", headers.join(","));
|
|
66
|
+
c.res.headers.append("Vary", "Access-Control-Request-Headers");
|
|
67
|
+
}
|
|
68
|
+
c.res.headers.delete("Content-Length");
|
|
69
|
+
c.res.headers.delete("Content-Type");
|
|
70
|
+
return new Response(null, {
|
|
71
|
+
headers: c.res.headers,
|
|
72
|
+
status: 204,
|
|
73
|
+
statusText: "No Content"
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
await next();
|
|
77
|
+
if (opts.origin !== "*") {
|
|
78
|
+
c.header("Vary", "Origin", { append: true });
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
export {
|
|
83
|
+
cors
|
|
84
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
// src/middleware/csrf/index.ts
|
|
2
|
+
import { HTTPException } from "../../http-exception.js";
|
|
3
|
+
var secFetchSiteValues = ["same-origin", "same-site", "none", "cross-site"];
|
|
4
|
+
var isSecFetchSite = (value) => secFetchSiteValues.includes(value);
|
|
5
|
+
var isSafeMethodRe = /^(GET|HEAD)$/;
|
|
6
|
+
var isRequestedByFormElementRe = /^\b(application\/x-www-form-urlencoded|multipart\/form-data|text\/plain)\b/i;
|
|
7
|
+
var csrf = (options) => {
|
|
8
|
+
const originHandler = ((optsOrigin) => {
|
|
9
|
+
if (!optsOrigin) {
|
|
10
|
+
return (origin, c) => origin === new URL(c.req.url).origin;
|
|
11
|
+
} else if (typeof optsOrigin === "string") {
|
|
12
|
+
return (origin) => origin === optsOrigin;
|
|
13
|
+
} else if (typeof optsOrigin === "function") {
|
|
14
|
+
return optsOrigin;
|
|
15
|
+
} else {
|
|
16
|
+
return (origin) => optsOrigin.includes(origin);
|
|
17
|
+
}
|
|
18
|
+
})(options?.origin);
|
|
19
|
+
const isAllowedOrigin = async (origin, c) => {
|
|
20
|
+
if (origin === void 0) {
|
|
21
|
+
return false;
|
|
22
|
+
}
|
|
23
|
+
return await originHandler(origin, c);
|
|
24
|
+
};
|
|
25
|
+
const secFetchSiteHandler = ((optsSecFetchSite) => {
|
|
26
|
+
if (!optsSecFetchSite) {
|
|
27
|
+
return (secFetchSite) => secFetchSite === "same-origin";
|
|
28
|
+
} else if (typeof optsSecFetchSite === "string") {
|
|
29
|
+
return (secFetchSite) => secFetchSite === optsSecFetchSite;
|
|
30
|
+
} else if (typeof optsSecFetchSite === "function") {
|
|
31
|
+
return optsSecFetchSite;
|
|
32
|
+
} else {
|
|
33
|
+
return (secFetchSite) => optsSecFetchSite.includes(secFetchSite);
|
|
34
|
+
}
|
|
35
|
+
})(options?.secFetchSite);
|
|
36
|
+
const isAllowedSecFetchSite = async (secFetchSite, c) => {
|
|
37
|
+
if (secFetchSite === void 0) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
if (!isSecFetchSite(secFetchSite)) {
|
|
41
|
+
return false;
|
|
42
|
+
}
|
|
43
|
+
return await secFetchSiteHandler(secFetchSite, c);
|
|
44
|
+
};
|
|
45
|
+
return async function csrf2(c, next) {
|
|
46
|
+
if (!isSafeMethodRe.test(c.req.method) && isRequestedByFormElementRe.test(c.req.header("content-type") || "text/plain") && !await isAllowedSecFetchSite(c.req.header("sec-fetch-site"), c) && !await isAllowedOrigin(c.req.header("origin"), c)) {
|
|
47
|
+
const res = new Response("Forbidden", { status: 403 });
|
|
48
|
+
throw new HTTPException(403, { res });
|
|
49
|
+
}
|
|
50
|
+
await next();
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
export {
|
|
54
|
+
csrf
|
|
55
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// src/middleware/etag/digest.ts
|
|
2
|
+
var mergeBuffers = (buffer1, buffer2) => {
|
|
3
|
+
if (!buffer1) {
|
|
4
|
+
return buffer2;
|
|
5
|
+
}
|
|
6
|
+
const merged = new Uint8Array(
|
|
7
|
+
new ArrayBuffer(buffer1.byteLength + buffer2.byteLength)
|
|
8
|
+
);
|
|
9
|
+
merged.set(new Uint8Array(buffer1), 0);
|
|
10
|
+
merged.set(buffer2, buffer1.byteLength);
|
|
11
|
+
return merged;
|
|
12
|
+
};
|
|
13
|
+
var generateDigest = async (stream, generator) => {
|
|
14
|
+
if (!stream) {
|
|
15
|
+
return null;
|
|
16
|
+
}
|
|
17
|
+
let result = void 0;
|
|
18
|
+
const reader = stream.getReader();
|
|
19
|
+
for (; ; ) {
|
|
20
|
+
const { value, done } = await reader.read();
|
|
21
|
+
if (done) {
|
|
22
|
+
break;
|
|
23
|
+
}
|
|
24
|
+
result = await generator(mergeBuffers(result, value));
|
|
25
|
+
}
|
|
26
|
+
if (!result) {
|
|
27
|
+
return null;
|
|
28
|
+
}
|
|
29
|
+
return Array.prototype.map.call(new Uint8Array(result), (x) => x.toString(16).padStart(2, "0")).join("");
|
|
30
|
+
};
|
|
31
|
+
export {
|
|
32
|
+
generateDigest
|
|
33
|
+
};
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
// src/middleware/etag/index.ts
|
|
2
|
+
import { generateDigest } from "./digest.js";
|
|
3
|
+
var RETAINED_304_HEADERS = [
|
|
4
|
+
"cache-control",
|
|
5
|
+
"content-location",
|
|
6
|
+
"date",
|
|
7
|
+
"etag",
|
|
8
|
+
"expires",
|
|
9
|
+
"vary"
|
|
10
|
+
];
|
|
11
|
+
var stripWeak = (tag) => tag.replace(/^W\//, "");
|
|
12
|
+
function etagMatches(etag2, ifNoneMatch) {
|
|
13
|
+
return ifNoneMatch != null && ifNoneMatch.split(/,\s*/).some((t) => stripWeak(t) === stripWeak(etag2));
|
|
14
|
+
}
|
|
15
|
+
function initializeGenerator(generator) {
|
|
16
|
+
if (!generator) {
|
|
17
|
+
if (crypto && crypto.subtle) {
|
|
18
|
+
generator = (body) => crypto.subtle.digest(
|
|
19
|
+
{
|
|
20
|
+
name: "SHA-1"
|
|
21
|
+
},
|
|
22
|
+
body
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
return generator;
|
|
27
|
+
}
|
|
28
|
+
var etag = (options) => {
|
|
29
|
+
const retainedHeaders = options?.retainedHeaders ?? RETAINED_304_HEADERS;
|
|
30
|
+
const weak = options?.weak ?? false;
|
|
31
|
+
const generator = initializeGenerator(options?.generateDigest);
|
|
32
|
+
return async function etag2(c, next) {
|
|
33
|
+
const ifNoneMatch = c.req.header("If-None-Match") ?? null;
|
|
34
|
+
await next();
|
|
35
|
+
const res = c.res;
|
|
36
|
+
let etag3 = res.headers.get("ETag");
|
|
37
|
+
if (!etag3) {
|
|
38
|
+
if (!generator) {
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
const hash = await generateDigest(
|
|
42
|
+
// This type casing avoids the type error for `deno publish`
|
|
43
|
+
res.clone().body,
|
|
44
|
+
generator
|
|
45
|
+
);
|
|
46
|
+
if (hash === null) {
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
etag3 = weak ? `W/"${hash}"` : `"${hash}"`;
|
|
50
|
+
}
|
|
51
|
+
const matched = ifNoneMatch === "*" ? (c.req.method === "GET" || c.req.method === "HEAD") && res.ok : etagMatches(etag3, ifNoneMatch);
|
|
52
|
+
if (matched) {
|
|
53
|
+
c.res = new Response(null, {
|
|
54
|
+
status: 304,
|
|
55
|
+
statusText: "Not Modified",
|
|
56
|
+
headers: {
|
|
57
|
+
ETag: etag3
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
c.res.headers.forEach((_, key) => {
|
|
61
|
+
if (retainedHeaders.indexOf(key.toLowerCase()) === -1) {
|
|
62
|
+
c.res.headers.delete(key);
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
} else {
|
|
66
|
+
c.res.headers.set("ETag", etag3);
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
export {
|
|
71
|
+
RETAINED_304_HEADERS,
|
|
72
|
+
etag
|
|
73
|
+
};
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
// src/middleware/ip-restriction/index.ts
|
|
2
|
+
import { HTTPException } from "../../http-exception.js";
|
|
3
|
+
import {
|
|
4
|
+
convertIPv4MappedIPv6ToIPv4,
|
|
5
|
+
convertIPv4ToBinary,
|
|
6
|
+
convertIPv6BinaryToString,
|
|
7
|
+
convertIPv6ToBinary,
|
|
8
|
+
distinctRemoteAddr,
|
|
9
|
+
isIPv4MappedIPv6,
|
|
10
|
+
INVALID_IP_ADDRESS_ERROR_CODE
|
|
11
|
+
} from "../../utils/ipaddr.js";
|
|
12
|
+
var IS_CIDR_NOTATION_REGEX = /\/[^/]*$/;
|
|
13
|
+
var parseCidrPrefix = (rule, prefix, max) => {
|
|
14
|
+
if (!/^[0-9]{1,3}$/.test(prefix)) {
|
|
15
|
+
throw new TypeError(`Invalid rule: ${rule}`);
|
|
16
|
+
}
|
|
17
|
+
const parsedPrefix = parseInt(prefix);
|
|
18
|
+
if (parsedPrefix > max) {
|
|
19
|
+
throw new TypeError(`Invalid rule: ${rule}`);
|
|
20
|
+
}
|
|
21
|
+
return parsedPrefix;
|
|
22
|
+
};
|
|
23
|
+
var buildMatcher = (rules) => {
|
|
24
|
+
const functionRules = [];
|
|
25
|
+
const staticRules = /* @__PURE__ */ new Set();
|
|
26
|
+
const staticIPv4Rules = /* @__PURE__ */ new Set();
|
|
27
|
+
const staticIPv6Rules = /* @__PURE__ */ new Set();
|
|
28
|
+
const cidrRules = [];
|
|
29
|
+
const registerStaticRule = (rule) => {
|
|
30
|
+
const type = distinctRemoteAddr(rule);
|
|
31
|
+
if (type === void 0) {
|
|
32
|
+
throw new TypeError(`Invalid rule: ${rule}`);
|
|
33
|
+
}
|
|
34
|
+
if (type === "IPv4") {
|
|
35
|
+
const ipv4binary = convertIPv4ToBinary(rule);
|
|
36
|
+
staticRules.add(rule);
|
|
37
|
+
staticRules.add(`::ffff:${rule}`);
|
|
38
|
+
staticIPv4Rules.add(ipv4binary);
|
|
39
|
+
staticIPv6Rules.add(0xffffn << 32n | ipv4binary);
|
|
40
|
+
} else {
|
|
41
|
+
const ipv6binary = convertIPv6ToBinary(rule);
|
|
42
|
+
const ipv6Addr = convertIPv6BinaryToString(ipv6binary);
|
|
43
|
+
staticRules.add(ipv6Addr);
|
|
44
|
+
staticIPv6Rules.add(ipv6binary);
|
|
45
|
+
if (isIPv4MappedIPv6(ipv6binary)) {
|
|
46
|
+
staticRules.add(ipv6Addr.substring(7));
|
|
47
|
+
staticIPv4Rules.add(convertIPv4MappedIPv6ToIPv4(ipv6binary));
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
for (let rule of rules) {
|
|
52
|
+
if (rule === "*") {
|
|
53
|
+
return () => true;
|
|
54
|
+
} else if (typeof rule === "function") {
|
|
55
|
+
functionRules.push(rule);
|
|
56
|
+
} else {
|
|
57
|
+
if (IS_CIDR_NOTATION_REGEX.test(rule)) {
|
|
58
|
+
const separatedRule = rule.split("/");
|
|
59
|
+
const addrStr = separatedRule[0];
|
|
60
|
+
const type = distinctRemoteAddr(addrStr);
|
|
61
|
+
if (type === void 0) {
|
|
62
|
+
throw new TypeError(`Invalid rule: ${rule}`);
|
|
63
|
+
}
|
|
64
|
+
let isIPv4 = type === "IPv4";
|
|
65
|
+
let prefix = parseCidrPrefix(rule, separatedRule[1], isIPv4 ? 32 : 128);
|
|
66
|
+
if (isIPv4 ? prefix === 32 : prefix === 128) {
|
|
67
|
+
rule = addrStr;
|
|
68
|
+
} else {
|
|
69
|
+
let addr = (isIPv4 ? convertIPv4ToBinary : convertIPv6ToBinary)(addrStr);
|
|
70
|
+
if (type === "IPv6" && isIPv4MappedIPv6(addr) && prefix >= 96) {
|
|
71
|
+
isIPv4 = true;
|
|
72
|
+
addr = convertIPv4MappedIPv6ToIPv4(addr);
|
|
73
|
+
prefix -= 96;
|
|
74
|
+
}
|
|
75
|
+
const mask = (1n << BigInt(prefix)) - 1n << BigInt((isIPv4 ? 32 : 128) - prefix);
|
|
76
|
+
cidrRules.push([isIPv4, addr & mask, mask]);
|
|
77
|
+
continue;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
registerStaticRule(rule);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
return (remote) => {
|
|
84
|
+
if (staticRules.has(remote.addr)) {
|
|
85
|
+
return true;
|
|
86
|
+
}
|
|
87
|
+
const remoteAddr = remote.binaryAddr ||= (remote.isIPv4 ? convertIPv4ToBinary : convertIPv6ToBinary)(remote.addr);
|
|
88
|
+
const remoteIPv4Addr = remote.isIPv4 || isIPv4MappedIPv6(remoteAddr) ? remote.isIPv4 ? remoteAddr : convertIPv4MappedIPv6ToIPv4(remoteAddr) : void 0;
|
|
89
|
+
if ((remote.isIPv4 ? staticIPv4Rules : staticIPv6Rules).has(remoteAddr)) {
|
|
90
|
+
return true;
|
|
91
|
+
}
|
|
92
|
+
for (const [isIPv4, addr, mask] of cidrRules) {
|
|
93
|
+
if (isIPv4) {
|
|
94
|
+
if (remoteIPv4Addr === void 0) {
|
|
95
|
+
continue;
|
|
96
|
+
}
|
|
97
|
+
if ((remoteIPv4Addr & mask) === addr) {
|
|
98
|
+
return true;
|
|
99
|
+
}
|
|
100
|
+
continue;
|
|
101
|
+
}
|
|
102
|
+
if (remote.isIPv4) {
|
|
103
|
+
continue;
|
|
104
|
+
}
|
|
105
|
+
if ((remoteAddr & mask) === addr) {
|
|
106
|
+
return true;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
for (const rule of functionRules) {
|
|
110
|
+
if (rule({ addr: remote.addr, type: remote.type })) {
|
|
111
|
+
return true;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
return false;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
var ipRestriction = (getIP, { denyList = [], allowList = [] }, onError) => {
|
|
118
|
+
const allowLength = allowList.length;
|
|
119
|
+
const denyMatcher = buildMatcher(denyList);
|
|
120
|
+
const allowMatcher = buildMatcher(allowList);
|
|
121
|
+
const blockError = (c) => new HTTPException(403, {
|
|
122
|
+
res: c.text("Forbidden", {
|
|
123
|
+
status: 403
|
|
124
|
+
})
|
|
125
|
+
});
|
|
126
|
+
return async function ipRestriction2(c, next) {
|
|
127
|
+
const connInfo = getIP(c);
|
|
128
|
+
const addr = typeof connInfo === "string" ? connInfo : connInfo.remote.address;
|
|
129
|
+
if (!addr) {
|
|
130
|
+
throw blockError(c);
|
|
131
|
+
}
|
|
132
|
+
const type = typeof connInfo !== "string" && connInfo.remote.addressType || distinctRemoteAddr(addr);
|
|
133
|
+
const remoteData = { addr, type, isIPv4: type === "IPv4" };
|
|
134
|
+
try {
|
|
135
|
+
if (denyMatcher(remoteData)) {
|
|
136
|
+
if (onError) {
|
|
137
|
+
return onError({ addr, type }, c);
|
|
138
|
+
}
|
|
139
|
+
throw blockError(c);
|
|
140
|
+
}
|
|
141
|
+
if (allowMatcher(remoteData)) {
|
|
142
|
+
return await next();
|
|
143
|
+
}
|
|
144
|
+
} catch (e) {
|
|
145
|
+
if (e instanceof TypeError && e.code === INVALID_IP_ADDRESS_ERROR_CODE) {
|
|
146
|
+
throw blockError(c);
|
|
147
|
+
}
|
|
148
|
+
throw e;
|
|
149
|
+
}
|
|
150
|
+
if (allowLength === 0) {
|
|
151
|
+
return await next();
|
|
152
|
+
} else {
|
|
153
|
+
if (onError) {
|
|
154
|
+
return await onError({ addr, type }, c);
|
|
155
|
+
}
|
|
156
|
+
throw blockError(c);
|
|
157
|
+
}
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
export {
|
|
161
|
+
ipRestriction
|
|
162
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
// src/middleware/jsx-renderer/index.ts
|
|
2
|
+
import { html, raw } from "../../helper/html/index.js";
|
|
3
|
+
import { Fragment, createContext, jsx, useContext } from "../../jsx/index.js";
|
|
4
|
+
import { renderToReadableStream } from "../../jsx/streaming.js";
|
|
5
|
+
var RequestContext = createContext(null);
|
|
6
|
+
var createRenderer = (c, Layout, component, options) => (children, props) => {
|
|
7
|
+
options = typeof options === "function" ? options(c) : options;
|
|
8
|
+
const docType = typeof options?.docType === "string" ? options.docType : options?.docType === false ? "" : "<!DOCTYPE html>";
|
|
9
|
+
const currentLayout = component ? jsx(
|
|
10
|
+
(props2) => component(props2, c),
|
|
11
|
+
{
|
|
12
|
+
Layout,
|
|
13
|
+
...props
|
|
14
|
+
},
|
|
15
|
+
children
|
|
16
|
+
) : children;
|
|
17
|
+
const body = html`${raw(docType)}${jsx(
|
|
18
|
+
RequestContext.Provider,
|
|
19
|
+
{ value: c },
|
|
20
|
+
currentLayout
|
|
21
|
+
)}`;
|
|
22
|
+
if (options?.stream) {
|
|
23
|
+
if (options.stream === true) {
|
|
24
|
+
c.header("Transfer-Encoding", "chunked");
|
|
25
|
+
c.header("Content-Type", "text/html; charset=UTF-8");
|
|
26
|
+
c.header("Content-Encoding", "Identity");
|
|
27
|
+
} else {
|
|
28
|
+
for (const [key, value] of Object.entries(options.stream)) {
|
|
29
|
+
c.header(key, value);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
return c.body(renderToReadableStream(body));
|
|
33
|
+
} else {
|
|
34
|
+
return c.html(body);
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
var jsxRenderer = (component, options) => function jsxRenderer2(c, next) {
|
|
38
|
+
const Layout = c.getLayout() ?? Fragment;
|
|
39
|
+
if (component) {
|
|
40
|
+
c.setLayout((props) => {
|
|
41
|
+
return component({ ...props, Layout }, c);
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
c.setRenderer(createRenderer(c, Layout, component, options));
|
|
45
|
+
return next();
|
|
46
|
+
};
|
|
47
|
+
var useRequestContext = () => {
|
|
48
|
+
const c = useContext(RequestContext);
|
|
49
|
+
if (!c) {
|
|
50
|
+
throw new Error("RequestContext is not provided.");
|
|
51
|
+
}
|
|
52
|
+
return c;
|
|
53
|
+
};
|
|
54
|
+
export {
|
|
55
|
+
RequestContext,
|
|
56
|
+
jsxRenderer,
|
|
57
|
+
useRequestContext
|
|
58
|
+
};
|