@orpc/server 0.0.0-next.1d3318c → 0.0.0-next.1e104eb

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 (70) hide show
  1. package/README.md +31 -21
  2. package/dist/adapters/aws-lambda/index.d.mts +46 -0
  3. package/dist/adapters/aws-lambda/index.d.ts +46 -0
  4. package/dist/adapters/aws-lambda/index.mjs +42 -0
  5. package/dist/adapters/bun-ws/index.d.mts +36 -0
  6. package/dist/adapters/bun-ws/index.d.ts +36 -0
  7. package/dist/adapters/bun-ws/index.mjs +47 -0
  8. package/dist/adapters/crossws/index.d.mts +33 -0
  9. package/dist/adapters/crossws/index.d.ts +33 -0
  10. package/dist/adapters/crossws/index.mjs +45 -0
  11. package/dist/adapters/fetch/index.d.mts +108 -10
  12. package/dist/adapters/fetch/index.d.ts +108 -10
  13. package/dist/adapters/fetch/index.mjs +178 -8
  14. package/dist/adapters/message-port/index.d.mts +31 -0
  15. package/dist/adapters/message-port/index.d.ts +31 -0
  16. package/dist/adapters/message-port/index.mjs +39 -0
  17. package/dist/adapters/node/index.d.mts +86 -21
  18. package/dist/adapters/node/index.d.ts +86 -21
  19. package/dist/adapters/node/index.mjs +144 -23
  20. package/dist/adapters/standard/index.d.mts +11 -15
  21. package/dist/adapters/standard/index.d.ts +11 -15
  22. package/dist/adapters/standard/index.mjs +5 -3
  23. package/dist/adapters/standard-peer/index.d.mts +18 -0
  24. package/dist/adapters/standard-peer/index.d.ts +18 -0
  25. package/dist/adapters/standard-peer/index.mjs +7 -0
  26. package/dist/adapters/websocket/index.d.mts +54 -0
  27. package/dist/adapters/websocket/index.d.ts +54 -0
  28. package/dist/adapters/websocket/index.mjs +67 -0
  29. package/dist/adapters/ws/index.d.mts +31 -0
  30. package/dist/adapters/ws/index.d.ts +31 -0
  31. package/dist/adapters/ws/index.mjs +37 -0
  32. package/dist/helpers/index.d.mts +134 -0
  33. package/dist/helpers/index.d.ts +134 -0
  34. package/dist/helpers/index.mjs +188 -0
  35. package/dist/hibernation/index.d.mts +44 -0
  36. package/dist/hibernation/index.d.ts +44 -0
  37. package/dist/hibernation/index.mjs +65 -0
  38. package/dist/index.d.mts +633 -95
  39. package/dist/index.d.ts +633 -95
  40. package/dist/index.mjs +187 -37
  41. package/dist/plugins/index.d.mts +157 -19
  42. package/dist/plugins/index.d.ts +157 -19
  43. package/dist/plugins/index.mjs +199 -17
  44. package/dist/shared/{server.BFBhsdJr.mjs → server.7jWaIryJ.mjs} +148 -77
  45. package/dist/shared/server.B7b2w3_i.d.ts +12 -0
  46. package/dist/shared/server.BEFBl-Cb.d.mts +12 -0
  47. package/dist/shared/server.BHZCyRuJ.mjs +219 -0
  48. package/dist/shared/server.BU4WI18A.d.mts +32 -0
  49. package/dist/shared/server.BW-nUGgA.mjs +36 -0
  50. package/dist/shared/server.Bmh5xd4n.d.ts +74 -0
  51. package/dist/shared/{server.CPteJIPP.d.mts → server.CYNGeoCm.d.mts} +75 -24
  52. package/dist/shared/{server.CPteJIPP.d.ts → server.CYNGeoCm.d.ts} +75 -24
  53. package/dist/shared/server.D0H-iaY3.d.ts +32 -0
  54. package/dist/shared/server.DZ5BIITo.mjs +9 -0
  55. package/dist/shared/server.DhJj-1X9.d.mts +42 -0
  56. package/dist/shared/server.UVMTOWrk.mjs +26 -0
  57. package/dist/shared/server.gqRxT-yN.d.mts +74 -0
  58. package/dist/shared/server.jMTkVNIb.d.ts +42 -0
  59. package/package.json +71 -20
  60. package/dist/adapters/hono/index.d.mts +0 -19
  61. package/dist/adapters/hono/index.d.ts +0 -19
  62. package/dist/adapters/hono/index.mjs +0 -32
  63. package/dist/adapters/next/index.d.mts +0 -26
  64. package/dist/adapters/next/index.d.ts +0 -26
  65. package/dist/adapters/next/index.mjs +0 -29
  66. package/dist/shared/server.3cSam35R.mjs +0 -158
  67. package/dist/shared/server.BZRSVRDu.d.ts +0 -77
  68. package/dist/shared/server.CjB_m7jG.mjs +0 -28
  69. package/dist/shared/server.Q6ZmnTgO.mjs +0 -12
  70. package/dist/shared/server.iM8li30u.d.mts +0 -77
@@ -0,0 +1,42 @@
1
+ import { ErrorMap, EnhanceRouteOptions, MergedErrorMap, AnyContractRouter, AnyContractProcedure } from '@orpc/contract';
2
+ import { a as AnyMiddleware, L as Lazyable, b as AnyRouter, C as Context, c as Lazy, A as AnyProcedure, P as Procedure, M as MergedInitialContext } from './server.CYNGeoCm.js';
3
+
4
+ declare function getRouter<T extends Lazyable<AnyRouter | undefined>>(router: T, path: readonly string[]): T extends Lazy<any> ? Lazy<AnyRouter | undefined> : Lazyable<AnyRouter | undefined>;
5
+ type AccessibleLazyRouter<T extends Lazyable<AnyRouter | undefined>> = T extends Lazy<infer U extends AnyRouter | undefined | Lazy<AnyRouter | undefined>> ? AccessibleLazyRouter<U> : T extends AnyProcedure | undefined ? Lazy<T> : Lazy<T> & {
6
+ [K in keyof T]: T[K] extends Lazyable<AnyRouter> ? AccessibleLazyRouter<T[K]> : never;
7
+ };
8
+ declare function createAccessibleLazyRouter<T extends Lazy<AnyRouter | undefined>>(lazied: T): AccessibleLazyRouter<T>;
9
+ type EnhancedRouter<T extends Lazyable<AnyRouter>, TInitialContext extends Context, TCurrentContext extends Context, TErrorMap extends ErrorMap> = T extends Lazy<infer U extends AnyRouter> ? AccessibleLazyRouter<EnhancedRouter<U, TInitialContext, TCurrentContext, TErrorMap>> : T extends Procedure<infer UInitialContext, infer UCurrentContext, infer UInputSchema, infer UOutputSchema, infer UErrorMap, infer UMeta> ? Procedure<MergedInitialContext<TInitialContext, UInitialContext, TCurrentContext>, UCurrentContext, UInputSchema, UOutputSchema, MergedErrorMap<TErrorMap, UErrorMap>, UMeta> : {
10
+ [K in keyof T]: T[K] extends Lazyable<AnyRouter> ? EnhancedRouter<T[K], TInitialContext, TCurrentContext, TErrorMap> : never;
11
+ };
12
+ interface EnhanceRouterOptions<TErrorMap extends ErrorMap> extends EnhanceRouteOptions {
13
+ middlewares: readonly AnyMiddleware[];
14
+ errorMap: TErrorMap;
15
+ dedupeLeadingMiddlewares: boolean;
16
+ }
17
+ declare function enhanceRouter<T extends Lazyable<AnyRouter>, TInitialContext extends Context, TCurrentContext extends Context, TErrorMap extends ErrorMap>(router: T, options: EnhanceRouterOptions<TErrorMap>): EnhancedRouter<T, TInitialContext, TCurrentContext, TErrorMap>;
18
+ interface TraverseContractProceduresOptions {
19
+ router: AnyContractRouter | AnyRouter;
20
+ path: readonly string[];
21
+ }
22
+ interface TraverseContractProcedureCallbackOptions {
23
+ contract: AnyContractProcedure | AnyProcedure;
24
+ path: readonly string[];
25
+ }
26
+ /**
27
+ * @deprecated Use `TraverseContractProcedureCallbackOptions` instead.
28
+ */
29
+ type ContractProcedureCallbackOptions = TraverseContractProcedureCallbackOptions;
30
+ interface LazyTraverseContractProceduresOptions {
31
+ router: Lazy<AnyRouter>;
32
+ path: readonly string[];
33
+ }
34
+ declare function traverseContractProcedures(options: TraverseContractProceduresOptions, callback: (options: TraverseContractProcedureCallbackOptions) => void, lazyOptions?: LazyTraverseContractProceduresOptions[]): LazyTraverseContractProceduresOptions[];
35
+ declare function resolveContractProcedures(options: TraverseContractProceduresOptions, callback: (options: TraverseContractProcedureCallbackOptions) => void): Promise<void>;
36
+ type UnlaziedRouter<T extends AnyRouter> = T extends AnyProcedure ? T : {
37
+ [K in keyof T]: T[K] extends Lazyable<infer U extends AnyRouter> ? UnlaziedRouter<U> : never;
38
+ };
39
+ declare function unlazyRouter<T extends AnyRouter>(router: T): Promise<UnlaziedRouter<T>>;
40
+
41
+ export { createAccessibleLazyRouter as c, enhanceRouter as e, getRouter as g, resolveContractProcedures as r, traverseContractProcedures as t, unlazyRouter as u };
42
+ export type { AccessibleLazyRouter as A, ContractProcedureCallbackOptions as C, EnhanceRouterOptions as E, LazyTraverseContractProceduresOptions as L, TraverseContractProcedureCallbackOptions as T, UnlaziedRouter as U, EnhancedRouter as a, TraverseContractProceduresOptions as b };
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.1d3318c",
4
+ "version": "0.0.0-next.1e104eb",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {
@@ -19,54 +19,105 @@
19
19
  "import": "./dist/index.mjs",
20
20
  "default": "./dist/index.mjs"
21
21
  },
22
+ "./helpers": {
23
+ "types": "./dist/helpers/index.d.mts",
24
+ "import": "./dist/helpers/index.mjs",
25
+ "default": "./dist/helpers/index.mjs"
26
+ },
22
27
  "./plugins": {
23
28
  "types": "./dist/plugins/index.d.mts",
24
29
  "import": "./dist/plugins/index.mjs",
25
30
  "default": "./dist/plugins/index.mjs"
26
31
  },
32
+ "./hibernation": {
33
+ "types": "./dist/hibernation/index.d.mts",
34
+ "import": "./dist/hibernation/index.mjs",
35
+ "default": "./dist/hibernation/index.mjs"
36
+ },
27
37
  "./standard": {
28
38
  "types": "./dist/adapters/standard/index.d.mts",
29
39
  "import": "./dist/adapters/standard/index.mjs",
30
40
  "default": "./dist/adapters/standard/index.mjs"
31
41
  },
42
+ "./standard-peer": {
43
+ "types": "./dist/adapters/standard-peer/index.d.mts",
44
+ "import": "./dist/adapters/standard-peer/index.mjs",
45
+ "default": "./dist/adapters/standard-peer/index.mjs"
46
+ },
32
47
  "./fetch": {
33
48
  "types": "./dist/adapters/fetch/index.d.mts",
34
49
  "import": "./dist/adapters/fetch/index.mjs",
35
50
  "default": "./dist/adapters/fetch/index.mjs"
36
51
  },
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
52
  "./node": {
48
53
  "types": "./dist/adapters/node/index.d.mts",
49
54
  "import": "./dist/adapters/node/index.mjs",
50
55
  "default": "./dist/adapters/node/index.mjs"
56
+ },
57
+ "./aws-lambda": {
58
+ "types": "./dist/adapters/aws-lambda/index.d.mts",
59
+ "import": "./dist/adapters/aws-lambda/index.mjs",
60
+ "default": "./dist/adapters/aws-lambda/index.mjs"
61
+ },
62
+ "./websocket": {
63
+ "types": "./dist/adapters/websocket/index.d.mts",
64
+ "import": "./dist/adapters/websocket/index.mjs",
65
+ "default": "./dist/adapters/websocket/index.mjs"
66
+ },
67
+ "./crossws": {
68
+ "types": "./dist/adapters/crossws/index.d.mts",
69
+ "import": "./dist/adapters/crossws/index.mjs",
70
+ "default": "./dist/adapters/crossws/index.mjs"
71
+ },
72
+ "./ws": {
73
+ "types": "./dist/adapters/ws/index.d.mts",
74
+ "import": "./dist/adapters/ws/index.mjs",
75
+ "default": "./dist/adapters/ws/index.mjs"
76
+ },
77
+ "./bun-ws": {
78
+ "types": "./dist/adapters/bun-ws/index.d.mts",
79
+ "import": "./dist/adapters/bun-ws/index.mjs",
80
+ "default": "./dist/adapters/bun-ws/index.mjs"
81
+ },
82
+ "./message-port": {
83
+ "types": "./dist/adapters/message-port/index.d.mts",
84
+ "import": "./dist/adapters/message-port/index.mjs",
85
+ "default": "./dist/adapters/message-port/index.mjs"
51
86
  }
52
87
  },
53
88
  "files": [
54
89
  "dist"
55
90
  ],
56
91
  "peerDependencies": {
57
- "hono": ">=4.6.0",
58
- "next": ">=14.0.0"
92
+ "crossws": ">=0.3.4",
93
+ "ws": ">=8.18.1"
94
+ },
95
+ "peerDependenciesMeta": {
96
+ "crossws": {
97
+ "optional": true
98
+ },
99
+ "ws": {
100
+ "optional": true
101
+ }
59
102
  },
60
103
  "dependencies": {
61
- "@orpc/client": "0.0.0-next.1d3318c",
62
- "@orpc/contract": "0.0.0-next.1d3318c",
63
- "@orpc/shared": "0.0.0-next.1d3318c",
64
- "@orpc/standard-server": "0.0.0-next.1d3318c",
65
- "@orpc/standard-server-node": "0.0.0-next.1d3318c",
66
- "@orpc/standard-server-fetch": "0.0.0-next.1d3318c"
104
+ "cookie": "^1.0.2",
105
+ "@orpc/client": "0.0.0-next.1e104eb",
106
+ "@orpc/interop": "0.0.0-next.1e104eb",
107
+ "@orpc/contract": "0.0.0-next.1e104eb",
108
+ "@orpc/shared": "0.0.0-next.1e104eb",
109
+ "@orpc/standard-server": "0.0.0-next.1e104eb",
110
+ "@orpc/standard-server-aws-lambda": "0.0.0-next.1e104eb",
111
+ "@orpc/standard-server-fetch": "0.0.0-next.1e104eb",
112
+ "@orpc/standard-server-peer": "0.0.0-next.1e104eb",
113
+ "@orpc/standard-server-node": "0.0.0-next.1e104eb"
67
114
  },
68
115
  "devDependencies": {
69
- "light-my-request": "^6.5.1"
116
+ "@types/ws": "^8.18.1",
117
+ "crossws": "^0.4.1",
118
+ "next": "^15.5.0",
119
+ "supertest": "^7.1.4",
120
+ "ws": "^8.18.3"
70
121
  },
71
122
  "scripts": {
72
123
  "build": "unbuild",
@@ -1,19 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.mjs';
2
- export { FetchHandleResult, 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.CPteJIPP.mjs';
6
- import { S as StandardHandleOptions } from '../../shared/server.iM8li30u.mjs';
7
- import '@orpc/standard-server-fetch';
8
- import '@orpc/client';
9
- import '@orpc/contract';
10
- import '@orpc/standard-server';
11
-
12
- type CreateMiddlewareOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
13
- context?: Value<T, [Context$1]>;
14
- } : {
15
- context: Value<T, [Context$1]>;
16
- });
17
- declare function createMiddleware<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<CreateMiddlewareOptions<T>>): MiddlewareHandler;
18
-
19
- export { type CreateMiddlewareOptions, FetchHandler, createMiddleware };
@@ -1,19 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.js';
2
- export { FetchHandleResult, 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.CPteJIPP.js';
6
- import { S as StandardHandleOptions } from '../../shared/server.BZRSVRDu.js';
7
- import '@orpc/standard-server-fetch';
8
- import '@orpc/client';
9
- import '@orpc/contract';
10
- import '@orpc/standard-server';
11
-
12
- type CreateMiddlewareOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
13
- context?: Value<T, [Context$1]>;
14
- } : {
15
- context: Value<T, [Context$1]>;
16
- });
17
- declare function createMiddleware<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<CreateMiddlewareOptions<T>>): MiddlewareHandler;
18
-
19
- export { type CreateMiddlewareOptions, FetchHandler, createMiddleware };
@@ -1,32 +0,0 @@
1
- export { R as RPCHandler } from '../../shared/server.CjB_m7jG.mjs';
2
- import { value } from '@orpc/shared';
3
- import '@orpc/client/standard';
4
- import '@orpc/standard-server-fetch';
5
- import '../../shared/server.3cSam35R.mjs';
6
- import '@orpc/client';
7
- import '../../shared/server.Q6ZmnTgO.mjs';
8
- import '../../shared/server.BFBhsdJr.mjs';
9
- import '@orpc/contract';
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,26 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.mjs';
2
- export { FetchHandleResult, 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.CPteJIPP.mjs';
6
- import { S as StandardHandleOptions } from '../../shared/server.iM8li30u.mjs';
7
- import '@orpc/standard-server-fetch';
8
- import '@orpc/client';
9
- import '@orpc/contract';
10
- import '@orpc/standard-server';
11
-
12
- type ServeOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
13
- context?: Value<T, [NextRequest]>;
14
- } : {
15
- context: Value<T, [NextRequest]>;
16
- });
17
- interface ServeResult {
18
- GET(req: NextRequest): Promise<Response>;
19
- POST(req: NextRequest): Promise<Response>;
20
- PUT(req: NextRequest): Promise<Response>;
21
- PATCH(req: NextRequest): Promise<Response>;
22
- DELETE(req: NextRequest): Promise<Response>;
23
- }
24
- declare function serve<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<ServeOptions<T>>): ServeResult;
25
-
26
- export { FetchHandler, type ServeOptions, type ServeResult, serve };
@@ -1,26 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.js';
2
- export { FetchHandleResult, 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.CPteJIPP.js';
6
- import { S as StandardHandleOptions } from '../../shared/server.BZRSVRDu.js';
7
- import '@orpc/standard-server-fetch';
8
- import '@orpc/client';
9
- import '@orpc/contract';
10
- import '@orpc/standard-server';
11
-
12
- type ServeOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
13
- context?: Value<T, [NextRequest]>;
14
- } : {
15
- context: Value<T, [NextRequest]>;
16
- });
17
- interface ServeResult {
18
- GET(req: NextRequest): Promise<Response>;
19
- POST(req: NextRequest): Promise<Response>;
20
- PUT(req: NextRequest): Promise<Response>;
21
- PATCH(req: NextRequest): Promise<Response>;
22
- DELETE(req: NextRequest): Promise<Response>;
23
- }
24
- declare function serve<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<ServeOptions<T>>): ServeResult;
25
-
26
- export { FetchHandler, type ServeOptions, type ServeResult, serve };
@@ -1,29 +0,0 @@
1
- export { R as RPCHandler } from '../../shared/server.CjB_m7jG.mjs';
2
- import { value } from '@orpc/shared';
3
- import '@orpc/client/standard';
4
- import '@orpc/standard-server-fetch';
5
- import '../../shared/server.3cSam35R.mjs';
6
- import '@orpc/client';
7
- import '../../shared/server.Q6ZmnTgO.mjs';
8
- import '../../shared/server.BFBhsdJr.mjs';
9
- import '@orpc/contract';
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,158 +0,0 @@
1
- import { ORPCError, toORPCError } from '@orpc/client';
2
- import { intercept, trim, parseEmptyableJSON } from '@orpc/shared';
3
- import { C as CompositePlugin } from './server.Q6ZmnTgO.mjs';
4
- import { c as createProcedureClient, t as traverseContractProcedures, a as toHttpPath, i as isProcedure, u as unlazy, g as getRouter, b as createContractedProcedure } from './server.BFBhsdJr.mjs';
5
-
6
- class StandardHandler {
7
- constructor(router, matcher, codec, options) {
8
- this.matcher = matcher;
9
- this.codec = codec;
10
- this.options = options;
11
- this.plugin = new CompositePlugin(options.plugins);
12
- this.plugin.init(this.options);
13
- this.matcher.init(router);
14
- }
15
- plugin;
16
- handle(request, ...[options]) {
17
- return intercept(
18
- this.options.rootInterceptors ?? [],
19
- {
20
- request,
21
- ...options,
22
- context: options?.context ?? {}
23
- // context is optional only when all fields are optional so we can safely force it to have a context
24
- },
25
- async (interceptorOptions) => {
26
- let isDecoding = false;
27
- try {
28
- return await intercept(
29
- this.options.interceptors ?? [],
30
- interceptorOptions,
31
- async (interceptorOptions2) => {
32
- const method = interceptorOptions2.request.method;
33
- const url = interceptorOptions2.request.url;
34
- const pathname = `/${trim(url.pathname.replace(interceptorOptions2.prefix ?? "", ""), "/")}`;
35
- const match = await this.matcher.match(method, pathname);
36
- if (!match) {
37
- return { matched: false, response: void 0 };
38
- }
39
- const client = createProcedureClient(match.procedure, {
40
- context: interceptorOptions2.context,
41
- path: match.path,
42
- interceptors: this.options.clientInterceptors
43
- });
44
- isDecoding = true;
45
- const input = await this.codec.decode(request, match.params, match.procedure);
46
- isDecoding = false;
47
- const lastEventId = Array.isArray(request.headers["last-event-id"]) ? request.headers["last-event-id"].at(-1) : request.headers["last-event-id"];
48
- const output = await client(input, { signal: request.signal, lastEventId });
49
- const response = this.codec.encode(output, match.procedure);
50
- return {
51
- matched: true,
52
- response
53
- };
54
- }
55
- );
56
- } catch (e) {
57
- const error = isDecoding ? new ORPCError("BAD_REQUEST", {
58
- message: `Malformed request. Ensure the request body is properly formatted and the 'Content-Type' header is set correctly.`,
59
- cause: e
60
- }) : toORPCError(e);
61
- const response = this.codec.encodeError(error);
62
- return {
63
- matched: true,
64
- response
65
- };
66
- }
67
- }
68
- );
69
- }
70
- }
71
-
72
- class RPCCodec {
73
- constructor(serializer) {
74
- this.serializer = serializer;
75
- }
76
- async decode(request, _params, _procedure) {
77
- const serialized = request.method === "GET" ? parseEmptyableJSON(request.url.searchParams.getAll("data").at(-1)) : await request.body();
78
- return this.serializer.deserialize(serialized);
79
- }
80
- encode(output, _procedure) {
81
- return {
82
- status: 200,
83
- headers: {},
84
- body: this.serializer.serialize(output)
85
- };
86
- }
87
- encodeError(error) {
88
- return {
89
- status: error.status,
90
- headers: {},
91
- body: this.serializer.serialize(error.toJSON())
92
- };
93
- }
94
- }
95
-
96
- class RPCMatcher {
97
- tree = {};
98
- pendingRouters = [];
99
- init(router, path = []) {
100
- const laziedOptions = traverseContractProcedures({ router, path }, ({ path: path2, contract }) => {
101
- const httpPath = toHttpPath(path2);
102
- if (isProcedure(contract)) {
103
- this.tree[httpPath] = {
104
- path: path2,
105
- contract,
106
- procedure: contract,
107
- // this mean dev not used contract-first so we can used contract as procedure directly
108
- router
109
- };
110
- } else {
111
- this.tree[httpPath] = {
112
- path: path2,
113
- contract,
114
- procedure: void 0,
115
- router
116
- };
117
- }
118
- });
119
- this.pendingRouters.push(...laziedOptions.map((option) => ({
120
- ...option,
121
- httpPathPrefix: toHttpPath(option.path)
122
- })));
123
- }
124
- async match(_method, pathname) {
125
- if (this.pendingRouters.length) {
126
- const newPendingRouters = [];
127
- for (const pendingRouter of this.pendingRouters) {
128
- if (pathname.startsWith(pendingRouter.httpPathPrefix)) {
129
- const { default: router } = await unlazy(pendingRouter.router);
130
- this.init(router, pendingRouter.path);
131
- } else {
132
- newPendingRouters.push(pendingRouter);
133
- }
134
- }
135
- this.pendingRouters = newPendingRouters;
136
- }
137
- const match = this.tree[pathname];
138
- if (!match) {
139
- return void 0;
140
- }
141
- if (!match.procedure) {
142
- const { default: maybeProcedure } = await unlazy(getRouter(match.router, match.path));
143
- if (!isProcedure(maybeProcedure)) {
144
- throw new Error(`
145
- [Contract-First] Missing or invalid implementation for procedure at path: ${toHttpPath(match.path)}.
146
- Ensure that the procedure is correctly defined and matches the expected contract.
147
- `);
148
- }
149
- match.procedure = createContractedProcedure(maybeProcedure, match.contract);
150
- }
151
- return {
152
- path: match.path,
153
- procedure: match.procedure
154
- };
155
- }
156
- }
157
-
158
- export { RPCCodec as R, StandardHandler as S, RPCMatcher as a };
@@ -1,77 +0,0 @@
1
- import { HTTPPath, AnySchema, Meta, InferSchemaOutput, ErrorFromErrorMap } from '@orpc/contract';
2
- import { Interceptor, MaybeOptionalOptions } from '@orpc/shared';
3
- import { StandardResponse, StandardLazyRequest } from '@orpc/standard-server';
4
- import { a as AnyRouter, A as AnyProcedure, C as Context, P as ProcedureClientInterceptorOptions, R as Router } from './server.CPteJIPP.js';
5
- import { ORPCError } from '@orpc/client';
6
-
7
- type StandardParams = Record<string, string>;
8
- type StandardMatchResult = {
9
- path: readonly string[];
10
- procedure: AnyProcedure;
11
- params?: StandardParams;
12
- } | undefined;
13
- interface StandardMatcher {
14
- init(router: AnyRouter): void;
15
- match(method: string, pathname: HTTPPath): Promise<StandardMatchResult>;
16
- }
17
- interface StandardCodec {
18
- encode(output: unknown, procedure: AnyProcedure): StandardResponse;
19
- encodeError(error: ORPCError<any, any>): StandardResponse;
20
- decode(request: StandardLazyRequest, params: StandardParams | undefined, procedure: AnyProcedure): Promise<unknown>;
21
- }
22
-
23
- type StandardHandleOptions<T extends Context> = {
24
- prefix?: HTTPPath;
25
- } & (Record<never, never> extends T ? {
26
- context?: T;
27
- } : {
28
- context: T;
29
- });
30
- type WellStandardHandleOptions<T extends Context> = StandardHandleOptions<T> & {
31
- context: T;
32
- };
33
- type StandardHandleResult = {
34
- matched: true;
35
- response: StandardResponse;
36
- } | {
37
- matched: false;
38
- response: undefined;
39
- };
40
- type StandardHandlerInterceptorOptions<TContext extends Context> = WellStandardHandleOptions<TContext> & {
41
- request: StandardLazyRequest;
42
- };
43
- interface StandardHandlerOptions<TContext extends Context> {
44
- plugins?: HandlerPlugin<TContext>[];
45
- /**
46
- * Interceptors at the request level, helpful when you want catch errors
47
- */
48
- interceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, unknown>[];
49
- /**
50
- * Interceptors at the root level, helpful when you want override the request/response
51
- */
52
- rootInterceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, unknown>[];
53
- /**
54
- *
55
- * Interceptors for procedure client.
56
- */
57
- clientInterceptors?: Interceptor<ProcedureClientInterceptorOptions<TContext, AnySchema, Record<never, never>, Meta>, InferSchemaOutput<AnySchema>, ErrorFromErrorMap<Record<never, never>>>[];
58
- }
59
- declare class StandardHandler<T extends Context> {
60
- private readonly matcher;
61
- private readonly codec;
62
- private readonly options;
63
- private readonly plugin;
64
- constructor(router: Router<any, T>, matcher: StandardMatcher, codec: StandardCodec, options: NoInfer<StandardHandlerOptions<T>>);
65
- handle(request: StandardLazyRequest, ...[options]: MaybeOptionalOptions<StandardHandleOptions<T>>): Promise<StandardHandleResult>;
66
- }
67
-
68
- interface HandlerPlugin<TContext extends Context> {
69
- init?(options: StandardHandlerOptions<TContext>): void;
70
- }
71
- declare class CompositePlugin<TContext extends Context> implements HandlerPlugin<TContext> {
72
- private readonly plugins;
73
- constructor(plugins?: HandlerPlugin<TContext>[]);
74
- init(options: StandardHandlerOptions<TContext>): void;
75
- }
76
-
77
- export { CompositePlugin as C, type HandlerPlugin as H, type StandardHandleOptions as S, type WellStandardHandleOptions as W, type StandardHandlerInterceptorOptions as a, type StandardHandlerOptions as b, type StandardCodec as c, type StandardParams as d, type StandardMatcher as e, type StandardMatchResult as f, type StandardHandleResult as g, StandardHandler as h };
@@ -1,28 +0,0 @@
1
- import { RPCSerializer } from '@orpc/client/standard';
2
- import { toStandardLazyRequest, toFetchResponse } from '@orpc/standard-server-fetch';
3
- import { S as StandardHandler, a as RPCMatcher, R as RPCCodec } from './server.3cSam35R.mjs';
4
-
5
- class RPCHandler {
6
- standardHandler;
7
- constructor(router, options = {}) {
8
- const serializer = new RPCSerializer();
9
- const matcher = new RPCMatcher();
10
- const codec = new RPCCodec(serializer);
11
- this.standardHandler = new StandardHandler(router, matcher, codec, options);
12
- }
13
- async handle(request, ...[
14
- options = {}
15
- ]) {
16
- const standardRequest = toStandardLazyRequest(request);
17
- const result = await this.standardHandler.handle(standardRequest, options);
18
- if (!result.matched) {
19
- return result;
20
- }
21
- return {
22
- matched: true,
23
- response: toFetchResponse(result.response, options)
24
- };
25
- }
26
- }
27
-
28
- export { RPCHandler as R };
@@ -1,12 +0,0 @@
1
- class CompositePlugin {
2
- constructor(plugins = []) {
3
- this.plugins = plugins;
4
- }
5
- init(options) {
6
- for (const plugin of this.plugins) {
7
- plugin.init?.(options);
8
- }
9
- }
10
- }
11
-
12
- export { CompositePlugin as C };