@orpc/server 0.0.0-next.3b1dac3 → 0.0.0-next.3c7b6e0
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 +28 -20
- package/dist/adapters/aws-lambda/index.d.mts +45 -0
- package/dist/adapters/aws-lambda/index.d.ts +45 -0
- package/dist/adapters/aws-lambda/index.mjs +41 -0
- package/dist/adapters/bun-ws/index.d.mts +35 -0
- package/dist/adapters/bun-ws/index.d.ts +35 -0
- package/dist/adapters/bun-ws/index.mjs +46 -0
- package/dist/adapters/crossws/index.d.mts +30 -0
- package/dist/adapters/crossws/index.d.ts +30 -0
- package/dist/adapters/crossws/index.mjs +46 -0
- package/dist/adapters/fetch/index.d.mts +62 -10
- package/dist/adapters/fetch/index.d.ts +62 -10
- package/dist/adapters/fetch/index.mjs +109 -8
- package/dist/adapters/message-port/index.d.mts +28 -0
- package/dist/adapters/message-port/index.d.ts +28 -0
- package/dist/adapters/message-port/index.mjs +41 -0
- package/dist/adapters/node/index.d.mts +64 -21
- package/dist/adapters/node/index.d.ts +64 -21
- package/dist/adapters/node/index.mjs +87 -23
- package/dist/adapters/standard/index.d.mts +11 -10
- package/dist/adapters/standard/index.d.ts +11 -10
- package/dist/adapters/standard/index.mjs +4 -3
- package/dist/adapters/websocket/index.d.mts +51 -0
- package/dist/adapters/websocket/index.d.ts +51 -0
- package/dist/adapters/websocket/index.mjs +69 -0
- package/dist/adapters/ws/index.d.mts +28 -0
- package/dist/adapters/ws/index.d.ts +28 -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 +640 -70
- package/dist/index.d.ts +640 -70
- package/dist/index.mjs +194 -39
- package/dist/plugins/index.d.mts +144 -19
- package/dist/plugins/index.d.ts +144 -19
- package/dist/plugins/index.mjs +165 -15
- package/dist/shared/server.-ACo36I0.d.ts +74 -0
- package/dist/shared/server.BPAWobQg.d.ts +12 -0
- package/dist/shared/server.BW-nUGgA.mjs +36 -0
- package/dist/shared/server.Bd52nNaH.d.mts +12 -0
- package/dist/shared/server.BliFSTnG.d.mts +10 -0
- package/dist/shared/{server.3cSam35R.mjs → server.CHvOkcM3.mjs} +59 -31
- package/dist/shared/{server.CPteJIPP.d.mts → server.DD2C4ujN.d.mts} +73 -24
- package/dist/shared/{server.CPteJIPP.d.ts → server.DD2C4ujN.d.ts} +73 -24
- package/dist/shared/{server.BFBhsdJr.mjs → server.DG7Tamti.mjs} +54 -32
- package/dist/shared/server.DZ5BIITo.mjs +9 -0
- package/dist/shared/server.Dq8xr7PQ.d.mts +74 -0
- package/dist/shared/server.IG2MjhrD.d.ts +10 -0
- package/package.json +59 -20
- package/dist/adapters/hono/index.d.mts +0 -19
- package/dist/adapters/hono/index.d.ts +0 -19
- package/dist/adapters/hono/index.mjs +0 -32
- package/dist/adapters/next/index.d.mts +0 -26
- package/dist/adapters/next/index.d.ts +0 -26
- package/dist/adapters/next/index.mjs +0 -29
- package/dist/shared/server.BZRSVRDu.d.ts +0 -77
- package/dist/shared/server.CjB_m7jG.mjs +0 -28
- package/dist/shared/server.Q6ZmnTgO.mjs +0 -12
- package/dist/shared/server.iM8li30u.d.mts +0 -77
@@ -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
|
3
|
+
import { value, intercept } from '@orpc/shared';
|
4
4
|
|
5
5
|
const LAZY_SYMBOL = Symbol("ORPC_LAZY_SYMBOL");
|
6
6
|
function lazy(loader, meta = {}) {
|
@@ -21,25 +21,34 @@ function unlazy(lazied) {
|
|
21
21
|
return isLazy(lazied) ? lazied[LAZY_SYMBOL].loader() : Promise.resolve({ default: lazied });
|
22
22
|
}
|
23
23
|
|
24
|
-
function
|
25
|
-
|
24
|
+
function isStartWithMiddlewares(middlewares, compare) {
|
25
|
+
if (compare.length > middlewares.length) {
|
26
|
+
return false;
|
27
|
+
}
|
26
28
|
for (let i = 0; i < middlewares.length; i++) {
|
27
|
-
|
28
|
-
|
29
|
-
|
29
|
+
if (compare[i] === void 0) {
|
30
|
+
return true;
|
31
|
+
}
|
32
|
+
if (middlewares[i] !== compare[i]) {
|
33
|
+
return false;
|
30
34
|
}
|
31
|
-
min = index + 1;
|
32
35
|
}
|
33
|
-
return
|
36
|
+
return true;
|
34
37
|
}
|
35
|
-
function mergeMiddlewares(first, second) {
|
36
|
-
|
38
|
+
function mergeMiddlewares(first, second, options) {
|
39
|
+
if (options.dedupeLeading && isStartWithMiddlewares(second, first)) {
|
40
|
+
return second;
|
41
|
+
}
|
42
|
+
return [...first, ...second];
|
37
43
|
}
|
38
44
|
function addMiddleware(middlewares, addition) {
|
39
45
|
return [...middlewares, addition];
|
40
46
|
}
|
41
47
|
|
42
48
|
class Procedure {
|
49
|
+
/**
|
50
|
+
* This property holds the defined options.
|
51
|
+
*/
|
43
52
|
"~orpc";
|
44
53
|
constructor(def) {
|
45
54
|
this["~orpc"] = def;
|
@@ -52,6 +61,10 @@ function isProcedure(item) {
|
|
52
61
|
return isContractProcedure(item) && "middlewares" in item["~orpc"] && "inputValidationIndex" in item["~orpc"] && "outputValidationIndex" in item["~orpc"] && "handler" in item["~orpc"];
|
53
62
|
}
|
54
63
|
|
64
|
+
function mergeCurrentContext(context, other) {
|
65
|
+
return { ...context, ...other };
|
66
|
+
}
|
67
|
+
|
55
68
|
function createORPCErrorConstructorMap(errors) {
|
56
69
|
const proxy = new Proxy(errors, {
|
57
70
|
get(target, code) {
|
@@ -117,7 +130,7 @@ function createProcedureClient(lazyableProcedure, ...[options]) {
|
|
117
130
|
);
|
118
131
|
} catch (e) {
|
119
132
|
if (!(e instanceof ORPCError)) {
|
120
|
-
throw
|
133
|
+
throw e;
|
121
134
|
}
|
122
135
|
const validated = await validateORPCError(procedure["~orpc"].errorMap, e);
|
123
136
|
throw validated;
|
@@ -159,28 +172,29 @@ async function executeProcedureInternal(procedure, options) {
|
|
159
172
|
const middlewares = procedure["~orpc"].middlewares;
|
160
173
|
const inputValidationIndex = Math.min(Math.max(0, procedure["~orpc"].inputValidationIndex), middlewares.length);
|
161
174
|
const outputValidationIndex = Math.min(Math.max(0, procedure["~orpc"].outputValidationIndex), middlewares.length);
|
162
|
-
|
163
|
-
|
164
|
-
let currentInput = options.input;
|
165
|
-
const next = async (...[nextOptions]) => {
|
166
|
-
const index = currentIndex;
|
167
|
-
currentIndex += 1;
|
168
|
-
currentContext = { ...currentContext, ...nextOptions?.context };
|
175
|
+
const next = async (index, context, input) => {
|
176
|
+
let currentInput = input;
|
169
177
|
if (index === inputValidationIndex) {
|
170
178
|
currentInput = await validateInput(procedure, currentInput);
|
171
179
|
}
|
172
180
|
const mid = middlewares[index];
|
173
|
-
const
|
181
|
+
const output = mid ? (await mid({
|
182
|
+
...options,
|
183
|
+
context,
|
184
|
+
next: async (...[nextOptions]) => {
|
185
|
+
const nextContext = nextOptions?.context ?? {};
|
186
|
+
return {
|
187
|
+
output: await next(index + 1, mergeCurrentContext(context, nextContext), currentInput),
|
188
|
+
context: nextContext
|
189
|
+
};
|
190
|
+
}
|
191
|
+
}, currentInput, middlewareOutputFn)).output : await procedure["~orpc"].handler({ ...options, context, input: currentInput });
|
174
192
|
if (index === outputValidationIndex) {
|
175
|
-
|
176
|
-
return {
|
177
|
-
...result,
|
178
|
-
output: validatedOutput
|
179
|
-
};
|
193
|
+
return await validateOutput(procedure, output);
|
180
194
|
}
|
181
|
-
return
|
195
|
+
return output;
|
182
196
|
};
|
183
|
-
return (
|
197
|
+
return next(0, options.context, options.input);
|
184
198
|
}
|
185
199
|
|
186
200
|
const HIDDEN_ROUTER_CONTRACT_SYMBOL = Symbol("ORPC_HIDDEN_ROUTER_CONTRACT");
|
@@ -250,7 +264,7 @@ function enhanceRouter(router, options) {
|
|
250
264
|
return accessible;
|
251
265
|
}
|
252
266
|
if (isProcedure(router)) {
|
253
|
-
const newMiddlewares = mergeMiddlewares(options.middlewares, router["~orpc"].middlewares);
|
267
|
+
const newMiddlewares = mergeMiddlewares(options.middlewares, router["~orpc"].middlewares, { dedupeLeading: options.dedupeLeadingMiddlewares });
|
254
268
|
const newMiddlewareAdded = newMiddlewares.length - router["~orpc"].middlewares.length;
|
255
269
|
const enhanced2 = new Procedure({
|
256
270
|
...router["~orpc"],
|
@@ -311,6 +325,18 @@ async function resolveContractProcedures(options, callback) {
|
|
311
325
|
}
|
312
326
|
}
|
313
327
|
}
|
328
|
+
async function unlazyRouter(router) {
|
329
|
+
if (isProcedure(router)) {
|
330
|
+
return router;
|
331
|
+
}
|
332
|
+
const unlazied = {};
|
333
|
+
for (const key in router) {
|
334
|
+
const item = router[key];
|
335
|
+
const { default: unlaziedRouter } = await unlazy(item);
|
336
|
+
unlazied[key] = await unlazyRouter(unlaziedRouter);
|
337
|
+
}
|
338
|
+
return unlazied;
|
339
|
+
}
|
314
340
|
|
315
341
|
function createAssertedLazyProcedure(lazied) {
|
316
342
|
const lazyProcedure = lazy(async () => {
|
@@ -338,8 +364,4 @@ function call(procedure, input, ...rest) {
|
|
338
364
|
return createProcedureClient(procedure, ...rest)(input);
|
339
365
|
}
|
340
366
|
|
341
|
-
|
342
|
-
return `/${path.map(encodeURIComponent).join("/")}`;
|
343
|
-
}
|
344
|
-
|
345
|
-
export { LAZY_SYMBOL as L, Procedure as P, toHttpPath as a, createContractedProcedure as b, createProcedureClient as c, addMiddleware as d, enhanceRouter as e, isLazy as f, getRouter as g, createAssertedLazyProcedure as h, isProcedure as i, getLazyMeta as j, call as k, lazy as l, middlewareOutputFn as m, getHiddenRouterContract as n, createAccessibleLazyRouter as o, resolveContractProcedures as r, setHiddenRouterContract as s, traverseContractProcedures as t, unlazy as u };
|
367
|
+
export { LAZY_SYMBOL as L, Procedure as P, createContractedProcedure as a, addMiddleware as b, createProcedureClient as c, isLazy as d, enhanceRouter as e, createAssertedLazyProcedure as f, getRouter as g, createORPCErrorConstructorMap as h, isProcedure as i, getLazyMeta as j, middlewareOutputFn as k, lazy as l, mergeCurrentContext as m, isStartWithMiddlewares as n, mergeMiddlewares as o, call as p, getHiddenRouterContract as q, createAccessibleLazyRouter as r, setHiddenRouterContract as s, traverseContractProcedures as t, unlazy as u, validateORPCError as v, resolveContractProcedures as w, unlazyRouter as x };
|
@@ -0,0 +1,74 @@
|
|
1
|
+
import { HTTPPath, ORPCError } from '@orpc/client';
|
2
|
+
import { Meta } from '@orpc/contract';
|
3
|
+
import { Interceptor } from '@orpc/shared';
|
4
|
+
import { StandardResponse, StandardLazyRequest } from '@orpc/standard-server';
|
5
|
+
import { C as Context, R as Router, f as AnyRouter, h as AnyProcedure, F as ProcedureClientInterceptorOptions } from './server.DD2C4ujN.mjs';
|
6
|
+
|
7
|
+
interface StandardHandlerPlugin<T extends Context> {
|
8
|
+
order?: number;
|
9
|
+
init?(options: StandardHandlerOptions<T>, router: Router<any, T>): 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>, router: Router<any, T>): void;
|
15
|
+
}
|
16
|
+
|
17
|
+
type StandardParams = Record<string, string>;
|
18
|
+
type StandardMatchResult = {
|
19
|
+
path: readonly string[];
|
20
|
+
procedure: AnyProcedure;
|
21
|
+
params?: StandardParams;
|
22
|
+
} | undefined;
|
23
|
+
interface StandardMatcher {
|
24
|
+
init(router: AnyRouter): void;
|
25
|
+
match(method: string, pathname: HTTPPath): Promise<StandardMatchResult>;
|
26
|
+
}
|
27
|
+
interface StandardCodec {
|
28
|
+
encode(output: unknown, procedure: AnyProcedure): StandardResponse;
|
29
|
+
encodeError(error: ORPCError<any, any>): StandardResponse;
|
30
|
+
decode(request: StandardLazyRequest, params: StandardParams | undefined, procedure: AnyProcedure): Promise<unknown>;
|
31
|
+
}
|
32
|
+
|
33
|
+
interface StandardHandleOptions<T extends Context> {
|
34
|
+
prefix?: HTTPPath;
|
35
|
+
context: T;
|
36
|
+
}
|
37
|
+
type StandardHandleResult = {
|
38
|
+
matched: true;
|
39
|
+
response: StandardResponse;
|
40
|
+
} | {
|
41
|
+
matched: false;
|
42
|
+
response: undefined;
|
43
|
+
};
|
44
|
+
interface StandardHandlerInterceptorOptions<T extends Context> extends StandardHandleOptions<T> {
|
45
|
+
request: StandardLazyRequest;
|
46
|
+
}
|
47
|
+
interface StandardHandlerOptions<TContext extends Context> {
|
48
|
+
plugins?: StandardHandlerPlugin<TContext>[];
|
49
|
+
/**
|
50
|
+
* Interceptors at the request level, helpful when you want catch errors
|
51
|
+
*/
|
52
|
+
interceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, Promise<StandardHandleResult>>[];
|
53
|
+
/**
|
54
|
+
* Interceptors at the root level, helpful when you want override the request/response
|
55
|
+
*/
|
56
|
+
rootInterceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, Promise<StandardHandleResult>>[];
|
57
|
+
/**
|
58
|
+
*
|
59
|
+
* Interceptors for procedure client.
|
60
|
+
*/
|
61
|
+
clientInterceptors?: Interceptor<ProcedureClientInterceptorOptions<TContext, Record<never, never>, Meta>, Promise<unknown>>[];
|
62
|
+
}
|
63
|
+
declare class StandardHandler<T extends Context> {
|
64
|
+
private readonly matcher;
|
65
|
+
private readonly codec;
|
66
|
+
private readonly interceptors;
|
67
|
+
private readonly clientInterceptors;
|
68
|
+
private readonly rootInterceptors;
|
69
|
+
constructor(router: Router<any, T>, matcher: StandardMatcher, codec: StandardCodec, options: NoInfer<StandardHandlerOptions<T>>);
|
70
|
+
handle(request: StandardLazyRequest, options: StandardHandleOptions<T>): Promise<StandardHandleResult>;
|
71
|
+
}
|
72
|
+
|
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 };
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { C as Context } from './server.DD2C4ujN.js';
|
2
|
+
import { g as StandardHandleOptions } from './server.-ACo36I0.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 };
|
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.3c7b6e0",
|
5
5
|
"license": "MIT",
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
7
7
|
"repository": {
|
@@ -24,6 +24,11 @@
|
|
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",
|
@@ -34,39 +39,73 @@
|
|
34
39
|
"import": "./dist/adapters/fetch/index.mjs",
|
35
40
|
"default": "./dist/adapters/fetch/index.mjs"
|
36
41
|
},
|
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
42
|
"./node": {
|
48
43
|
"types": "./dist/adapters/node/index.d.mts",
|
49
44
|
"import": "./dist/adapters/node/index.mjs",
|
50
45
|
"default": "./dist/adapters/node/index.mjs"
|
46
|
+
},
|
47
|
+
"./aws-lambda": {
|
48
|
+
"types": "./dist/adapters/aws-lambda/index.d.mts",
|
49
|
+
"import": "./dist/adapters/aws-lambda/index.mjs",
|
50
|
+
"default": "./dist/adapters/aws-lambda/index.mjs"
|
51
|
+
},
|
52
|
+
"./websocket": {
|
53
|
+
"types": "./dist/adapters/websocket/index.d.mts",
|
54
|
+
"import": "./dist/adapters/websocket/index.mjs",
|
55
|
+
"default": "./dist/adapters/websocket/index.mjs"
|
56
|
+
},
|
57
|
+
"./crossws": {
|
58
|
+
"types": "./dist/adapters/crossws/index.d.mts",
|
59
|
+
"import": "./dist/adapters/crossws/index.mjs",
|
60
|
+
"default": "./dist/adapters/crossws/index.mjs"
|
61
|
+
},
|
62
|
+
"./ws": {
|
63
|
+
"types": "./dist/adapters/ws/index.d.mts",
|
64
|
+
"import": "./dist/adapters/ws/index.mjs",
|
65
|
+
"default": "./dist/adapters/ws/index.mjs"
|
66
|
+
},
|
67
|
+
"./bun-ws": {
|
68
|
+
"types": "./dist/adapters/bun-ws/index.d.mts",
|
69
|
+
"import": "./dist/adapters/bun-ws/index.mjs",
|
70
|
+
"default": "./dist/adapters/bun-ws/index.mjs"
|
71
|
+
},
|
72
|
+
"./message-port": {
|
73
|
+
"types": "./dist/adapters/message-port/index.d.mts",
|
74
|
+
"import": "./dist/adapters/message-port/index.mjs",
|
75
|
+
"default": "./dist/adapters/message-port/index.mjs"
|
51
76
|
}
|
52
77
|
},
|
53
78
|
"files": [
|
54
79
|
"dist"
|
55
80
|
],
|
56
81
|
"peerDependencies": {
|
57
|
-
"
|
58
|
-
"
|
82
|
+
"crossws": ">=0.3.4",
|
83
|
+
"ws": ">=8.18.1"
|
84
|
+
},
|
85
|
+
"peerDependenciesMeta": {
|
86
|
+
"crossws": {
|
87
|
+
"optional": true
|
88
|
+
},
|
89
|
+
"ws": {
|
90
|
+
"optional": true
|
91
|
+
}
|
59
92
|
},
|
60
93
|
"dependencies": {
|
61
|
-
"@orpc/client": "0.0.0-next.
|
62
|
-
"@orpc/
|
63
|
-
"@orpc/
|
64
|
-
"@orpc/
|
65
|
-
"@orpc/standard-server-fetch": "0.0.0-next.
|
66
|
-
"@orpc/standard-server-
|
94
|
+
"@orpc/client": "0.0.0-next.3c7b6e0",
|
95
|
+
"@orpc/shared": "0.0.0-next.3c7b6e0",
|
96
|
+
"@orpc/standard-server": "0.0.0-next.3c7b6e0",
|
97
|
+
"@orpc/contract": "0.0.0-next.3c7b6e0",
|
98
|
+
"@orpc/standard-server-fetch": "0.0.0-next.3c7b6e0",
|
99
|
+
"@orpc/standard-server-aws-lambda": "0.0.0-next.3c7b6e0",
|
100
|
+
"@orpc/standard-server-node": "0.0.0-next.3c7b6e0",
|
101
|
+
"@orpc/standard-server-peer": "0.0.0-next.3c7b6e0"
|
67
102
|
},
|
68
103
|
"devDependencies": {
|
69
|
-
"
|
104
|
+
"@types/ws": "^8.18.1",
|
105
|
+
"crossws": "^0.4.1",
|
106
|
+
"next": "^15.3.0",
|
107
|
+
"supertest": "^7.1.0",
|
108
|
+
"ws": "^8.18.1"
|
70
109
|
},
|
71
110
|
"scripts": {
|
72
111
|
"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,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 };
|