@orpc/server 0.0.0-next.df024bb → 0.0.0-next.df486d6

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 (44) hide show
  1. package/README.md +14 -1
  2. package/dist/adapters/fetch/index.d.mts +43 -11
  3. package/dist/adapters/fetch/index.d.ts +43 -11
  4. package/dist/adapters/fetch/index.mjs +103 -7
  5. package/dist/adapters/node/index.d.mts +45 -22
  6. package/dist/adapters/node/index.d.ts +45 -22
  7. package/dist/adapters/node/index.mjs +81 -21
  8. package/dist/adapters/standard/index.d.mts +12 -15
  9. package/dist/adapters/standard/index.d.ts +12 -15
  10. package/dist/adapters/standard/index.mjs +6 -5
  11. package/dist/index.d.mts +161 -124
  12. package/dist/index.d.ts +161 -124
  13. package/dist/index.mjs +78 -48
  14. package/dist/plugins/index.d.mts +112 -18
  15. package/dist/plugins/index.d.ts +112 -18
  16. package/dist/plugins/index.mjs +157 -8
  17. package/dist/shared/server.B1oIHH_j.d.mts +74 -0
  18. package/dist/shared/server.BVHsfJ99.d.mts +144 -0
  19. package/dist/shared/server.BVHsfJ99.d.ts +144 -0
  20. package/dist/shared/server.BVwwTHyO.mjs +9 -0
  21. package/dist/shared/server.BW-nUGgA.mjs +36 -0
  22. package/dist/shared/server.BuLPHTX1.d.mts +18 -0
  23. package/dist/shared/{server.V6zT5iYQ.mjs → server.C37gDhSZ.mjs} +158 -173
  24. package/dist/shared/server.CaWivVk3.d.ts +74 -0
  25. package/dist/shared/server.DFuJLDuo.mjs +190 -0
  26. package/dist/shared/server.DMhSfHk1.d.ts +10 -0
  27. package/dist/shared/server.D_vpYits.d.ts +18 -0
  28. package/dist/shared/server.Dwnm6cSk.d.mts +10 -0
  29. package/package.json +8 -22
  30. package/dist/adapters/hono/index.d.mts +0 -20
  31. package/dist/adapters/hono/index.d.ts +0 -20
  32. package/dist/adapters/hono/index.mjs +0 -32
  33. package/dist/adapters/next/index.d.mts +0 -27
  34. package/dist/adapters/next/index.d.ts +0 -27
  35. package/dist/adapters/next/index.mjs +0 -29
  36. package/dist/shared/server.BBGuTxHE.mjs +0 -163
  37. package/dist/shared/server.BMaJxq9W.d.mts +0 -9
  38. package/dist/shared/server.BT-fqIEm.d.mts +0 -77
  39. package/dist/shared/server.DpdgHO1j.d.ts +0 -9
  40. package/dist/shared/server.KwueCzFr.mjs +0 -26
  41. package/dist/shared/server.Q6ZmnTgO.mjs +0 -12
  42. package/dist/shared/server.ptXwNGQr.d.mts +0 -158
  43. package/dist/shared/server.ptXwNGQr.d.ts +0 -158
  44. package/dist/shared/server.xL87pHsk.d.ts +0 -77
@@ -0,0 +1,190 @@
1
+ import { toHttpPath, StandardRPCJsonSerializer, StandardRPCSerializer } from '@orpc/client/standard';
2
+ import { toArray, intercept, parseEmptyableJSON } from '@orpc/shared';
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
+ }
19
+
20
+ class StandardHandler {
21
+ constructor(router, matcher, codec, options) {
22
+ this.matcher = matcher;
23
+ this.codec = codec;
24
+ const plugins = new CompositeStandardHandlerPlugin(options.plugins);
25
+ plugins.init(options);
26
+ this.interceptors = toArray(options.interceptors);
27
+ this.clientInterceptors = toArray(options.clientInterceptors);
28
+ this.rootInterceptors = toArray(options.rootInterceptors);
29
+ this.matcher.init(router);
30
+ }
31
+ interceptors;
32
+ clientInterceptors;
33
+ rootInterceptors;
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
+ }
39
+ return intercept(
40
+ this.rootInterceptors,
41
+ { ...options, request, prefix },
42
+ async (interceptorOptions) => {
43
+ let isDecoding = false;
44
+ try {
45
+ return await intercept(
46
+ this.interceptors,
47
+ interceptorOptions,
48
+ async ({ request: request2, context, prefix: prefix2 }) => {
49
+ const method = request2.method;
50
+ const url = request2.url;
51
+ const pathname = prefix2 ? url.pathname.replace(prefix2, "") : url.pathname;
52
+ const match = await this.matcher.match(method, `/${pathname.replace(/^\/|\/$/g, "")}`);
53
+ if (!match) {
54
+ return { matched: false, response: void 0 };
55
+ }
56
+ const client = createProcedureClient(match.procedure, {
57
+ context,
58
+ path: match.path,
59
+ interceptors: this.clientInterceptors
60
+ });
61
+ isDecoding = true;
62
+ const input = await this.codec.decode(request2, match.params, match.procedure);
63
+ isDecoding = false;
64
+ const lastEventId = Array.isArray(request2.headers["last-event-id"]) ? request2.headers["last-event-id"].at(-1) : request2.headers["last-event-id"];
65
+ const output = await client(input, { signal: request2.signal, lastEventId });
66
+ const response = this.codec.encode(output, match.procedure);
67
+ return {
68
+ matched: true,
69
+ response
70
+ };
71
+ }
72
+ );
73
+ } catch (e) {
74
+ const error = isDecoding && !(e instanceof ORPCError) ? new ORPCError("BAD_REQUEST", {
75
+ message: `Malformed request. Ensure the request body is properly formatted and the 'Content-Type' header is set correctly.`,
76
+ cause: e
77
+ }) : toORPCError(e);
78
+ const response = this.codec.encodeError(error);
79
+ return {
80
+ matched: true,
81
+ response
82
+ };
83
+ }
84
+ }
85
+ );
86
+ }
87
+ }
88
+
89
+ class StandardRPCCodec {
90
+ constructor(serializer) {
91
+ this.serializer = serializer;
92
+ }
93
+ async decode(request, _params, _procedure) {
94
+ const serialized = request.method === "GET" ? parseEmptyableJSON(request.url.searchParams.getAll("data").at(-1)) : await request.body();
95
+ return this.serializer.deserialize(serialized);
96
+ }
97
+ encode(output, _procedure) {
98
+ return {
99
+ status: 200,
100
+ headers: {},
101
+ body: this.serializer.serialize(output)
102
+ };
103
+ }
104
+ encodeError(error) {
105
+ return {
106
+ status: error.status,
107
+ headers: {},
108
+ body: this.serializer.serialize(error.toJSON())
109
+ };
110
+ }
111
+ }
112
+
113
+ class StandardRPCMatcher {
114
+ tree = {};
115
+ pendingRouters = [];
116
+ init(router, path = []) {
117
+ const laziedOptions = traverseContractProcedures({ router, path }, ({ path: path2, contract }) => {
118
+ const httpPath = toHttpPath(path2);
119
+ if (isProcedure(contract)) {
120
+ this.tree[httpPath] = {
121
+ path: path2,
122
+ contract,
123
+ procedure: contract,
124
+ // this mean dev not used contract-first so we can used contract as procedure directly
125
+ router
126
+ };
127
+ } else {
128
+ this.tree[httpPath] = {
129
+ path: path2,
130
+ contract,
131
+ procedure: void 0,
132
+ router
133
+ };
134
+ }
135
+ });
136
+ this.pendingRouters.push(...laziedOptions.map((option) => ({
137
+ ...option,
138
+ httpPathPrefix: toHttpPath(option.path)
139
+ })));
140
+ }
141
+ async match(_method, pathname) {
142
+ if (this.pendingRouters.length) {
143
+ const newPendingRouters = [];
144
+ for (const pendingRouter of this.pendingRouters) {
145
+ if (pathname.startsWith(pendingRouter.httpPathPrefix)) {
146
+ const { default: router } = await unlazy(pendingRouter.router);
147
+ this.init(router, pendingRouter.path);
148
+ } else {
149
+ newPendingRouters.push(pendingRouter);
150
+ }
151
+ }
152
+ this.pendingRouters = newPendingRouters;
153
+ }
154
+ const match = this.tree[pathname];
155
+ if (!match) {
156
+ return void 0;
157
+ }
158
+ if (!match.procedure) {
159
+ const { default: maybeProcedure } = await unlazy(getRouter(match.router, match.path));
160
+ if (!isProcedure(maybeProcedure)) {
161
+ throw new Error(`
162
+ [Contract-First] Missing or invalid implementation for procedure at path: ${toHttpPath(match.path)}.
163
+ Ensure that the procedure is correctly defined and matches the expected contract.
164
+ `);
165
+ }
166
+ match.procedure = createContractedProcedure(maybeProcedure, match.contract);
167
+ }
168
+ return {
169
+ path: match.path,
170
+ procedure: match.procedure
171
+ };
172
+ }
173
+ }
174
+
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 };
@@ -0,0 +1,10 @@
1
+ import { C as Context } from './server.BVHsfJ99.js';
2
+ import { g as StandardHandleOptions } from './server.CaWivVk3.js';
3
+
4
+ type FriendlyStandardHandleOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
5
+ context?: T;
6
+ } : {
7
+ context: T;
8
+ });
9
+
10
+ export type { FriendlyStandardHandleOptions as F };
@@ -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 };
@@ -0,0 +1,10 @@
1
+ import { C as Context } from './server.BVHsfJ99.mjs';
2
+ import { g as StandardHandleOptions } from './server.B1oIHH_j.mjs';
3
+
4
+ type FriendlyStandardHandleOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
5
+ context?: T;
6
+ } : {
7
+ context: T;
8
+ });
9
+
10
+ export type { FriendlyStandardHandleOptions as F };
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.df024bb",
4
+ "version": "0.0.0-next.df486d6",
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.df024bb",
62
- "@orpc/shared": "0.0.0-next.df024bb",
63
- "@orpc/standard-server": "0.0.0-next.df024bb",
64
- "@orpc/contract": "0.0.0-next.df024bb",
65
- "@orpc/standard-server-fetch": "0.0.0-next.df024bb",
66
- "@orpc/standard-server-node": "0.0.0-next.df024bb"
47
+ "@orpc/client": "0.0.0-next.df486d6",
48
+ "@orpc/standard-server": "0.0.0-next.df486d6",
49
+ "@orpc/shared": "0.0.0-next.df486d6",
50
+ "@orpc/standard-server-fetch": "0.0.0-next.df486d6",
51
+ "@orpc/standard-server-node": "0.0.0-next.df486d6",
52
+ "@orpc/contract": "0.0.0-next.df486d6"
67
53
  },
68
54
  "devDependencies": {
69
- "light-my-request": "^6.5.1"
55
+ "supertest": "^7.1.0"
70
56
  },
71
57
  "scripts": {
72
58
  "build": "unbuild",
@@ -1,20 +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.ptXwNGQr.mjs';
6
- import { S as StandardHandleOptions } from '../../shared/server.BT-fqIEm.mjs';
7
- import '@orpc/standard-server-fetch';
8
- import '../../shared/server.BMaJxq9W.mjs';
9
- import '@orpc/client';
10
- import '@orpc/contract';
11
- import '@orpc/standard-server';
12
-
13
- type CreateMiddlewareOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
14
- context?: Value<T, [Context$1]>;
15
- } : {
16
- context: Value<T, [Context$1]>;
17
- });
18
- declare function createMiddleware<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<CreateMiddlewareOptions<T>>): MiddlewareHandler;
19
-
20
- export { type CreateMiddlewareOptions, FetchHandler, createMiddleware };
@@ -1,20 +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.ptXwNGQr.js';
6
- import { S as StandardHandleOptions } from '../../shared/server.xL87pHsk.js';
7
- import '@orpc/standard-server-fetch';
8
- import '../../shared/server.DpdgHO1j.js';
9
- import '@orpc/client';
10
- import '@orpc/contract';
11
- import '@orpc/standard-server';
12
-
13
- type CreateMiddlewareOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
14
- context?: Value<T, [Context$1]>;
15
- } : {
16
- context: Value<T, [Context$1]>;
17
- });
18
- declare function createMiddleware<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<CreateMiddlewareOptions<T>>): MiddlewareHandler;
19
-
20
- export { type CreateMiddlewareOptions, FetchHandler, createMiddleware };
@@ -1,32 +0,0 @@
1
- export { R as RPCHandler } from '../../shared/server.KwueCzFr.mjs';
2
- import { value } from '@orpc/shared';
3
- import '@orpc/standard-server-fetch';
4
- import '../../shared/server.BBGuTxHE.mjs';
5
- import '@orpc/client';
6
- import '../../shared/server.Q6ZmnTgO.mjs';
7
- import '../../shared/server.V6zT5iYQ.mjs';
8
- import '@orpc/contract';
9
- import '@orpc/client/standard';
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,27 +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.ptXwNGQr.mjs';
6
- import { S as StandardHandleOptions } from '../../shared/server.BT-fqIEm.mjs';
7
- import '@orpc/standard-server-fetch';
8
- import '../../shared/server.BMaJxq9W.mjs';
9
- import '@orpc/client';
10
- import '@orpc/contract';
11
- import '@orpc/standard-server';
12
-
13
- type ServeOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
14
- context?: Value<T, [NextRequest]>;
15
- } : {
16
- context: Value<T, [NextRequest]>;
17
- });
18
- interface ServeResult {
19
- GET(req: NextRequest): Promise<Response>;
20
- POST(req: NextRequest): Promise<Response>;
21
- PUT(req: NextRequest): Promise<Response>;
22
- PATCH(req: NextRequest): Promise<Response>;
23
- DELETE(req: NextRequest): Promise<Response>;
24
- }
25
- declare function serve<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<ServeOptions<T>>): ServeResult;
26
-
27
- export { FetchHandler, type ServeOptions, type ServeResult, serve };
@@ -1,27 +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.ptXwNGQr.js';
6
- import { S as StandardHandleOptions } from '../../shared/server.xL87pHsk.js';
7
- import '@orpc/standard-server-fetch';
8
- import '../../shared/server.DpdgHO1j.js';
9
- import '@orpc/client';
10
- import '@orpc/contract';
11
- import '@orpc/standard-server';
12
-
13
- type ServeOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
14
- context?: Value<T, [NextRequest]>;
15
- } : {
16
- context: Value<T, [NextRequest]>;
17
- });
18
- interface ServeResult {
19
- GET(req: NextRequest): Promise<Response>;
20
- POST(req: NextRequest): Promise<Response>;
21
- PUT(req: NextRequest): Promise<Response>;
22
- PATCH(req: NextRequest): Promise<Response>;
23
- DELETE(req: NextRequest): Promise<Response>;
24
- }
25
- declare function serve<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<ServeOptions<T>>): ServeResult;
26
-
27
- export { FetchHandler, type ServeOptions, type ServeResult, serve };
@@ -1,29 +0,0 @@
1
- export { R as RPCHandler } from '../../shared/server.KwueCzFr.mjs';
2
- import { value } from '@orpc/shared';
3
- import '@orpc/standard-server-fetch';
4
- import '../../shared/server.BBGuTxHE.mjs';
5
- import '@orpc/client';
6
- import '../../shared/server.Q6ZmnTgO.mjs';
7
- import '../../shared/server.V6zT5iYQ.mjs';
8
- import '@orpc/contract';
9
- import '@orpc/client/standard';
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,163 +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, e as eachContractProcedure, a as convertPathToHttpPath, i as isProcedure, u as unlazy, g as getRouterChild, b as createContractedProcedure } from './server.V6zT5iYQ.mjs';
5
- import { RPCSerializer } from '@orpc/client/standard';
6
-
7
- class StandardHandler {
8
- constructor(router, matcher, codec, options = {}) {
9
- this.matcher = matcher;
10
- this.codec = codec;
11
- this.options = options;
12
- this.plugin = new CompositePlugin(options.plugins);
13
- this.plugin.init(this.options);
14
- this.matcher.init(router);
15
- }
16
- plugin;
17
- handle(request, ...[options]) {
18
- return intercept(
19
- this.options.rootInterceptors ?? [],
20
- {
21
- request,
22
- ...options,
23
- context: options?.context ?? {}
24
- // context is optional only when all fields are optional so we can safely force it to have a context
25
- },
26
- async (interceptorOptions) => {
27
- let isDecoding = false;
28
- try {
29
- return await intercept(
30
- this.options.interceptors ?? [],
31
- interceptorOptions,
32
- async (interceptorOptions2) => {
33
- const method = interceptorOptions2.request.method;
34
- const url = interceptorOptions2.request.url;
35
- const pathname = `/${trim(url.pathname.replace(interceptorOptions2.prefix ?? "", ""), "/")}`;
36
- const match = await this.matcher.match(method, pathname);
37
- if (!match) {
38
- return { matched: false, response: void 0 };
39
- }
40
- const client = createProcedureClient(match.procedure, {
41
- context: interceptorOptions2.context,
42
- path: match.path,
43
- interceptors: this.options.clientInterceptors
44
- });
45
- isDecoding = true;
46
- const input = await this.codec.decode(request, match.params, match.procedure);
47
- isDecoding = false;
48
- const lastEventId = Array.isArray(request.headers["last-event-id"]) ? request.headers["last-event-id"].at(-1) : request.headers["last-event-id"];
49
- const output = await client(input, { signal: request.signal, lastEventId });
50
- const response = this.codec.encode(output, match.procedure);
51
- return {
52
- matched: true,
53
- response
54
- };
55
- }
56
- );
57
- } catch (e) {
58
- const error = isDecoding ? new ORPCError("BAD_REQUEST", {
59
- message: `Malformed request. Ensure the request body is properly formatted and the 'Content-Type' header is set correctly.`,
60
- cause: e
61
- }) : toORPCError(e);
62
- const response = this.codec.encodeError(error);
63
- return {
64
- matched: true,
65
- response
66
- };
67
- }
68
- }
69
- );
70
- }
71
- }
72
-
73
- class RPCCodec {
74
- serializer;
75
- constructor(options = {}) {
76
- this.serializer = options.serializer ?? new RPCSerializer();
77
- }
78
- async decode(request, _params, _procedure) {
79
- const serialized = request.method === "GET" ? parseEmptyableJSON(request.url.searchParams.getAll("data").at(-1)) : await request.body();
80
- return this.serializer.deserialize(serialized);
81
- }
82
- encode(output, _procedure) {
83
- return {
84
- status: 200,
85
- headers: {},
86
- body: this.serializer.serialize(output)
87
- };
88
- }
89
- encodeError(error) {
90
- return {
91
- status: error.status,
92
- headers: {},
93
- body: this.serializer.serialize(error.toJSON())
94
- };
95
- }
96
- }
97
-
98
- class RPCMatcher {
99
- tree = {};
100
- pendingRouters = [];
101
- init(router, path = []) {
102
- const laziedOptions = eachContractProcedure({
103
- router,
104
- path
105
- }, ({ path: path2, contract }) => {
106
- const httpPath = convertPathToHttpPath(path2);
107
- if (isProcedure(contract)) {
108
- this.tree[httpPath] = {
109
- path: path2,
110
- contract,
111
- procedure: contract,
112
- // this mean dev not used contract-first so we can used contract as procedure directly
113
- router
114
- };
115
- } else {
116
- this.tree[httpPath] = {
117
- path: path2,
118
- contract,
119
- procedure: void 0,
120
- router
121
- };
122
- }
123
- });
124
- this.pendingRouters.push(...laziedOptions.map((option) => ({
125
- ...option,
126
- httpPathPrefix: convertPathToHttpPath(option.path)
127
- })));
128
- }
129
- async match(_method, pathname) {
130
- if (this.pendingRouters.length) {
131
- const newPendingRouters = [];
132
- for (const pendingRouter of this.pendingRouters) {
133
- if (pathname.startsWith(pendingRouter.httpPathPrefix)) {
134
- const { default: router } = await unlazy(pendingRouter.lazied);
135
- this.init(router, pendingRouter.path);
136
- } else {
137
- newPendingRouters.push(pendingRouter);
138
- }
139
- }
140
- this.pendingRouters = newPendingRouters;
141
- }
142
- const match = this.tree[pathname];
143
- if (!match) {
144
- return void 0;
145
- }
146
- if (!match.procedure) {
147
- const { default: maybeProcedure } = await unlazy(getRouterChild(match.router, ...match.path));
148
- if (!isProcedure(maybeProcedure)) {
149
- throw new Error(`
150
- [Contract-First] Missing or invalid implementation for procedure at path: ${convertPathToHttpPath(match.path)}.
151
- Ensure that the procedure is correctly defined and matches the expected contract.
152
- `);
153
- }
154
- match.procedure = createContractedProcedure(match.contract, maybeProcedure);
155
- }
156
- return {
157
- path: match.path,
158
- procedure: match.procedure
159
- };
160
- }
161
- }
162
-
163
- export { RPCCodec as R, StandardHandler as S, RPCMatcher as a };
@@ -1,9 +0,0 @@
1
- import { C as Context } from './server.ptXwNGQr.mjs';
2
- import { a as StandardHandlerOptions, b as StandardMatcher, c as StandardCodec } from './server.BT-fqIEm.mjs';
3
-
4
- interface RPCHandlerOptions<T extends Context> extends StandardHandlerOptions<T> {
5
- matcher?: StandardMatcher;
6
- codec?: StandardCodec;
7
- }
8
-
9
- export type { RPCHandlerOptions as R };