@orpc/server 0.0.0-next.f56d2b3 → 0.0.0-next.fd0ca3d
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/dist/chunk-47YYO5JS.js +32 -0
- package/dist/chunk-77FU7QSO.js +181 -0
- package/dist/{chunk-KK4SDLC7.js → chunk-MHVECKBC.js} +132 -31
- package/dist/chunk-WQNNSBXW.js +120 -0
- package/dist/fetch.js +6 -11
- package/dist/hono.js +17 -13
- package/dist/index.js +29 -7
- package/dist/next.js +5 -10
- package/dist/node.js +18 -74
- package/dist/plugins.js +11 -0
- package/dist/src/adapters/fetch/index.d.ts +1 -4
- package/dist/src/adapters/fetch/rpc-handler.d.ts +11 -0
- package/dist/src/adapters/fetch/types.d.ts +3 -10
- package/dist/src/adapters/hono/middleware.d.ts +5 -5
- package/dist/src/adapters/next/serve.d.ts +5 -5
- package/dist/src/adapters/node/index.d.ts +1 -3
- package/dist/src/adapters/node/rpc-handler.d.ts +11 -0
- package/dist/src/adapters/node/types.d.ts +14 -14
- package/dist/src/adapters/standard/handler.d.ts +53 -0
- package/dist/src/adapters/standard/index.d.ts +6 -0
- package/dist/src/adapters/standard/rpc-codec.d.ts +16 -0
- package/dist/src/adapters/standard/rpc-handler.d.ts +8 -0
- package/dist/src/adapters/standard/rpc-matcher.d.ts +10 -0
- package/dist/src/adapters/standard/types.d.ts +21 -0
- package/dist/src/builder-variants.d.ts +2 -1
- package/dist/src/builder.d.ts +2 -1
- package/dist/src/context.d.ts +0 -1
- package/dist/src/error.d.ts +12 -0
- package/dist/src/implementer-procedure.d.ts +7 -4
- package/dist/src/implementer-variants.d.ts +7 -5
- package/dist/src/implementer.d.ts +8 -6
- package/dist/src/index.d.ts +5 -1
- package/dist/src/middleware-decorated.d.ts +2 -1
- package/dist/src/middleware.d.ts +5 -4
- package/dist/src/plugins/base.d.ts +11 -0
- package/dist/src/plugins/cors.d.ts +19 -0
- package/dist/src/plugins/index.d.ts +4 -0
- package/dist/src/plugins/response-headers.d.ts +10 -0
- package/dist/src/procedure-client.d.ts +21 -8
- package/dist/src/procedure-decorated.d.ts +7 -4
- package/dist/src/procedure-utils.d.ts +5 -3
- package/dist/src/procedure.d.ts +5 -3
- package/dist/src/router-client.d.ts +7 -17
- package/dist/src/router.d.ts +1 -0
- package/dist/src/utils.d.ts +24 -0
- package/dist/standard.js +13 -0
- package/package.json +20 -3
- package/dist/chunk-ESTRJAOX.js +0 -299
- package/dist/chunk-WUOGVGWG.js +0 -1
- package/dist/src/adapters/fetch/orpc-handler.d.ts +0 -20
- package/dist/src/adapters/fetch/orpc-payload-codec.d.ts +0 -16
- package/dist/src/adapters/fetch/orpc-procedure-matcher.d.ts +0 -12
- package/dist/src/adapters/fetch/super-json.d.ts +0 -12
- package/dist/src/adapters/node/orpc-handler.d.ts +0 -12
- package/dist/src/adapters/node/request-listener.d.ts +0 -28
@@ -0,0 +1,32 @@
|
|
1
|
+
import {
|
2
|
+
RPCCodec,
|
3
|
+
RPCMatcher,
|
4
|
+
StandardHandler
|
5
|
+
} from "./chunk-77FU7QSO.js";
|
6
|
+
|
7
|
+
// src/adapters/fetch/rpc-handler.ts
|
8
|
+
import { toFetchResponse, toStandardRequest } from "@orpc/server-standard-fetch";
|
9
|
+
var RPCHandler = class {
|
10
|
+
standardHandler;
|
11
|
+
constructor(router, options) {
|
12
|
+
const matcher = options?.matcher ?? new RPCMatcher();
|
13
|
+
const codec = options?.codec ?? new RPCCodec();
|
14
|
+
this.standardHandler = new StandardHandler(router, matcher, codec, options);
|
15
|
+
}
|
16
|
+
async handle(request, ...rest) {
|
17
|
+
const standardRequest = toStandardRequest(request);
|
18
|
+
const result = await this.standardHandler.handle(standardRequest, ...rest);
|
19
|
+
if (!result.matched) {
|
20
|
+
return result;
|
21
|
+
}
|
22
|
+
return {
|
23
|
+
matched: true,
|
24
|
+
response: toFetchResponse(result.response)
|
25
|
+
};
|
26
|
+
}
|
27
|
+
};
|
28
|
+
|
29
|
+
export {
|
30
|
+
RPCHandler
|
31
|
+
};
|
32
|
+
//# sourceMappingURL=chunk-47YYO5JS.js.map
|
@@ -0,0 +1,181 @@
|
|
1
|
+
import {
|
2
|
+
convertPathToHttpPath,
|
3
|
+
createContractedProcedure,
|
4
|
+
createProcedureClient,
|
5
|
+
eachContractProcedure,
|
6
|
+
getRouterChild,
|
7
|
+
isProcedure,
|
8
|
+
unlazy
|
9
|
+
} from "./chunk-MHVECKBC.js";
|
10
|
+
import {
|
11
|
+
CompositePlugin
|
12
|
+
} from "./chunk-WQNNSBXW.js";
|
13
|
+
|
14
|
+
// src/adapters/standard/handler.ts
|
15
|
+
import { ORPCError, toORPCError } from "@orpc/client";
|
16
|
+
import { intercept, trim } from "@orpc/shared";
|
17
|
+
var StandardHandler = class {
|
18
|
+
constructor(router, matcher, codec, options = {}) {
|
19
|
+
this.matcher = matcher;
|
20
|
+
this.codec = codec;
|
21
|
+
this.options = options;
|
22
|
+
this.plugin = new CompositePlugin(options.plugins);
|
23
|
+
this.plugin.init(this.options);
|
24
|
+
this.matcher.init(router);
|
25
|
+
}
|
26
|
+
plugin;
|
27
|
+
handle(request, ...[options]) {
|
28
|
+
return intercept(
|
29
|
+
this.options.rootInterceptors ?? [],
|
30
|
+
{
|
31
|
+
request,
|
32
|
+
...options,
|
33
|
+
context: options?.context ?? {}
|
34
|
+
// context is optional only when all fields are optional so we can safely force it to have a context
|
35
|
+
},
|
36
|
+
async (interceptorOptions) => {
|
37
|
+
let isDecoding = false;
|
38
|
+
try {
|
39
|
+
return await intercept(
|
40
|
+
this.options.interceptors ?? [],
|
41
|
+
interceptorOptions,
|
42
|
+
async (interceptorOptions2) => {
|
43
|
+
const method = interceptorOptions2.request.method;
|
44
|
+
const url = interceptorOptions2.request.url;
|
45
|
+
const pathname = `/${trim(url.pathname.replace(interceptorOptions2.prefix ?? "", ""), "/")}`;
|
46
|
+
const match = await this.matcher.match(method, pathname);
|
47
|
+
if (!match) {
|
48
|
+
return { matched: false, response: void 0 };
|
49
|
+
}
|
50
|
+
const client = createProcedureClient(match.procedure, {
|
51
|
+
context: interceptorOptions2.context,
|
52
|
+
path: match.path,
|
53
|
+
interceptors: this.options.clientInterceptors
|
54
|
+
});
|
55
|
+
isDecoding = true;
|
56
|
+
const input = await this.codec.decode(request, match.params, match.procedure);
|
57
|
+
isDecoding = false;
|
58
|
+
const lastEventId = Array.isArray(request.headers["last-event-id"]) ? request.headers["last-event-id"].at(-1) : request.headers["last-event-id"];
|
59
|
+
const output = await client(input, { signal: request.signal, lastEventId });
|
60
|
+
const response = this.codec.encode(output, match.procedure);
|
61
|
+
return {
|
62
|
+
matched: true,
|
63
|
+
response
|
64
|
+
};
|
65
|
+
}
|
66
|
+
);
|
67
|
+
} catch (e) {
|
68
|
+
const error = isDecoding ? new ORPCError("BAD_REQUEST", {
|
69
|
+
message: `Malformed request. Ensure the request body is properly formatted and the 'Content-Type' header is set correctly.`,
|
70
|
+
cause: e
|
71
|
+
}) : toORPCError(e);
|
72
|
+
const response = this.codec.encodeError(error);
|
73
|
+
return {
|
74
|
+
matched: true,
|
75
|
+
response
|
76
|
+
};
|
77
|
+
}
|
78
|
+
}
|
79
|
+
);
|
80
|
+
}
|
81
|
+
};
|
82
|
+
|
83
|
+
// src/adapters/standard/rpc-codec.ts
|
84
|
+
import { RPCSerializer } from "@orpc/client/rpc";
|
85
|
+
var RPCCodec = class {
|
86
|
+
serializer;
|
87
|
+
constructor(options = {}) {
|
88
|
+
this.serializer = options.serializer ?? new RPCSerializer();
|
89
|
+
}
|
90
|
+
async decode(request, _params, _procedure) {
|
91
|
+
const serialized = request.method === "GET" ? JSON.parse(request.url.searchParams.getAll("data").at(-1)) : await request.body();
|
92
|
+
return this.serializer.deserialize(serialized);
|
93
|
+
}
|
94
|
+
encode(output, _procedure) {
|
95
|
+
return {
|
96
|
+
status: 200,
|
97
|
+
headers: {},
|
98
|
+
body: this.serializer.serialize(output)
|
99
|
+
};
|
100
|
+
}
|
101
|
+
encodeError(error) {
|
102
|
+
return {
|
103
|
+
status: error.status,
|
104
|
+
headers: {},
|
105
|
+
body: this.serializer.serialize(error.toJSON())
|
106
|
+
};
|
107
|
+
}
|
108
|
+
};
|
109
|
+
|
110
|
+
// src/adapters/standard/rpc-matcher.ts
|
111
|
+
var RPCMatcher = class {
|
112
|
+
tree = {};
|
113
|
+
pendingRouters = [];
|
114
|
+
init(router, path = []) {
|
115
|
+
const laziedOptions = eachContractProcedure({
|
116
|
+
router,
|
117
|
+
path
|
118
|
+
}, ({ path: path2, contract }) => {
|
119
|
+
const httpPath = convertPathToHttpPath(path2);
|
120
|
+
if (isProcedure(contract)) {
|
121
|
+
this.tree[httpPath] = {
|
122
|
+
path: path2,
|
123
|
+
contract,
|
124
|
+
procedure: contract,
|
125
|
+
// this mean dev not used contract-first so we can used contract as procedure directly
|
126
|
+
router
|
127
|
+
};
|
128
|
+
} else {
|
129
|
+
this.tree[httpPath] = {
|
130
|
+
path: path2,
|
131
|
+
contract,
|
132
|
+
procedure: void 0,
|
133
|
+
router
|
134
|
+
};
|
135
|
+
}
|
136
|
+
});
|
137
|
+
this.pendingRouters.push(...laziedOptions.map((option) => ({
|
138
|
+
...option,
|
139
|
+
httpPathPrefix: convertPathToHttpPath(option.path)
|
140
|
+
})));
|
141
|
+
}
|
142
|
+
async match(_method, pathname) {
|
143
|
+
if (this.pendingRouters.length) {
|
144
|
+
const newPendingRouters = [];
|
145
|
+
for (const pendingRouter of this.pendingRouters) {
|
146
|
+
if (pathname.startsWith(pendingRouter.httpPathPrefix)) {
|
147
|
+
const { default: router } = await unlazy(pendingRouter.lazied);
|
148
|
+
this.init(router, pendingRouter.path);
|
149
|
+
} else {
|
150
|
+
newPendingRouters.push(pendingRouter);
|
151
|
+
}
|
152
|
+
}
|
153
|
+
this.pendingRouters = newPendingRouters;
|
154
|
+
}
|
155
|
+
const match = this.tree[pathname];
|
156
|
+
if (!match) {
|
157
|
+
return void 0;
|
158
|
+
}
|
159
|
+
if (!match.procedure) {
|
160
|
+
const { default: maybeProcedure } = await unlazy(getRouterChild(match.router, ...match.path));
|
161
|
+
if (!isProcedure(maybeProcedure)) {
|
162
|
+
throw new Error(`
|
163
|
+
[Contract-First] Missing or invalid implementation for procedure at path: ${convertPathToHttpPath(match.path)}.
|
164
|
+
Ensure that the procedure is correctly defined and matches the expected contract.
|
165
|
+
`);
|
166
|
+
}
|
167
|
+
match.procedure = createContractedProcedure(match.contract, maybeProcedure);
|
168
|
+
}
|
169
|
+
return {
|
170
|
+
path: match.path,
|
171
|
+
procedure: match.procedure
|
172
|
+
};
|
173
|
+
}
|
174
|
+
};
|
175
|
+
|
176
|
+
export {
|
177
|
+
StandardHandler,
|
178
|
+
RPCCodec,
|
179
|
+
RPCMatcher
|
180
|
+
};
|
181
|
+
//# sourceMappingURL=chunk-77FU7QSO.js.map
|
@@ -1,9 +1,3 @@
|
|
1
|
-
var __defProp = Object.defineProperty;
|
2
|
-
var __export = (target, all) => {
|
3
|
-
for (var name in all)
|
4
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
5
|
-
};
|
6
|
-
|
7
1
|
// src/lazy.ts
|
8
2
|
var LAZY_LOADER_SYMBOL = Symbol("ORPC_LAZY_LOADER");
|
9
3
|
function lazy(loader) {
|
@@ -68,33 +62,74 @@ function middlewareOutputFn(output) {
|
|
68
62
|
}
|
69
63
|
|
70
64
|
// src/procedure-client.ts
|
71
|
-
import {
|
72
|
-
import {
|
65
|
+
import { ORPCError as ORPCError2 } from "@orpc/client";
|
66
|
+
import { ValidationError } from "@orpc/contract";
|
67
|
+
import { intercept, toError, value } from "@orpc/shared";
|
68
|
+
|
69
|
+
// src/error.ts
|
70
|
+
import { fallbackORPCErrorStatus, ORPCError } from "@orpc/client";
|
71
|
+
function createORPCErrorConstructorMap(errors) {
|
72
|
+
const proxy = new Proxy(errors, {
|
73
|
+
get(target, code) {
|
74
|
+
if (typeof code !== "string") {
|
75
|
+
return Reflect.get(target, code);
|
76
|
+
}
|
77
|
+
const item = (...[options]) => {
|
78
|
+
const config = errors[code];
|
79
|
+
return new ORPCError(code, {
|
80
|
+
defined: Boolean(config),
|
81
|
+
status: config?.status,
|
82
|
+
message: options?.message ?? config?.message,
|
83
|
+
data: options?.data,
|
84
|
+
cause: options?.cause
|
85
|
+
});
|
86
|
+
};
|
87
|
+
return item;
|
88
|
+
}
|
89
|
+
});
|
90
|
+
return proxy;
|
91
|
+
}
|
92
|
+
async function validateORPCError(map, error) {
|
93
|
+
const { code, status, message, data, cause, defined } = error;
|
94
|
+
const config = map?.[error.code];
|
95
|
+
if (!config || fallbackORPCErrorStatus(error.code, config.status) !== error.status) {
|
96
|
+
return defined ? new ORPCError(code, { defined: false, status, message, data, cause }) : error;
|
97
|
+
}
|
98
|
+
if (!config.data) {
|
99
|
+
return defined ? error : new ORPCError(code, { defined: true, status, message, data, cause });
|
100
|
+
}
|
101
|
+
const validated = await config.data["~standard"].validate(error.data);
|
102
|
+
if (validated.issues) {
|
103
|
+
return defined ? new ORPCError(code, { defined: false, status, message, data, cause }) : error;
|
104
|
+
}
|
105
|
+
return new ORPCError(code, { defined: true, status, message, data: validated.value, cause });
|
106
|
+
}
|
107
|
+
|
108
|
+
// src/procedure-client.ts
|
73
109
|
function createProcedureClient(lazyableProcedure, ...[options]) {
|
74
110
|
return async (...[input, callerOptions]) => {
|
75
111
|
const path = options?.path ?? [];
|
76
112
|
const { default: procedure } = await unlazy(lazyableProcedure);
|
77
|
-
const
|
113
|
+
const clientContext = callerOptions?.context ?? {};
|
114
|
+
const context = await value(options?.context ?? {}, clientContext);
|
78
115
|
const errors = createORPCErrorConstructorMap(procedure["~orpc"].errorMap);
|
79
|
-
const executeOptions = {
|
80
|
-
input,
|
81
|
-
context,
|
82
|
-
errors,
|
83
|
-
path,
|
84
|
-
procedure,
|
85
|
-
signal: callerOptions?.signal
|
86
|
-
};
|
87
116
|
try {
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
117
|
+
return await intercept(
|
118
|
+
options?.interceptors ?? [],
|
119
|
+
{
|
120
|
+
context,
|
121
|
+
input,
|
122
|
+
// input only optional when it undefinable so we can safely cast it
|
123
|
+
errors,
|
124
|
+
path,
|
125
|
+
procedure,
|
126
|
+
signal: callerOptions?.signal,
|
127
|
+
lastEventId: callerOptions?.lastEventId
|
128
|
+
},
|
129
|
+
(interceptorOptions) => executeProcedureInternal(interceptorOptions.procedure, interceptorOptions)
|
130
|
+
);
|
96
131
|
} catch (e) {
|
97
|
-
if (!(e instanceof
|
132
|
+
if (!(e instanceof ORPCError2)) {
|
98
133
|
throw toError(e);
|
99
134
|
}
|
100
135
|
const validated = await validateORPCError(procedure["~orpc"].errorMap, e);
|
@@ -109,7 +144,7 @@ async function validateInput(procedure, input) {
|
|
109
144
|
}
|
110
145
|
const result = await schema["~standard"].validate(input);
|
111
146
|
if (result.issues) {
|
112
|
-
throw new
|
147
|
+
throw new ORPCError2("BAD_REQUEST", {
|
113
148
|
message: "Input validation failed",
|
114
149
|
data: {
|
115
150
|
issues: result.issues
|
@@ -126,7 +161,7 @@ async function validateOutput(procedure, output) {
|
|
126
161
|
}
|
127
162
|
const result = await schema["~standard"].validate(output);
|
128
163
|
if (result.issues) {
|
129
|
-
throw new
|
164
|
+
throw new ORPCError2("INTERNAL_SERVER_ERROR", {
|
130
165
|
message: "Output validation failed",
|
131
166
|
cause: new ValidationError({ message: "Output validation failed", issues: result.issues })
|
132
167
|
});
|
@@ -296,8 +331,70 @@ function createAccessibleLazyRouter(lazied) {
|
|
296
331
|
return recursive;
|
297
332
|
}
|
298
333
|
|
334
|
+
// src/utils.ts
|
335
|
+
import { isContractProcedure as isContractProcedure2 } from "@orpc/contract";
|
336
|
+
function eachContractProcedure(options, callback, laziedOptions = []) {
|
337
|
+
const hiddenContract = getRouterContract(options.router);
|
338
|
+
if (hiddenContract) {
|
339
|
+
return eachContractProcedure(
|
340
|
+
{
|
341
|
+
router: hiddenContract,
|
342
|
+
path: options.path
|
343
|
+
},
|
344
|
+
callback,
|
345
|
+
laziedOptions
|
346
|
+
);
|
347
|
+
}
|
348
|
+
if (isLazy(options.router)) {
|
349
|
+
laziedOptions.push({
|
350
|
+
lazied: options.router,
|
351
|
+
path: options.path
|
352
|
+
});
|
353
|
+
} else if (isContractProcedure2(options.router)) {
|
354
|
+
callback({
|
355
|
+
contract: options.router,
|
356
|
+
path: options.path
|
357
|
+
});
|
358
|
+
} else {
|
359
|
+
for (const key in options.router) {
|
360
|
+
eachContractProcedure(
|
361
|
+
{
|
362
|
+
router: options.router[key],
|
363
|
+
path: [...options.path, key]
|
364
|
+
},
|
365
|
+
callback,
|
366
|
+
laziedOptions
|
367
|
+
);
|
368
|
+
}
|
369
|
+
}
|
370
|
+
return laziedOptions;
|
371
|
+
}
|
372
|
+
async function eachAllContractProcedure(options, callback) {
|
373
|
+
const pending = [options];
|
374
|
+
for (const item of pending) {
|
375
|
+
const lazies = eachContractProcedure(item, callback);
|
376
|
+
for (const lazy2 of lazies) {
|
377
|
+
const { default: router } = await unlazy(lazy2.lazied);
|
378
|
+
pending.push({
|
379
|
+
path: lazy2.path,
|
380
|
+
router
|
381
|
+
});
|
382
|
+
}
|
383
|
+
}
|
384
|
+
}
|
385
|
+
function convertPathToHttpPath(path) {
|
386
|
+
return `/${path.map(encodeURIComponent).join("/")}`;
|
387
|
+
}
|
388
|
+
function createContractedProcedure(contract, procedure) {
|
389
|
+
return new Procedure({
|
390
|
+
...procedure["~orpc"],
|
391
|
+
errorMap: contract["~orpc"].errorMap,
|
392
|
+
route: contract["~orpc"].route,
|
393
|
+
meta: contract["~orpc"].meta
|
394
|
+
});
|
395
|
+
}
|
396
|
+
|
299
397
|
export {
|
300
|
-
__export,
|
301
398
|
LAZY_LOADER_SYMBOL,
|
302
399
|
lazy,
|
303
400
|
isLazy,
|
@@ -315,6 +412,10 @@ export {
|
|
315
412
|
getLazyRouterPrefix,
|
316
413
|
createAccessibleLazyRouter,
|
317
414
|
adaptRouter,
|
318
|
-
getRouterChild
|
415
|
+
getRouterChild,
|
416
|
+
eachContractProcedure,
|
417
|
+
eachAllContractProcedure,
|
418
|
+
convertPathToHttpPath,
|
419
|
+
createContractedProcedure
|
319
420
|
};
|
320
|
-
//# sourceMappingURL=chunk-
|
421
|
+
//# sourceMappingURL=chunk-MHVECKBC.js.map
|
@@ -0,0 +1,120 @@
|
|
1
|
+
// src/plugins/base.ts
|
2
|
+
var CompositePlugin = class {
|
3
|
+
constructor(plugins = []) {
|
4
|
+
this.plugins = plugins;
|
5
|
+
}
|
6
|
+
init(options) {
|
7
|
+
for (const plugin of this.plugins) {
|
8
|
+
plugin.init?.(options);
|
9
|
+
}
|
10
|
+
}
|
11
|
+
};
|
12
|
+
|
13
|
+
// src/plugins/cors.ts
|
14
|
+
import { value } from "@orpc/shared";
|
15
|
+
var CORSPlugin = class {
|
16
|
+
options;
|
17
|
+
constructor(options) {
|
18
|
+
const defaults = {
|
19
|
+
origin: (origin) => origin,
|
20
|
+
allowMethods: ["GET", "HEAD", "PUT", "POST", "DELETE", "PATCH"]
|
21
|
+
};
|
22
|
+
this.options = {
|
23
|
+
...defaults,
|
24
|
+
...options
|
25
|
+
};
|
26
|
+
}
|
27
|
+
init(options) {
|
28
|
+
options.rootInterceptors ??= [];
|
29
|
+
options.rootInterceptors.unshift(async (interceptorOptions) => {
|
30
|
+
if (interceptorOptions.request.method === "OPTIONS") {
|
31
|
+
const resHeaders = {};
|
32
|
+
if (this.options.maxAge !== void 0) {
|
33
|
+
resHeaders["access-control-max-age"] = this.options.maxAge.toString();
|
34
|
+
}
|
35
|
+
if (this.options.allowMethods?.length) {
|
36
|
+
resHeaders["access-control-allow-methods"] = this.options.allowMethods.join(",");
|
37
|
+
}
|
38
|
+
const allowHeaders = this.options.allowHeaders ?? interceptorOptions.request.headers["access-control-request-headers"];
|
39
|
+
if (Array.isArray(allowHeaders) && allowHeaders.length) {
|
40
|
+
resHeaders["access-control-allow-headers"] = allowHeaders.join(",");
|
41
|
+
} else if (typeof allowHeaders === "string") {
|
42
|
+
resHeaders["access-control-allow-headers"] = allowHeaders;
|
43
|
+
}
|
44
|
+
return {
|
45
|
+
matched: true,
|
46
|
+
response: {
|
47
|
+
status: 204,
|
48
|
+
headers: resHeaders,
|
49
|
+
body: void 0
|
50
|
+
}
|
51
|
+
};
|
52
|
+
}
|
53
|
+
return interceptorOptions.next();
|
54
|
+
});
|
55
|
+
options.rootInterceptors.unshift(async (interceptorOptions) => {
|
56
|
+
const result = await interceptorOptions.next();
|
57
|
+
if (!result.matched) {
|
58
|
+
return result;
|
59
|
+
}
|
60
|
+
const origin = Array.isArray(interceptorOptions.request.headers.origin) ? interceptorOptions.request.headers.origin.join(",") : interceptorOptions.request.headers.origin || "";
|
61
|
+
const allowedOrigin = await value(this.options.origin, origin, interceptorOptions);
|
62
|
+
const allowedOriginArr = Array.isArray(allowedOrigin) ? allowedOrigin : [allowedOrigin];
|
63
|
+
if (allowedOriginArr.includes("*")) {
|
64
|
+
result.response.headers["access-control-allow-origin"] = "*";
|
65
|
+
} else {
|
66
|
+
if (allowedOriginArr.includes(origin)) {
|
67
|
+
result.response.headers["access-control-allow-origin"] = origin;
|
68
|
+
}
|
69
|
+
result.response.headers.vary = interceptorOptions.request.headers.vary ?? "origin";
|
70
|
+
}
|
71
|
+
const allowedTimingOrigin = await value(this.options.timingOrigin, origin, interceptorOptions);
|
72
|
+
const allowedTimingOriginArr = Array.isArray(allowedTimingOrigin) ? allowedTimingOrigin : [allowedTimingOrigin];
|
73
|
+
if (allowedTimingOriginArr.includes("*")) {
|
74
|
+
result.response.headers["timing-allow-origin"] = "*";
|
75
|
+
} else if (allowedTimingOriginArr.includes(origin)) {
|
76
|
+
result.response.headers["timing-allow-origin"] = origin;
|
77
|
+
}
|
78
|
+
if (this.options.credentials) {
|
79
|
+
result.response.headers["access-control-allow-credentials"] = "true";
|
80
|
+
}
|
81
|
+
if (this.options.exposeHeaders?.length) {
|
82
|
+
result.response.headers["access-control-expose-headers"] = this.options.exposeHeaders.join(",");
|
83
|
+
}
|
84
|
+
return result;
|
85
|
+
});
|
86
|
+
}
|
87
|
+
};
|
88
|
+
|
89
|
+
// src/plugins/response-headers.ts
|
90
|
+
var ResponseHeadersPlugin = class {
|
91
|
+
init(options) {
|
92
|
+
options.rootInterceptors ??= [];
|
93
|
+
options.rootInterceptors.push(async (interceptorOptions) => {
|
94
|
+
const headers = new Headers();
|
95
|
+
interceptorOptions.context.resHeaders = headers;
|
96
|
+
const result = await interceptorOptions.next();
|
97
|
+
if (!result.matched) {
|
98
|
+
return result;
|
99
|
+
}
|
100
|
+
const responseHeaders = result.response.headers;
|
101
|
+
for (const [key, value2] of headers) {
|
102
|
+
if (Array.isArray(responseHeaders[key])) {
|
103
|
+
responseHeaders[key].push(value2);
|
104
|
+
} else if (responseHeaders[key] !== void 0) {
|
105
|
+
responseHeaders[key] = [responseHeaders[key], value2];
|
106
|
+
} else {
|
107
|
+
responseHeaders[key] = value2;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
return result;
|
111
|
+
});
|
112
|
+
}
|
113
|
+
};
|
114
|
+
|
115
|
+
export {
|
116
|
+
CompositePlugin,
|
117
|
+
CORSPlugin,
|
118
|
+
ResponseHeadersPlugin
|
119
|
+
};
|
120
|
+
//# sourceMappingURL=chunk-WQNNSBXW.js.map
|
package/dist/fetch.js
CHANGED
@@ -1,15 +1,10 @@
|
|
1
|
-
import "./chunk-WUOGVGWG.js";
|
2
1
|
import {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
import "./chunk-KK4SDLC7.js";
|
2
|
+
RPCHandler
|
3
|
+
} from "./chunk-47YYO5JS.js";
|
4
|
+
import "./chunk-77FU7QSO.js";
|
5
|
+
import "./chunk-MHVECKBC.js";
|
6
|
+
import "./chunk-WQNNSBXW.js";
|
9
7
|
export {
|
10
|
-
|
11
|
-
ORPCProcedureMatcher,
|
12
|
-
RPCHandler,
|
13
|
-
super_json_exports as SuperJSON
|
8
|
+
RPCHandler
|
14
9
|
};
|
15
10
|
//# sourceMappingURL=fetch.js.map
|
package/dist/hono.js
CHANGED
@@ -1,30 +1,34 @@
|
|
1
|
-
import "./chunk-WUOGVGWG.js";
|
2
1
|
import {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
import "./chunk-KK4SDLC7.js";
|
2
|
+
RPCHandler
|
3
|
+
} from "./chunk-47YYO5JS.js";
|
4
|
+
import "./chunk-77FU7QSO.js";
|
5
|
+
import "./chunk-MHVECKBC.js";
|
6
|
+
import "./chunk-WQNNSBXW.js";
|
9
7
|
|
10
8
|
// src/adapters/hono/middleware.ts
|
11
9
|
import { value } from "@orpc/shared";
|
12
10
|
function createMiddleware(handler, ...[options]) {
|
13
11
|
return async (c, next) => {
|
12
|
+
const bodyProps = /* @__PURE__ */ new Set(["arrayBuffer", "blob", "formData", "json", "text"]);
|
13
|
+
const request = c.req.method === "GET" || c.req.method === "HEAD" ? c.req.raw : new Proxy(c.req.raw, {
|
14
|
+
// https://github.com/honojs/middleware/blob/main/packages/trpc-server/src/index.ts#L39
|
15
|
+
get(target, prop) {
|
16
|
+
if (bodyProps.has(prop)) {
|
17
|
+
return () => c.req[prop]();
|
18
|
+
}
|
19
|
+
return Reflect.get(target, prop, target);
|
20
|
+
}
|
21
|
+
});
|
14
22
|
const context = await value(options?.context ?? {}, c);
|
15
|
-
const { matched, response } = await handler.handle(
|
23
|
+
const { matched, response } = await handler.handle(request, { ...options, context });
|
16
24
|
if (matched) {
|
17
|
-
c.
|
18
|
-
return;
|
25
|
+
return c.newResponse(response.body, response);
|
19
26
|
}
|
20
27
|
await next();
|
21
28
|
};
|
22
29
|
}
|
23
30
|
export {
|
24
|
-
ORPCPayloadCodec,
|
25
|
-
ORPCProcedureMatcher,
|
26
31
|
RPCHandler,
|
27
|
-
super_json_exports as SuperJSON,
|
28
32
|
createMiddleware
|
29
33
|
};
|
30
34
|
//# sourceMappingURL=hono.js.map
|