@orpc/server 0.0.0-next.a05fbfd → 0.0.0-next.a0ab4bf
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/README.md +29 -21
- package/dist/adapters/aws-lambda/index.d.mts +46 -0
- package/dist/adapters/aws-lambda/index.d.ts +46 -0
- package/dist/adapters/aws-lambda/index.mjs +41 -0
- package/dist/adapters/bun-ws/index.d.mts +36 -0
- package/dist/adapters/bun-ws/index.d.ts +36 -0
- package/dist/adapters/bun-ws/index.mjs +47 -0
- package/dist/adapters/crossws/index.d.mts +33 -0
- package/dist/adapters/crossws/index.d.ts +33 -0
- package/dist/adapters/crossws/index.mjs +47 -0
- package/dist/adapters/fetch/index.d.mts +63 -11
- package/dist/adapters/fetch/index.d.ts +63 -11
- package/dist/adapters/fetch/index.mjs +108 -7
- package/dist/adapters/message-port/index.d.mts +31 -0
- package/dist/adapters/message-port/index.d.ts +31 -0
- package/dist/adapters/message-port/index.mjs +41 -0
- package/dist/adapters/node/index.d.mts +65 -22
- package/dist/adapters/node/index.d.ts +65 -22
- package/dist/adapters/node/index.mjs +87 -20
- package/dist/adapters/standard/index.d.mts +13 -21
- package/dist/adapters/standard/index.d.ts +13 -21
- package/dist/adapters/standard/index.mjs +5 -4
- package/dist/adapters/standard-peer/index.d.mts +14 -0
- package/dist/adapters/standard-peer/index.d.ts +14 -0
- package/dist/adapters/standard-peer/index.mjs +7 -0
- package/dist/adapters/websocket/index.d.mts +54 -0
- package/dist/adapters/websocket/index.d.ts +54 -0
- package/dist/adapters/websocket/index.mjs +69 -0
- package/dist/adapters/ws/index.d.mts +31 -0
- package/dist/adapters/ws/index.d.ts +31 -0
- package/dist/adapters/ws/index.mjs +39 -0
- package/dist/hibernation/index.d.mts +44 -0
- package/dist/hibernation/index.d.ts +44 -0
- package/dist/hibernation/index.mjs +65 -0
- package/dist/index.d.mts +679 -129
- package/dist/index.d.ts +679 -129
- package/dist/index.mjs +207 -52
- package/dist/plugins/index.d.mts +144 -19
- package/dist/plugins/index.d.ts +144 -19
- package/dist/plugins/index.mjs +173 -17
- package/dist/shared/server.Aqc4pYFD.mjs +194 -0
- package/dist/shared/server.BW-nUGgA.mjs +36 -0
- package/dist/shared/server.BX8Iro5z.d.ts +74 -0
- package/dist/shared/server.Bi2_bIHo.d.ts +42 -0
- package/dist/shared/server.C-F_fMXW.d.mts +32 -0
- package/dist/shared/server.C6Q5sqYw.mjs +20 -0
- package/dist/shared/server.CPC5w4d2.d.ts +32 -0
- package/dist/shared/server.CRejaM08.d.mts +192 -0
- package/dist/shared/server.CRejaM08.d.ts +192 -0
- package/dist/shared/{server.V6zT5iYQ.mjs → server.DLJzqnSX.mjs} +162 -173
- package/dist/shared/server.DZ5BIITo.mjs +9 -0
- package/dist/shared/server.De2J-WNx.d.mts +74 -0
- package/dist/shared/server.DrG30u7a.d.mts +42 -0
- package/dist/shared/server.VjZAmjFs.d.mts +12 -0
- package/dist/shared/server.mGrd7l1v.d.ts +12 -0
- package/package.json +64 -20
- package/dist/adapters/hono/index.d.mts +0 -20
- package/dist/adapters/hono/index.d.ts +0 -20
- package/dist/adapters/hono/index.mjs +0 -32
- package/dist/adapters/next/index.d.mts +0 -27
- package/dist/adapters/next/index.d.ts +0 -27
- package/dist/adapters/next/index.mjs +0 -29
- package/dist/shared/server.BBGuTxHE.mjs +0 -163
- package/dist/shared/server.BqEaivV1.d.ts +0 -9
- package/dist/shared/server.CHpDfeOK.d.mts +0 -77
- package/dist/shared/server.CI7U5gRZ.d.mts +0 -152
- package/dist/shared/server.CI7U5gRZ.d.ts +0 -152
- package/dist/shared/server.CUE4Aija.mjs +0 -24
- package/dist/shared/server.DSZ2XY8G.d.ts +0 -77
- package/dist/shared/server.MnOqRlBp.d.mts +0 -9
- package/dist/shared/server.Q6ZmnTgO.mjs +0 -12
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.
|
4
|
+
"version": "0.0.0-next.a0ab4bf",
|
5
5
|
"license": "MIT",
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
7
7
|
"repository": {
|
@@ -24,49 +24,93 @@
|
|
24
24
|
"import": "./dist/plugins/index.mjs",
|
25
25
|
"default": "./dist/plugins/index.mjs"
|
26
26
|
},
|
27
|
+
"./hibernation": {
|
28
|
+
"types": "./dist/hibernation/index.d.mts",
|
29
|
+
"import": "./dist/hibernation/index.mjs",
|
30
|
+
"default": "./dist/hibernation/index.mjs"
|
31
|
+
},
|
27
32
|
"./standard": {
|
28
33
|
"types": "./dist/adapters/standard/index.d.mts",
|
29
34
|
"import": "./dist/adapters/standard/index.mjs",
|
30
35
|
"default": "./dist/adapters/standard/index.mjs"
|
31
36
|
},
|
37
|
+
"./standard-peer": {
|
38
|
+
"types": "./dist/adapters/standard-peer/index.d.mts",
|
39
|
+
"import": "./dist/adapters/standard-peer/index.mjs",
|
40
|
+
"default": "./dist/adapters/standard-peer/index.mjs"
|
41
|
+
},
|
32
42
|
"./fetch": {
|
33
43
|
"types": "./dist/adapters/fetch/index.d.mts",
|
34
44
|
"import": "./dist/adapters/fetch/index.mjs",
|
35
45
|
"default": "./dist/adapters/fetch/index.mjs"
|
36
46
|
},
|
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
47
|
"./node": {
|
48
48
|
"types": "./dist/adapters/node/index.d.mts",
|
49
49
|
"import": "./dist/adapters/node/index.mjs",
|
50
50
|
"default": "./dist/adapters/node/index.mjs"
|
51
|
+
},
|
52
|
+
"./aws-lambda": {
|
53
|
+
"types": "./dist/adapters/aws-lambda/index.d.mts",
|
54
|
+
"import": "./dist/adapters/aws-lambda/index.mjs",
|
55
|
+
"default": "./dist/adapters/aws-lambda/index.mjs"
|
56
|
+
},
|
57
|
+
"./websocket": {
|
58
|
+
"types": "./dist/adapters/websocket/index.d.mts",
|
59
|
+
"import": "./dist/adapters/websocket/index.mjs",
|
60
|
+
"default": "./dist/adapters/websocket/index.mjs"
|
61
|
+
},
|
62
|
+
"./crossws": {
|
63
|
+
"types": "./dist/adapters/crossws/index.d.mts",
|
64
|
+
"import": "./dist/adapters/crossws/index.mjs",
|
65
|
+
"default": "./dist/adapters/crossws/index.mjs"
|
66
|
+
},
|
67
|
+
"./ws": {
|
68
|
+
"types": "./dist/adapters/ws/index.d.mts",
|
69
|
+
"import": "./dist/adapters/ws/index.mjs",
|
70
|
+
"default": "./dist/adapters/ws/index.mjs"
|
71
|
+
},
|
72
|
+
"./bun-ws": {
|
73
|
+
"types": "./dist/adapters/bun-ws/index.d.mts",
|
74
|
+
"import": "./dist/adapters/bun-ws/index.mjs",
|
75
|
+
"default": "./dist/adapters/bun-ws/index.mjs"
|
76
|
+
},
|
77
|
+
"./message-port": {
|
78
|
+
"types": "./dist/adapters/message-port/index.d.mts",
|
79
|
+
"import": "./dist/adapters/message-port/index.mjs",
|
80
|
+
"default": "./dist/adapters/message-port/index.mjs"
|
51
81
|
}
|
52
82
|
},
|
53
83
|
"files": [
|
54
84
|
"dist"
|
55
85
|
],
|
56
86
|
"peerDependencies": {
|
57
|
-
"
|
58
|
-
"
|
87
|
+
"crossws": ">=0.3.4",
|
88
|
+
"ws": ">=8.18.1"
|
89
|
+
},
|
90
|
+
"peerDependenciesMeta": {
|
91
|
+
"crossws": {
|
92
|
+
"optional": true
|
93
|
+
},
|
94
|
+
"ws": {
|
95
|
+
"optional": true
|
96
|
+
}
|
59
97
|
},
|
60
98
|
"dependencies": {
|
61
|
-
"@orpc/
|
62
|
-
"@orpc/shared": "0.0.0-next.
|
63
|
-
"@orpc/standard-server": "0.0.0-next.
|
64
|
-
"@orpc/
|
65
|
-
"@orpc/
|
66
|
-
"@orpc/standard-server-
|
99
|
+
"@orpc/contract": "0.0.0-next.a0ab4bf",
|
100
|
+
"@orpc/shared": "0.0.0-next.a0ab4bf",
|
101
|
+
"@orpc/standard-server-aws-lambda": "0.0.0-next.a0ab4bf",
|
102
|
+
"@orpc/standard-server": "0.0.0-next.a0ab4bf",
|
103
|
+
"@orpc/client": "0.0.0-next.a0ab4bf",
|
104
|
+
"@orpc/standard-server-fetch": "0.0.0-next.a0ab4bf",
|
105
|
+
"@orpc/standard-server-node": "0.0.0-next.a0ab4bf",
|
106
|
+
"@orpc/standard-server-peer": "0.0.0-next.a0ab4bf"
|
67
107
|
},
|
68
108
|
"devDependencies": {
|
69
|
-
"
|
109
|
+
"@types/ws": "^8.18.1",
|
110
|
+
"crossws": "^0.4.1",
|
111
|
+
"next": "^15.4.1",
|
112
|
+
"supertest": "^7.1.3",
|
113
|
+
"ws": "^8.18.3"
|
70
114
|
},
|
71
115
|
"scripts": {
|
72
116
|
"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.CI7U5gRZ.mjs';
|
6
|
-
import { S as StandardHandleOptions } from '../../shared/server.CHpDfeOK.mjs';
|
7
|
-
import '@orpc/standard-server-fetch';
|
8
|
-
import '../../shared/server.MnOqRlBp.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.CI7U5gRZ.js';
|
6
|
-
import { S as StandardHandleOptions } from '../../shared/server.DSZ2XY8G.js';
|
7
|
-
import '@orpc/standard-server-fetch';
|
8
|
-
import '../../shared/server.BqEaivV1.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.CUE4Aija.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.CI7U5gRZ.mjs';
|
6
|
-
import { S as StandardHandleOptions } from '../../shared/server.CHpDfeOK.mjs';
|
7
|
-
import '@orpc/standard-server-fetch';
|
8
|
-
import '../../shared/server.MnOqRlBp.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.CI7U5gRZ.js';
|
6
|
-
import { S as StandardHandleOptions } from '../../shared/server.DSZ2XY8G.js';
|
7
|
-
import '@orpc/standard-server-fetch';
|
8
|
-
import '../../shared/server.BqEaivV1.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.CUE4Aija.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.CI7U5gRZ.js';
|
2
|
-
import { a as StandardHandlerOptions, b as StandardMatcher, c as StandardCodec } from './server.DSZ2XY8G.js';
|
3
|
-
|
4
|
-
interface RPCHandlerOptions<T extends Context> extends StandardHandlerOptions<T> {
|
5
|
-
matcher?: StandardMatcher;
|
6
|
-
codec?: StandardCodec;
|
7
|
-
}
|
8
|
-
|
9
|
-
export type { RPCHandlerOptions as R };
|
@@ -1,77 +0,0 @@
|
|
1
|
-
import { HTTPPath, Schema, Meta, SchemaOutput, ErrorFromErrorMap } from '@orpc/contract';
|
2
|
-
import { Interceptor, MaybeOptionalOptions } from '@orpc/shared';
|
3
|
-
import { StandardResponse, StandardRequest } from '@orpc/standard-server';
|
4
|
-
import { a as AnyRouter, A as AnyProcedure, C as Context, P as ProcedureClientInterceptorOptions, R as Router } from './server.CI7U5gRZ.mjs';
|
5
|
-
import { ORPCError } from '@orpc/client';
|
6
|
-
|
7
|
-
type StandardParams = Record<string, string>;
|
8
|
-
type StandardMatchResult = {
|
9
|
-
path: 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: StandardRequest, 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: StandardRequest;
|
42
|
-
};
|
43
|
-
interface StandardHandlerOptions<TContext extends Context> {
|
44
|
-
plugins?: Plugin<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, Schema, Record<never, never>, Meta>, SchemaOutput<Schema, unknown>, 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<T, any>, matcher: StandardMatcher, codec: StandardCodec, options?: NoInfer<StandardHandlerOptions<T>>);
|
65
|
-
handle(request: StandardRequest, ...[options]: MaybeOptionalOptions<StandardHandleOptions<T>>): Promise<StandardHandleResult>;
|
66
|
-
}
|
67
|
-
|
68
|
-
interface Plugin<TContext extends Context> {
|
69
|
-
init?(options: StandardHandlerOptions<TContext>): void;
|
70
|
-
}
|
71
|
-
declare class CompositePlugin<TContext extends Context> implements Plugin<TContext> {
|
72
|
-
private readonly plugins;
|
73
|
-
constructor(plugins?: Plugin<TContext>[]);
|
74
|
-
init(options: StandardHandlerOptions<TContext>): void;
|
75
|
-
}
|
76
|
-
|
77
|
-
export { CompositePlugin as C, type Plugin as P, type StandardHandleOptions as S, type WellStandardHandleOptions as W, type StandardHandlerOptions as a, type StandardMatcher as b, type StandardCodec as c, type StandardHandlerInterceptorOptions as d, type StandardParams as e, type StandardMatchResult as f, type StandardHandleResult as g, StandardHandler as h };
|