@orpc/server 0.0.0-next.a246703 → 0.0.0-next.a2b3a55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/README.md +1 -0
  2. package/dist/adapters/fetch/index.d.mts +15 -10
  3. package/dist/adapters/fetch/index.d.ts +15 -10
  4. package/dist/adapters/fetch/index.mjs +104 -8
  5. package/dist/adapters/node/index.d.mts +15 -10
  6. package/dist/adapters/node/index.d.ts +15 -10
  7. package/dist/adapters/node/index.mjs +17 -12
  8. package/dist/adapters/standard/index.d.mts +4 -4
  9. package/dist/adapters/standard/index.d.ts +4 -4
  10. package/dist/adapters/standard/index.mjs +6 -4
  11. package/dist/index.d.mts +51 -34
  12. package/dist/index.d.ts +51 -34
  13. package/dist/index.mjs +32 -11
  14. package/dist/plugins/index.d.mts +101 -6
  15. package/dist/plugins/index.d.ts +101 -6
  16. package/dist/plugins/index.mjs +147 -2
  17. package/dist/shared/{server.ywWqDZgA.d.ts → server.B1oIHH_j.d.mts} +18 -10
  18. package/dist/shared/{server.D0YVcfZk.d.mts → server.BVHsfJ99.d.mts} +9 -8
  19. package/dist/shared/{server.D0YVcfZk.d.ts → server.BVHsfJ99.d.ts} +9 -8
  20. package/dist/shared/server.BW-nUGgA.mjs +36 -0
  21. package/dist/shared/server.BuLPHTX1.d.mts +18 -0
  22. package/dist/shared/{server.CjWkNG6l.mjs → server.C37gDhSZ.mjs} +18 -24
  23. package/dist/shared/{server.BMkFIQUb.d.mts → server.CaWivVk3.d.ts} +18 -10
  24. package/dist/shared/{server.D9QduY95.mjs → server.DFuJLDuo.mjs} +43 -14
  25. package/dist/shared/{server.taqJyaMn.d.ts → server.DMhSfHk1.d.ts} +2 -2
  26. package/dist/shared/server.D_vpYits.d.ts +18 -0
  27. package/dist/shared/{server.89QkKw3a.d.mts → server.Dwnm6cSk.d.mts} +2 -2
  28. package/package.json +8 -22
  29. package/dist/adapters/hono/index.d.mts +0 -22
  30. package/dist/adapters/hono/index.d.ts +0 -22
  31. package/dist/adapters/hono/index.mjs +0 -32
  32. package/dist/adapters/next/index.d.mts +0 -29
  33. package/dist/adapters/next/index.d.ts +0 -29
  34. package/dist/adapters/next/index.mjs +0 -29
  35. package/dist/shared/server.B1S3zwuw.d.mts +0 -8
  36. package/dist/shared/server.BT0gne12.d.ts +0 -8
  37. package/dist/shared/server.Et1O6Bm7.mjs +0 -98
@@ -1,6 +1,6 @@
1
1
  import { isContractProcedure, ValidationError, mergePrefix, mergeErrorMap, enhanceRoute } from '@orpc/contract';
2
2
  import { fallbackORPCErrorStatus, ORPCError } from '@orpc/client';
3
- import { value, intercept, toError } from '@orpc/shared';
3
+ import { value, intercept } from '@orpc/shared';
4
4
 
5
5
  const LAZY_SYMBOL = Symbol("ORPC_LAZY_SYMBOL");
6
6
  function lazy(loader, meta = {}) {
@@ -127,7 +127,7 @@ function createProcedureClient(lazyableProcedure, ...[options]) {
127
127
  );
128
128
  } catch (e) {
129
129
  if (!(e instanceof ORPCError)) {
130
- throw toError(e);
130
+ throw e;
131
131
  }
132
132
  const validated = await validateORPCError(procedure["~orpc"].errorMap, e);
133
133
  throw validated;
@@ -169,35 +169,29 @@ async function executeProcedureInternal(procedure, options) {
169
169
  const middlewares = procedure["~orpc"].middlewares;
170
170
  const inputValidationIndex = Math.min(Math.max(0, procedure["~orpc"].inputValidationIndex), middlewares.length);
171
171
  const outputValidationIndex = Math.min(Math.max(0, procedure["~orpc"].outputValidationIndex), middlewares.length);
172
- let currentIndex = 0;
173
- let currentContext = options.context;
174
- let currentInput = options.input;
175
- const next = async (...[nextOptions]) => {
176
- const index = currentIndex;
177
- const midContext = nextOptions?.context ?? {};
178
- currentIndex += 1;
179
- currentContext = mergeCurrentContext(currentContext, midContext);
172
+ const next = async (index, context, input) => {
173
+ let currentInput = input;
180
174
  if (index === inputValidationIndex) {
181
175
  currentInput = await validateInput(procedure, currentInput);
182
176
  }
183
177
  const mid = middlewares[index];
184
- const result = mid ? {
185
- context: midContext,
186
- output: (await mid({ ...options, context: currentContext, next }, currentInput, middlewareOutputFn)).output
187
- } : {
188
- context: midContext,
189
- output: await procedure["~orpc"].handler({ ...options, context: currentContext, input: currentInput })
190
- };
178
+ const output = mid ? (await mid({
179
+ ...options,
180
+ context,
181
+ next: async (...[nextOptions]) => {
182
+ const nextContext = nextOptions?.context ?? {};
183
+ return {
184
+ output: await next(index + 1, mergeCurrentContext(context, nextContext), currentInput),
185
+ context: nextContext
186
+ };
187
+ }
188
+ }, currentInput, middlewareOutputFn)).output : await procedure["~orpc"].handler({ ...options, context, input: currentInput });
191
189
  if (index === outputValidationIndex) {
192
- const validatedOutput = await validateOutput(procedure, result.output);
193
- return {
194
- context: result.context,
195
- output: validatedOutput
196
- };
190
+ return await validateOutput(procedure, output);
197
191
  }
198
- return result;
192
+ return output;
199
193
  };
200
- return (await next()).output;
194
+ return next(0, options.context, options.input);
201
195
  }
202
196
 
203
197
  const HIDDEN_ROUTER_CONTRACT_SYMBOL = Symbol("ORPC_HIDDEN_ROUTER_CONTRACT");
@@ -1,8 +1,18 @@
1
1
  import { HTTPPath, ORPCError } from '@orpc/client';
2
- import { AnySchema, Meta, InferSchemaOutput, ErrorFromErrorMap } from '@orpc/contract';
3
- import { Interceptor } from '@orpc/shared';
2
+ import { Meta, InferSchemaOutput, AnySchema, ErrorFromErrorMap } from '@orpc/contract';
3
+ import { Interceptor, ThrowableError } from '@orpc/shared';
4
4
  import { StandardResponse, StandardLazyRequest } from '@orpc/standard-server';
5
- import { a as AnyRouter, A as AnyProcedure, C as Context, P as ProcedureClientInterceptorOptions, R as Router } from './server.D0YVcfZk.mjs';
5
+ import { C as Context, f as AnyRouter, h as AnyProcedure, F as ProcedureClientInterceptorOptions, R as Router } from './server.BVHsfJ99.js';
6
+
7
+ interface StandardHandlerPlugin<TContext extends Context> {
8
+ order?: number;
9
+ init?(options: StandardHandlerOptions<TContext>): void;
10
+ }
11
+ declare class CompositeStandardHandlerPlugin<T extends Context, TPlugin extends StandardHandlerPlugin<T>> implements StandardHandlerPlugin<T> {
12
+ protected readonly plugins: TPlugin[];
13
+ constructor(plugins?: readonly TPlugin[]);
14
+ init(options: StandardHandlerOptions<T>): void;
15
+ }
6
16
 
7
17
  type StandardParams = Record<string, string>;
8
18
  type StandardMatchResult = {
@@ -31,9 +41,6 @@ type StandardHandleResult = {
31
41
  matched: false;
32
42
  response: undefined;
33
43
  };
34
- interface StandardHandlerPlugin<TContext extends Context> {
35
- init?(options: StandardHandlerOptions<TContext>): void;
36
- }
37
44
  interface StandardHandlerInterceptorOptions<T extends Context> extends StandardHandleOptions<T> {
38
45
  request: StandardLazyRequest;
39
46
  }
@@ -42,16 +49,16 @@ interface StandardHandlerOptions<TContext extends Context> {
42
49
  /**
43
50
  * Interceptors at the request level, helpful when you want catch errors
44
51
  */
45
- interceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, unknown>[];
52
+ interceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, ThrowableError>[];
46
53
  /**
47
54
  * Interceptors at the root level, helpful when you want override the request/response
48
55
  */
49
- rootInterceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, unknown>[];
56
+ rootInterceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, ThrowableError>[];
50
57
  /**
51
58
  *
52
59
  * Interceptors for procedure client.
53
60
  */
54
- clientInterceptors?: Interceptor<ProcedureClientInterceptorOptions<TContext, AnySchema, Record<never, never>, Meta>, InferSchemaOutput<AnySchema>, ErrorFromErrorMap<Record<never, never>>>[];
61
+ clientInterceptors?: Interceptor<ProcedureClientInterceptorOptions<TContext, Record<never, never>, Meta>, InferSchemaOutput<AnySchema>, ErrorFromErrorMap<Record<never, never>>>[];
55
62
  }
56
63
  declare class StandardHandler<T extends Context> {
57
64
  private readonly matcher;
@@ -63,4 +70,5 @@ declare class StandardHandler<T extends Context> {
63
70
  handle(request: StandardLazyRequest, options: StandardHandleOptions<T>): Promise<StandardHandleResult>;
64
71
  }
65
72
 
66
- export { type StandardHandleOptions as S, type StandardHandlerOptions as a, type StandardHandlerInterceptorOptions as b, type StandardHandlerPlugin as c, type StandardCodec as d, type StandardParams as e, type StandardMatcher as f, type StandardMatchResult as g, type StandardHandleResult as h, StandardHandler as i };
73
+ export { CompositeStandardHandlerPlugin as C, StandardHandler as i };
74
+ export type { StandardHandlerInterceptorOptions as S, StandardHandlerPlugin as a, StandardHandlerOptions as b, StandardCodec as c, StandardParams as d, StandardMatcher as e, StandardMatchResult as f, StandardHandleOptions as g, StandardHandleResult as h };
@@ -1,15 +1,28 @@
1
- import { ORPCError, toORPCError } from '@orpc/client';
1
+ import { toHttpPath, StandardRPCJsonSerializer, StandardRPCSerializer } from '@orpc/client/standard';
2
2
  import { toArray, intercept, parseEmptyableJSON } from '@orpc/shared';
3
- import { c as createProcedureClient, t as traverseContractProcedures, i as isProcedure, u as unlazy, g as getRouter, a as createContractedProcedure } from './server.CjWkNG6l.mjs';
4
- import { toHttpPath } from '@orpc/client/standard';
3
+ import '@orpc/standard-server/batch';
4
+ import { ORPCError, toORPCError } from '@orpc/client';
5
+ import { S as StrictGetMethodPlugin } from './server.BW-nUGgA.mjs';
6
+ import { c as createProcedureClient, t as traverseContractProcedures, i as isProcedure, u as unlazy, g as getRouter, a as createContractedProcedure } from './server.C37gDhSZ.mjs';
7
+
8
+ class CompositeStandardHandlerPlugin {
9
+ plugins;
10
+ constructor(plugins = []) {
11
+ this.plugins = [...plugins].sort((a, b) => (a.order ?? 0) - (b.order ?? 0));
12
+ }
13
+ init(options) {
14
+ for (const plugin of this.plugins) {
15
+ plugin.init?.(options);
16
+ }
17
+ }
18
+ }
5
19
 
6
20
  class StandardHandler {
7
21
  constructor(router, matcher, codec, options) {
8
22
  this.matcher = matcher;
9
23
  this.codec = codec;
10
- for (const plugin of toArray(options.plugins)) {
11
- plugin.init?.(options);
12
- }
24
+ const plugins = new CompositeStandardHandlerPlugin(options.plugins);
25
+ plugins.init(options);
13
26
  this.interceptors = toArray(options.interceptors);
14
27
  this.clientInterceptors = toArray(options.clientInterceptors);
15
28
  this.rootInterceptors = toArray(options.rootInterceptors);
@@ -18,23 +31,24 @@ class StandardHandler {
18
31
  interceptors;
19
32
  clientInterceptors;
20
33
  rootInterceptors;
21
- handle(request, options) {
34
+ async handle(request, options) {
35
+ const prefix = options.prefix?.replace(/\/$/, "") || void 0;
36
+ if (prefix && !request.url.pathname.startsWith(`${prefix}/`) && request.url.pathname !== prefix) {
37
+ return { matched: false, response: void 0 };
38
+ }
22
39
  return intercept(
23
40
  this.rootInterceptors,
24
- { ...options, request },
41
+ { ...options, request, prefix },
25
42
  async (interceptorOptions) => {
26
43
  let isDecoding = false;
27
44
  try {
28
45
  return await intercept(
29
46
  this.interceptors,
30
47
  interceptorOptions,
31
- async ({ request: request2, context, prefix }) => {
48
+ async ({ request: request2, context, prefix: prefix2 }) => {
32
49
  const method = request2.method;
33
50
  const url = request2.url;
34
- if (prefix && !url.pathname.startsWith(prefix)) {
35
- return { matched: false, response: void 0 };
36
- }
37
- const pathname = prefix ? url.pathname.replace(prefix, "") : url.pathname;
51
+ const pathname = prefix2 ? url.pathname.replace(prefix2, "") : url.pathname;
38
52
  const match = await this.matcher.match(method, `/${pathname.replace(/^\/|\/$/g, "")}`);
39
53
  if (!match) {
40
54
  return { matched: false, response: void 0 };
@@ -158,4 +172,19 @@ class StandardRPCMatcher {
158
172
  }
159
173
  }
160
174
 
161
- export { StandardHandler as S, StandardRPCCodec as a, StandardRPCMatcher as b };
175
+ class StandardRPCHandler extends StandardHandler {
176
+ constructor(router, options) {
177
+ options.plugins ??= [];
178
+ const strictGetMethodPluginEnabled = options.strictGetMethodPluginEnabled ?? true;
179
+ if (strictGetMethodPluginEnabled) {
180
+ options.plugins.push(new StrictGetMethodPlugin());
181
+ }
182
+ const jsonSerializer = new StandardRPCJsonSerializer(options);
183
+ const serializer = new StandardRPCSerializer(jsonSerializer);
184
+ const matcher = new StandardRPCMatcher();
185
+ const codec = new StandardRPCCodec(serializer);
186
+ super(router, matcher, codec, options);
187
+ }
188
+ }
189
+
190
+ export { CompositeStandardHandlerPlugin as C, StandardHandler as S, StandardRPCCodec as a, StandardRPCHandler as b, StandardRPCMatcher as c };
@@ -1,5 +1,5 @@
1
- import { C as Context } from './server.D0YVcfZk.js';
2
- import { S as StandardHandleOptions } from './server.ywWqDZgA.js';
1
+ import { C as Context } from './server.BVHsfJ99.js';
2
+ import { g as StandardHandleOptions } from './server.CaWivVk3.js';
3
3
 
4
4
  type FriendlyStandardHandleOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
5
5
  context?: T;
@@ -0,0 +1,18 @@
1
+ import { StandardRPCJsonSerializerOptions } from '@orpc/client/standard';
2
+ import { C as Context, R as Router } from './server.BVHsfJ99.js';
3
+ import { b as StandardHandlerOptions, i as StandardHandler } from './server.CaWivVk3.js';
4
+
5
+ interface StandardRPCHandlerOptions<T extends Context> extends StandardHandlerOptions<T>, StandardRPCJsonSerializerOptions {
6
+ /**
7
+ * Enables or disables the StrictGetMethodPlugin.
8
+ *
9
+ * @default true
10
+ */
11
+ strictGetMethodPluginEnabled?: boolean;
12
+ }
13
+ declare class StandardRPCHandler<T extends Context> extends StandardHandler<T> {
14
+ constructor(router: Router<any, T>, options: StandardRPCHandlerOptions<T>);
15
+ }
16
+
17
+ export { StandardRPCHandler as a };
18
+ export type { StandardRPCHandlerOptions as S };
@@ -1,5 +1,5 @@
1
- import { C as Context } from './server.D0YVcfZk.mjs';
2
- import { S as StandardHandleOptions } from './server.BMkFIQUb.mjs';
1
+ import { C as Context } from './server.BVHsfJ99.mjs';
2
+ import { g as StandardHandleOptions } from './server.B1oIHH_j.mjs';
3
3
 
4
4
  type FriendlyStandardHandleOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
5
5
  context?: T;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/server",
3
3
  "type": "module",
4
- "version": "0.0.0-next.a246703",
4
+ "version": "0.0.0-next.a2b3a55",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {
@@ -34,16 +34,6 @@
34
34
  "import": "./dist/adapters/fetch/index.mjs",
35
35
  "default": "./dist/adapters/fetch/index.mjs"
36
36
  },
37
- "./hono": {
38
- "types": "./dist/adapters/hono/index.d.mts",
39
- "import": "./dist/adapters/hono/index.mjs",
40
- "default": "./dist/adapters/hono/index.mjs"
41
- },
42
- "./next": {
43
- "types": "./dist/adapters/next/index.d.mts",
44
- "import": "./dist/adapters/next/index.mjs",
45
- "default": "./dist/adapters/next/index.mjs"
46
- },
47
37
  "./node": {
48
38
  "types": "./dist/adapters/node/index.d.mts",
49
39
  "import": "./dist/adapters/node/index.mjs",
@@ -53,20 +43,16 @@
53
43
  "files": [
54
44
  "dist"
55
45
  ],
56
- "peerDependencies": {
57
- "hono": ">=4.6.0",
58
- "next": ">=14.0.0"
59
- },
60
46
  "dependencies": {
61
- "@orpc/client": "0.0.0-next.a246703",
62
- "@orpc/contract": "0.0.0-next.a246703",
63
- "@orpc/standard-server": "0.0.0-next.a246703",
64
- "@orpc/shared": "0.0.0-next.a246703",
65
- "@orpc/standard-server-fetch": "0.0.0-next.a246703",
66
- "@orpc/standard-server-node": "0.0.0-next.a246703"
47
+ "@orpc/client": "0.0.0-next.a2b3a55",
48
+ "@orpc/contract": "0.0.0-next.a2b3a55",
49
+ "@orpc/standard-server": "0.0.0-next.a2b3a55",
50
+ "@orpc/shared": "0.0.0-next.a2b3a55",
51
+ "@orpc/standard-server-fetch": "0.0.0-next.a2b3a55",
52
+ "@orpc/standard-server-node": "0.0.0-next.a2b3a55"
67
53
  },
68
54
  "devDependencies": {
69
- "supertest": "^7.0.0"
55
+ "supertest": "^7.1.0"
70
56
  },
71
57
  "scripts": {
72
58
  "build": "unbuild",
@@ -1,22 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.mjs';
2
- export { BodyLimitPlugin, BodyLimitPluginOptions, FetchHandleResult, FetchHandlerInterceptorOptions, FetchHandlerOptions, FetchHandlerPlugin, RPCHandler } from '../fetch/index.mjs';
3
- import { Value, MaybeOptionalOptions } from '@orpc/shared';
4
- import { Context as Context$1, MiddlewareHandler } from 'hono';
5
- import { C as Context } from '../../shared/server.D0YVcfZk.mjs';
6
- import { S as StandardHandleOptions } from '../../shared/server.BMkFIQUb.mjs';
7
- import '../../shared/server.89QkKw3a.mjs';
8
- import '@orpc/standard-server-fetch';
9
- import '../../shared/server.B1S3zwuw.mjs';
10
- import '@orpc/client/standard';
11
- import '@orpc/client';
12
- import '@orpc/contract';
13
- import '@orpc/standard-server';
14
-
15
- type CreateMiddlewareOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
16
- context?: Value<T, [Context$1]>;
17
- } : {
18
- context: Value<T, [Context$1]>;
19
- });
20
- declare function createMiddleware<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<CreateMiddlewareOptions<T>>): MiddlewareHandler;
21
-
22
- export { type CreateMiddlewareOptions, FetchHandler, createMiddleware };
@@ -1,22 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.js';
2
- export { BodyLimitPlugin, BodyLimitPluginOptions, FetchHandleResult, FetchHandlerInterceptorOptions, FetchHandlerOptions, FetchHandlerPlugin, RPCHandler } from '../fetch/index.js';
3
- import { Value, MaybeOptionalOptions } from '@orpc/shared';
4
- import { Context as Context$1, MiddlewareHandler } from 'hono';
5
- import { C as Context } from '../../shared/server.D0YVcfZk.js';
6
- import { S as StandardHandleOptions } from '../../shared/server.ywWqDZgA.js';
7
- import '../../shared/server.taqJyaMn.js';
8
- import '@orpc/standard-server-fetch';
9
- import '../../shared/server.BT0gne12.js';
10
- import '@orpc/client/standard';
11
- import '@orpc/client';
12
- import '@orpc/contract';
13
- import '@orpc/standard-server';
14
-
15
- type CreateMiddlewareOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
16
- context?: Value<T, [Context$1]>;
17
- } : {
18
- context: Value<T, [Context$1]>;
19
- });
20
- declare function createMiddleware<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<CreateMiddlewareOptions<T>>): MiddlewareHandler;
21
-
22
- export { type CreateMiddlewareOptions, FetchHandler, createMiddleware };
@@ -1,32 +0,0 @@
1
- export { B as BodyLimitPlugin, F as FetchHandler, R as RPCHandler } from '../../shared/server.Et1O6Bm7.mjs';
2
- import { value } from '@orpc/shared';
3
- import '@orpc/client';
4
- import '@orpc/client/standard';
5
- import '../../shared/server.D9QduY95.mjs';
6
- import '../../shared/server.CjWkNG6l.mjs';
7
- import '@orpc/contract';
8
- import '@orpc/standard-server-fetch';
9
- import '../../shared/server.BVwwTHyO.mjs';
10
-
11
- function createMiddleware(handler, ...[options]) {
12
- return async (c, next) => {
13
- const bodyProps = /* @__PURE__ */ new Set(["arrayBuffer", "blob", "formData", "json", "text"]);
14
- const request = c.req.method === "GET" || c.req.method === "HEAD" ? c.req.raw : new Proxy(c.req.raw, {
15
- // https://github.com/honojs/middleware/blob/main/packages/trpc-server/src/index.ts#L39
16
- get(target, prop) {
17
- if (bodyProps.has(prop)) {
18
- return () => c.req[prop]();
19
- }
20
- return Reflect.get(target, prop, target);
21
- }
22
- });
23
- const context = await value(options?.context ?? {}, c);
24
- const { matched, response } = await handler.handle(request, { ...options, context });
25
- if (matched) {
26
- return c.newResponse(response.body, response);
27
- }
28
- await next();
29
- };
30
- }
31
-
32
- export { createMiddleware };
@@ -1,29 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.mjs';
2
- export { BodyLimitPlugin, BodyLimitPluginOptions, FetchHandleResult, FetchHandlerInterceptorOptions, FetchHandlerOptions, FetchHandlerPlugin, RPCHandler } from '../fetch/index.mjs';
3
- import { Value, MaybeOptionalOptions } from '@orpc/shared';
4
- import { NextRequest } from 'next/server';
5
- import { C as Context } from '../../shared/server.D0YVcfZk.mjs';
6
- import { S as StandardHandleOptions } from '../../shared/server.BMkFIQUb.mjs';
7
- import '../../shared/server.89QkKw3a.mjs';
8
- import '@orpc/standard-server-fetch';
9
- import '../../shared/server.B1S3zwuw.mjs';
10
- import '@orpc/client/standard';
11
- import '@orpc/client';
12
- import '@orpc/contract';
13
- import '@orpc/standard-server';
14
-
15
- type ServeOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
16
- context?: Value<T, [NextRequest]>;
17
- } : {
18
- context: Value<T, [NextRequest]>;
19
- });
20
- interface ServeResult {
21
- GET(req: NextRequest): Promise<Response>;
22
- POST(req: NextRequest): Promise<Response>;
23
- PUT(req: NextRequest): Promise<Response>;
24
- PATCH(req: NextRequest): Promise<Response>;
25
- DELETE(req: NextRequest): Promise<Response>;
26
- }
27
- declare function serve<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<ServeOptions<T>>): ServeResult;
28
-
29
- export { FetchHandler, type ServeOptions, type ServeResult, serve };
@@ -1,29 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.js';
2
- export { BodyLimitPlugin, BodyLimitPluginOptions, FetchHandleResult, FetchHandlerInterceptorOptions, FetchHandlerOptions, FetchHandlerPlugin, RPCHandler } from '../fetch/index.js';
3
- import { Value, MaybeOptionalOptions } from '@orpc/shared';
4
- import { NextRequest } from 'next/server';
5
- import { C as Context } from '../../shared/server.D0YVcfZk.js';
6
- import { S as StandardHandleOptions } from '../../shared/server.ywWqDZgA.js';
7
- import '../../shared/server.taqJyaMn.js';
8
- import '@orpc/standard-server-fetch';
9
- import '../../shared/server.BT0gne12.js';
10
- import '@orpc/client/standard';
11
- import '@orpc/client';
12
- import '@orpc/contract';
13
- import '@orpc/standard-server';
14
-
15
- type ServeOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
16
- context?: Value<T, [NextRequest]>;
17
- } : {
18
- context: Value<T, [NextRequest]>;
19
- });
20
- interface ServeResult {
21
- GET(req: NextRequest): Promise<Response>;
22
- POST(req: NextRequest): Promise<Response>;
23
- PUT(req: NextRequest): Promise<Response>;
24
- PATCH(req: NextRequest): Promise<Response>;
25
- DELETE(req: NextRequest): Promise<Response>;
26
- }
27
- declare function serve<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<ServeOptions<T>>): ServeResult;
28
-
29
- export { FetchHandler, type ServeOptions, type ServeResult, serve };
@@ -1,29 +0,0 @@
1
- export { B as BodyLimitPlugin, F as FetchHandler, R as RPCHandler } from '../../shared/server.Et1O6Bm7.mjs';
2
- import { value } from '@orpc/shared';
3
- import '@orpc/client';
4
- import '@orpc/client/standard';
5
- import '../../shared/server.D9QduY95.mjs';
6
- import '../../shared/server.CjWkNG6l.mjs';
7
- import '@orpc/contract';
8
- import '@orpc/standard-server-fetch';
9
- import '../../shared/server.BVwwTHyO.mjs';
10
-
11
- function serve(handler, ...[options]) {
12
- const main = async (req) => {
13
- const context = await value(options?.context ?? {}, req);
14
- const { matched, response } = await handler.handle(req, { ...options, context });
15
- if (matched) {
16
- return response;
17
- }
18
- return new Response(`Cannot find a matching procedure for ${req.url}`, { status: 404 });
19
- };
20
- return {
21
- GET: main,
22
- POST: main,
23
- PUT: main,
24
- PATCH: main,
25
- DELETE: main
26
- };
27
- }
28
-
29
- export { serve };
@@ -1,8 +0,0 @@
1
- import { StandardRPCJsonSerializerOptions } from '@orpc/client/standard';
2
- import { C as Context } from './server.D0YVcfZk.mjs';
3
- import { a as StandardHandlerOptions } from './server.BMkFIQUb.mjs';
4
-
5
- interface StandardRPCHandlerOptions<T extends Context> extends StandardHandlerOptions<T>, StandardRPCJsonSerializerOptions {
6
- }
7
-
8
- export type { StandardRPCHandlerOptions as S };
@@ -1,8 +0,0 @@
1
- import { StandardRPCJsonSerializerOptions } from '@orpc/client/standard';
2
- import { C as Context } from './server.D0YVcfZk.js';
3
- import { a as StandardHandlerOptions } from './server.ywWqDZgA.js';
4
-
5
- interface StandardRPCHandlerOptions<T extends Context> extends StandardHandlerOptions<T>, StandardRPCJsonSerializerOptions {
6
- }
7
-
8
- export type { StandardRPCHandlerOptions as S };
@@ -1,98 +0,0 @@
1
- import { ORPCError } from '@orpc/client';
2
- import { StandardRPCJsonSerializer, StandardRPCSerializer } from '@orpc/client/standard';
3
- import { S as StandardHandler, b as StandardRPCMatcher, a as StandardRPCCodec } from './server.D9QduY95.mjs';
4
- import { toArray, intercept, resolveMaybeOptionalOptions } from '@orpc/shared';
5
- import { toStandardLazyRequest, toFetchResponse } from '@orpc/standard-server-fetch';
6
- import { r as resolveFriendlyStandardHandleOptions } from './server.BVwwTHyO.mjs';
7
-
8
- class BodyLimitPlugin {
9
- maxBodySize;
10
- constructor(options) {
11
- this.maxBodySize = options.maxBodySize;
12
- }
13
- initRuntimeAdapter(options) {
14
- options.adapterInterceptors ??= [];
15
- options.adapterInterceptors.push(async (options2) => {
16
- if (!options2.request.body) {
17
- return options2.next();
18
- }
19
- let currentBodySize = 0;
20
- const rawReader = options2.request.body.getReader();
21
- const reader = new ReadableStream({
22
- start: async (controller) => {
23
- try {
24
- if (Number(options2.request.headers.get("content-length")) > this.maxBodySize) {
25
- controller.error(new ORPCError("PAYLOAD_TOO_LARGE"));
26
- return;
27
- }
28
- while (true) {
29
- const { done, value } = await rawReader.read();
30
- if (done) {
31
- break;
32
- }
33
- currentBodySize += value.length;
34
- if (currentBodySize > this.maxBodySize) {
35
- controller.error(new ORPCError("PAYLOAD_TOO_LARGE"));
36
- break;
37
- }
38
- controller.enqueue(value);
39
- }
40
- } finally {
41
- controller.close();
42
- }
43
- }
44
- });
45
- const requestInit = { body: reader, duplex: "half" };
46
- return options2.next({
47
- ...options2,
48
- request: new Request(options2.request, requestInit)
49
- });
50
- });
51
- }
52
- }
53
-
54
- class FetchHandler {
55
- constructor(standardHandler, options = {}) {
56
- this.standardHandler = standardHandler;
57
- for (const plugin of toArray(options.plugins)) {
58
- plugin.initRuntimeAdapter?.(options);
59
- }
60
- this.adapterInterceptors = toArray(options.adapterInterceptors);
61
- this.toFetchResponseOptions = options;
62
- }
63
- toFetchResponseOptions;
64
- adapterInterceptors;
65
- async handle(request, ...rest) {
66
- return intercept(
67
- this.adapterInterceptors,
68
- {
69
- ...resolveFriendlyStandardHandleOptions(resolveMaybeOptionalOptions(rest)),
70
- request,
71
- toFetchResponseOptions: this.toFetchResponseOptions
72
- },
73
- async ({ request: request2, toFetchResponseOptions, ...options }) => {
74
- const standardRequest = toStandardLazyRequest(request2);
75
- const result = await this.standardHandler.handle(standardRequest, options);
76
- if (!result.matched) {
77
- return result;
78
- }
79
- return {
80
- matched: true,
81
- response: toFetchResponse(result.response, toFetchResponseOptions)
82
- };
83
- }
84
- );
85
- }
86
- }
87
-
88
- class RPCHandler extends FetchHandler {
89
- constructor(router, options = {}) {
90
- const jsonSerializer = new StandardRPCJsonSerializer(options);
91
- const serializer = new StandardRPCSerializer(jsonSerializer);
92
- const matcher = new StandardRPCMatcher();
93
- const codec = new StandardRPCCodec(serializer);
94
- super(new StandardHandler(router, matcher, codec, options), options);
95
- }
96
- }
97
-
98
- export { BodyLimitPlugin as B, FetchHandler as F, RPCHandler as R };