@orpc/server 0.0.0-next.0f053ee → 0.0.0-next.141bae5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. package/dist/chunk-3BAPJGK6.js +302 -0
  2. package/dist/{chunk-6A7XHEBH.js → chunk-E7GUWVR4.js} +12 -15
  3. package/dist/chunk-WUOGVGWG.js +1 -0
  4. package/dist/fetch.js +7 -316
  5. package/dist/hono.js +30 -0
  6. package/dist/index.js +9 -6
  7. package/dist/next.js +36 -0
  8. package/dist/node.js +87 -0
  9. package/dist/src/{fetch → adapters/fetch}/index.d.ts +0 -1
  10. package/dist/src/adapters/fetch/orpc-handler.d.ts +20 -0
  11. package/dist/src/{fetch → adapters/fetch}/orpc-procedure-matcher.d.ts +2 -2
  12. package/dist/src/adapters/fetch/types.d.ts +21 -0
  13. package/dist/src/adapters/hono/index.d.ts +3 -0
  14. package/dist/src/adapters/hono/middleware.d.ts +12 -0
  15. package/dist/src/adapters/next/index.d.ts +3 -0
  16. package/dist/src/adapters/next/serve.d.ts +19 -0
  17. package/dist/src/adapters/node/index.d.ts +5 -0
  18. package/dist/src/adapters/node/orpc-handler.d.ts +12 -0
  19. package/dist/src/adapters/node/request-listener.d.ts +28 -0
  20. package/dist/src/adapters/node/types.d.ts +22 -0
  21. package/dist/src/builder.d.ts +2 -2
  22. package/dist/src/index.d.ts +1 -0
  23. package/dist/src/middleware.d.ts +16 -6
  24. package/dist/src/procedure-builder.d.ts +2 -2
  25. package/dist/src/procedure-implementer.d.ts +2 -2
  26. package/dist/src/procedure.d.ts +11 -4
  27. package/dist/src/types.d.ts +2 -0
  28. package/package.json +24 -8
  29. package/dist/src/fetch/composite-handler.d.ts +0 -8
  30. package/dist/src/fetch/orpc-handler.d.ts +0 -20
  31. package/dist/src/fetch/types.d.ts +0 -16
  32. /package/dist/src/{fetch → adapters/fetch}/orpc-payload-codec.d.ts +0 -0
  33. /package/dist/src/{fetch → adapters/fetch}/super-json.d.ts +0 -0
@@ -0,0 +1,302 @@
1
+ import {
2
+ __export,
3
+ createProcedureClient,
4
+ getRouterChild,
5
+ isProcedure,
6
+ unlazy
7
+ } from "./chunk-E7GUWVR4.js";
8
+
9
+ // src/adapters/fetch/super-json.ts
10
+ var super_json_exports = {};
11
+ __export(super_json_exports, {
12
+ deserialize: () => deserialize,
13
+ serialize: () => serialize
14
+ });
15
+
16
+ // ../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/getType.js
17
+ function getType(payload) {
18
+ return Object.prototype.toString.call(payload).slice(8, -1);
19
+ }
20
+
21
+ // ../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isPlainObject.js
22
+ function isPlainObject(payload) {
23
+ if (getType(payload) !== "Object")
24
+ return false;
25
+ const prototype = Object.getPrototypeOf(payload);
26
+ return !!prototype && prototype.constructor === Object && prototype === Object.prototype;
27
+ }
28
+
29
+ // src/adapters/fetch/super-json.ts
30
+ function serialize(value, segments = [], meta = []) {
31
+ if (typeof value === "bigint") {
32
+ meta.push(["bigint", segments]);
33
+ return { data: value.toString(), meta };
34
+ }
35
+ if (value instanceof Date) {
36
+ meta.push(["date", segments]);
37
+ const data = Number.isNaN(value.getTime()) ? "Invalid Date" : value.toISOString();
38
+ return { data, meta };
39
+ }
40
+ if (Number.isNaN(value)) {
41
+ meta.push(["nan", segments]);
42
+ return { data: "NaN", meta };
43
+ }
44
+ if (value instanceof RegExp) {
45
+ meta.push(["regexp", segments]);
46
+ return { data: value.toString(), meta };
47
+ }
48
+ if (value instanceof URL) {
49
+ meta.push(["url", segments]);
50
+ return { data: value.toString(), meta };
51
+ }
52
+ if (isPlainObject(value)) {
53
+ const data = {};
54
+ for (const k in value) {
55
+ data[k] = serialize(value[k], [...segments, k], meta).data;
56
+ }
57
+ return { data, meta };
58
+ }
59
+ if (Array.isArray(value)) {
60
+ const data = value.map((v, i) => {
61
+ if (v === void 0) {
62
+ meta.push(["undefined", [...segments, i]]);
63
+ return null;
64
+ }
65
+ return serialize(v, [...segments, i], meta).data;
66
+ });
67
+ return { data, meta };
68
+ }
69
+ if (value instanceof Set) {
70
+ const result = serialize(Array.from(value), segments, meta);
71
+ meta.push(["set", segments]);
72
+ return result;
73
+ }
74
+ if (value instanceof Map) {
75
+ const result = serialize(Array.from(value.entries()), segments, meta);
76
+ meta.push(["map", segments]);
77
+ return result;
78
+ }
79
+ return { data: value, meta };
80
+ }
81
+ function deserialize({
82
+ data,
83
+ meta
84
+ }) {
85
+ if (meta.length === 0) {
86
+ return data;
87
+ }
88
+ const ref = { data };
89
+ for (const [type, segments] of meta) {
90
+ let currentRef = ref;
91
+ let preSegment = "data";
92
+ for (let i = 0; i < segments.length; i++) {
93
+ currentRef = currentRef[preSegment];
94
+ preSegment = segments[i];
95
+ }
96
+ switch (type) {
97
+ case "nan":
98
+ currentRef[preSegment] = Number.NaN;
99
+ break;
100
+ case "bigint":
101
+ currentRef[preSegment] = BigInt(currentRef[preSegment]);
102
+ break;
103
+ case "date":
104
+ currentRef[preSegment] = new Date(currentRef[preSegment]);
105
+ break;
106
+ case "regexp": {
107
+ const [, pattern, flags] = currentRef[preSegment].match(/^\/(.*)\/([a-z]*)$/);
108
+ currentRef[preSegment] = new RegExp(pattern, flags);
109
+ break;
110
+ }
111
+ case "url":
112
+ currentRef[preSegment] = new URL(currentRef[preSegment]);
113
+ break;
114
+ case "undefined":
115
+ currentRef[preSegment] = void 0;
116
+ break;
117
+ case "map":
118
+ currentRef[preSegment] = new Map(currentRef[preSegment]);
119
+ break;
120
+ case "set":
121
+ currentRef[preSegment] = new Set(currentRef[preSegment]);
122
+ break;
123
+ /* v8 ignore next 3 */
124
+ default: {
125
+ const _expected = type;
126
+ }
127
+ }
128
+ }
129
+ return ref.data;
130
+ }
131
+
132
+ // src/adapters/fetch/orpc-payload-codec.ts
133
+ import { findDeepMatches, set } from "@orpc/shared";
134
+ import { ORPCError } from "@orpc/shared/error";
135
+ var ORPCPayloadCodec = class {
136
+ /**
137
+ * If method is GET, the payload will be encoded as query string.
138
+ * If method is GET and payload contain file, the method will be fallback to fallbackMethod. (fallbackMethod = GET will force to use GET method)
139
+ */
140
+ encode(payload, method = "POST", fallbackMethod = "POST") {
141
+ const { data, meta } = serialize(payload);
142
+ const { maps, values } = findDeepMatches((v) => v instanceof Blob, data);
143
+ if (method === "GET" && (values.length === 0 || fallbackMethod === "GET")) {
144
+ const query = new URLSearchParams({
145
+ data: JSON.stringify(data),
146
+ meta: JSON.stringify(meta)
147
+ });
148
+ return {
149
+ query,
150
+ method: "GET"
151
+ };
152
+ }
153
+ const nonGETMethod = method === "GET" ? fallbackMethod : method;
154
+ if (values.length > 0) {
155
+ const form = new FormData();
156
+ if (data !== void 0) {
157
+ form.append("data", JSON.stringify(data));
158
+ }
159
+ form.append("meta", JSON.stringify(meta));
160
+ form.append("maps", JSON.stringify(maps));
161
+ for (const i in values) {
162
+ const value = values[i];
163
+ form.append(i, value);
164
+ }
165
+ return {
166
+ body: form,
167
+ method: nonGETMethod
168
+ };
169
+ }
170
+ return {
171
+ body: JSON.stringify({ data, meta }),
172
+ headers: new Headers({
173
+ "content-type": "application/json"
174
+ }),
175
+ method: nonGETMethod
176
+ };
177
+ }
178
+ async decode(re) {
179
+ try {
180
+ if ("method" in re && re.method === "GET") {
181
+ const url = new URL(re.url);
182
+ const query = url.searchParams;
183
+ const data = JSON.parse(query.getAll("data").at(-1));
184
+ const meta = JSON.parse(query.getAll("meta").at(-1));
185
+ return deserialize({
186
+ data,
187
+ meta
188
+ });
189
+ }
190
+ if (re.headers.get("content-type")?.startsWith("multipart/form-data")) {
191
+ const form = await re.formData();
192
+ const rawData = form.get("data");
193
+ const rawMeta = form.get("meta");
194
+ const rawMaps = form.get("maps");
195
+ let data = JSON.parse(rawData);
196
+ const meta = JSON.parse(rawMeta);
197
+ const maps = JSON.parse(rawMaps);
198
+ for (const i in maps) {
199
+ data = set(data, maps[i], form.get(i));
200
+ }
201
+ return deserialize({
202
+ data,
203
+ meta
204
+ });
205
+ }
206
+ const json = await re.json();
207
+ return deserialize(json);
208
+ } catch (e) {
209
+ throw new ORPCError({
210
+ code: "BAD_REQUEST",
211
+ message: "Cannot parse request/response. Please check the request/response body and Content-Type header.",
212
+ cause: e
213
+ });
214
+ }
215
+ }
216
+ };
217
+
218
+ // src/adapters/fetch/orpc-procedure-matcher.ts
219
+ import { trim } from "@orpc/shared";
220
+ var ORPCProcedureMatcher = class {
221
+ constructor(router) {
222
+ this.router = router;
223
+ }
224
+ async match(pathname) {
225
+ const path = trim(pathname, "/").split("/").map(decodeURIComponent);
226
+ const match = getRouterChild(this.router, ...path);
227
+ const { default: maybeProcedure } = await unlazy(match);
228
+ if (!isProcedure(maybeProcedure)) {
229
+ return void 0;
230
+ }
231
+ return {
232
+ procedure: maybeProcedure,
233
+ path
234
+ };
235
+ }
236
+ };
237
+
238
+ // src/adapters/fetch/orpc-handler.ts
239
+ import { executeWithHooks, trim as trim2 } from "@orpc/shared";
240
+ import { ORPCError as ORPCError2 } from "@orpc/shared/error";
241
+ var ORPCHandler = class {
242
+ constructor(router, options) {
243
+ this.options = options;
244
+ this.procedureMatcher = options?.procedureMatcher ?? new ORPCProcedureMatcher(router);
245
+ this.payloadCodec = options?.payloadCodec ?? new ORPCPayloadCodec();
246
+ }
247
+ procedureMatcher;
248
+ payloadCodec;
249
+ async handle(request, ...[options]) {
250
+ const context = options?.context;
251
+ const execute = async () => {
252
+ const url = new URL(request.url);
253
+ const pathname = `/${trim2(url.pathname.replace(options?.prefix ?? "", ""), "/")}`;
254
+ const match = await this.procedureMatcher.match(pathname);
255
+ if (!match) {
256
+ return { matched: false, response: void 0 };
257
+ }
258
+ const input = await this.payloadCodec.decode(request);
259
+ const client = createProcedureClient({
260
+ context,
261
+ procedure: match.procedure,
262
+ path: match.path
263
+ });
264
+ const output = await client(input, { signal: request.signal });
265
+ const { body, headers } = this.payloadCodec.encode(output);
266
+ const response = new Response(body, { headers });
267
+ return { matched: true, response };
268
+ };
269
+ try {
270
+ const result = await executeWithHooks({
271
+ context,
272
+ execute,
273
+ input: request,
274
+ hooks: this.options,
275
+ meta: {
276
+ signal: request.signal
277
+ }
278
+ });
279
+ return result;
280
+ } catch (e) {
281
+ const error = e instanceof ORPCError2 ? e : new ORPCError2({
282
+ code: "INTERNAL_SERVER_ERROR",
283
+ message: "Internal server error",
284
+ cause: e
285
+ });
286
+ const { body, headers } = this.payloadCodec.encode(error.toJSON());
287
+ const response = new Response(body, {
288
+ headers,
289
+ status: error.status
290
+ });
291
+ return { matched: true, response };
292
+ }
293
+ }
294
+ };
295
+
296
+ export {
297
+ super_json_exports,
298
+ ORPCPayloadCodec,
299
+ ORPCProcedureMatcher,
300
+ ORPCHandler
301
+ };
302
+ //# sourceMappingURL=chunk-3BAPJGK6.js.map
@@ -74,12 +74,13 @@ function createProcedureClient(options) {
74
74
  };
75
75
  const executeWithValidation = async () => {
76
76
  const validInput = await validateInput(procedure, input);
77
- const output = await executeMiddlewareChain(
78
- procedure,
79
- validInput,
77
+ const output = await executeMiddlewareChain({
80
78
  context,
81
- meta
82
- );
79
+ input: validInput,
80
+ path,
81
+ procedure,
82
+ signal: callerOptions?.signal
83
+ });
83
84
  return validateOutput(procedure, output);
84
85
  };
85
86
  return executeWithHooks({
@@ -119,23 +120,19 @@ async function validateOutput(procedure, output) {
119
120
  }
120
121
  return result.value;
121
122
  }
122
- async function executeMiddlewareChain(procedure, input, context, meta) {
123
- const middlewares = procedure["~orpc"].middlewares ?? [];
123
+ async function executeMiddlewareChain(opt) {
124
+ const middlewares = opt.procedure["~orpc"].middlewares ?? [];
124
125
  let currentMidIndex = 0;
125
- let currentContext = context;
126
+ let currentContext = opt.context;
126
127
  const next = async (nextOptions) => {
127
128
  const mid = middlewares[currentMidIndex];
128
129
  currentMidIndex += 1;
129
130
  currentContext = mergeContext(currentContext, nextOptions.context);
130
131
  if (mid) {
131
- return await mid(input, currentContext, {
132
- ...meta,
133
- next,
134
- output: (output) => ({ output, context: void 0 })
135
- });
132
+ return await mid({ ...opt, context: currentContext, next }, opt.input, (output) => ({ output, context: void 0 }));
136
133
  }
137
134
  const result = {
138
- output: await procedure["~orpc"].handler(input, currentContext, meta),
135
+ output: await opt.procedure["~orpc"].handler({ ...opt, context: currentContext }),
139
136
  context: currentContext
140
137
  };
141
138
  return result;
@@ -186,4 +183,4 @@ export {
186
183
  createProcedureClient,
187
184
  getRouterChild
188
185
  };
189
- //# sourceMappingURL=chunk-6A7XHEBH.js.map
186
+ //# sourceMappingURL=chunk-E7GUWVR4.js.map
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=chunk-WUOGVGWG.js.map
package/dist/fetch.js CHANGED
@@ -1,321 +1,12 @@
1
+ import "./chunk-WUOGVGWG.js";
1
2
  import {
2
- __export,
3
- createProcedureClient,
4
- getRouterChild,
5
- isProcedure,
6
- unlazy
7
- } from "./chunk-6A7XHEBH.js";
8
-
9
- // src/fetch/composite-handler.ts
10
- var CompositeHandler = class {
11
- constructor(handlers) {
12
- this.handlers = handlers;
13
- }
14
- async fetch(request, ...opt) {
15
- for (const handler of this.handlers) {
16
- if (handler.condition(request)) {
17
- return handler.fetch(request, ...opt);
18
- }
19
- }
20
- return new Response("None of the handlers can handle the request.", {
21
- status: 404
22
- });
23
- }
24
- };
25
-
26
- // src/fetch/orpc-handler.ts
27
- import { executeWithHooks, ORPC_HANDLER_HEADER, ORPC_HANDLER_VALUE, trim as trim2 } from "@orpc/shared";
28
- import { ORPCError as ORPCError2 } from "@orpc/shared/error";
29
-
30
- // src/fetch/orpc-payload-codec.ts
31
- import { findDeepMatches, set } from "@orpc/shared";
32
- import { ORPCError } from "@orpc/shared/error";
33
-
34
- // src/fetch/super-json.ts
35
- var super_json_exports = {};
36
- __export(super_json_exports, {
37
- deserialize: () => deserialize,
38
- serialize: () => serialize
39
- });
40
-
41
- // ../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/getType.js
42
- function getType(payload) {
43
- return Object.prototype.toString.call(payload).slice(8, -1);
44
- }
45
-
46
- // ../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isPlainObject.js
47
- function isPlainObject(payload) {
48
- if (getType(payload) !== "Object")
49
- return false;
50
- const prototype = Object.getPrototypeOf(payload);
51
- return !!prototype && prototype.constructor === Object && prototype === Object.prototype;
52
- }
53
-
54
- // src/fetch/super-json.ts
55
- function serialize(value, segments = [], meta = []) {
56
- if (typeof value === "bigint") {
57
- meta.push(["bigint", segments]);
58
- return { data: value.toString(), meta };
59
- }
60
- if (value instanceof Date) {
61
- meta.push(["date", segments]);
62
- const data = Number.isNaN(value.getTime()) ? "Invalid Date" : value.toISOString();
63
- return { data, meta };
64
- }
65
- if (Number.isNaN(value)) {
66
- meta.push(["nan", segments]);
67
- return { data: "NaN", meta };
68
- }
69
- if (value instanceof RegExp) {
70
- meta.push(["regexp", segments]);
71
- return { data: value.toString(), meta };
72
- }
73
- if (value instanceof URL) {
74
- meta.push(["url", segments]);
75
- return { data: value.toString(), meta };
76
- }
77
- if (isPlainObject(value)) {
78
- const data = {};
79
- for (const k in value) {
80
- data[k] = serialize(value[k], [...segments, k], meta).data;
81
- }
82
- return { data, meta };
83
- }
84
- if (Array.isArray(value)) {
85
- const data = value.map((v, i) => {
86
- if (v === void 0) {
87
- meta.push(["undefined", [...segments, i]]);
88
- return null;
89
- }
90
- return serialize(v, [...segments, i], meta).data;
91
- });
92
- return { data, meta };
93
- }
94
- if (value instanceof Set) {
95
- const result = serialize(Array.from(value), segments, meta);
96
- meta.push(["set", segments]);
97
- return result;
98
- }
99
- if (value instanceof Map) {
100
- const result = serialize(Array.from(value.entries()), segments, meta);
101
- meta.push(["map", segments]);
102
- return result;
103
- }
104
- return { data: value, meta };
105
- }
106
- function deserialize({
107
- data,
108
- meta
109
- }) {
110
- if (meta.length === 0) {
111
- return data;
112
- }
113
- const ref = { data };
114
- for (const [type, segments] of meta) {
115
- let currentRef = ref;
116
- let preSegment = "data";
117
- for (let i = 0; i < segments.length; i++) {
118
- currentRef = currentRef[preSegment];
119
- preSegment = segments[i];
120
- }
121
- switch (type) {
122
- case "nan":
123
- currentRef[preSegment] = Number.NaN;
124
- break;
125
- case "bigint":
126
- currentRef[preSegment] = BigInt(currentRef[preSegment]);
127
- break;
128
- case "date":
129
- currentRef[preSegment] = new Date(currentRef[preSegment]);
130
- break;
131
- case "regexp": {
132
- const [, pattern, flags] = currentRef[preSegment].match(/^\/(.*)\/([a-z]*)$/);
133
- currentRef[preSegment] = new RegExp(pattern, flags);
134
- break;
135
- }
136
- case "url":
137
- currentRef[preSegment] = new URL(currentRef[preSegment]);
138
- break;
139
- case "undefined":
140
- currentRef[preSegment] = void 0;
141
- break;
142
- case "map":
143
- currentRef[preSegment] = new Map(currentRef[preSegment]);
144
- break;
145
- case "set":
146
- currentRef[preSegment] = new Set(currentRef[preSegment]);
147
- break;
148
- /* v8 ignore next 3 */
149
- default: {
150
- const _expected = type;
151
- }
152
- }
153
- }
154
- return ref.data;
155
- }
156
-
157
- // src/fetch/orpc-payload-codec.ts
158
- var ORPCPayloadCodec = class {
159
- /**
160
- * If method is GET, the payload will be encoded as query string.
161
- * If method is GET and payload contain file, the method will be fallback to fallbackMethod. (fallbackMethod = GET will force to use GET method)
162
- */
163
- encode(payload, method = "POST", fallbackMethod = "POST") {
164
- const { data, meta } = serialize(payload);
165
- const { maps, values } = findDeepMatches((v) => v instanceof Blob, data);
166
- if (method === "GET" && (values.length === 0 || fallbackMethod === "GET")) {
167
- const query = new URLSearchParams({
168
- data: JSON.stringify(data),
169
- meta: JSON.stringify(meta)
170
- });
171
- return {
172
- query,
173
- method: "GET"
174
- };
175
- }
176
- const nonGETMethod = method === "GET" ? fallbackMethod : method;
177
- if (values.length > 0) {
178
- const form = new FormData();
179
- if (data !== void 0) {
180
- form.append("data", JSON.stringify(data));
181
- }
182
- form.append("meta", JSON.stringify(meta));
183
- form.append("maps", JSON.stringify(maps));
184
- for (const i in values) {
185
- const value = values[i];
186
- form.append(i, value);
187
- }
188
- return {
189
- body: form,
190
- method: nonGETMethod
191
- };
192
- }
193
- return {
194
- body: JSON.stringify({ data, meta }),
195
- headers: new Headers({
196
- "content-type": "application/json"
197
- }),
198
- method: nonGETMethod
199
- };
200
- }
201
- async decode(re) {
202
- try {
203
- if ("method" in re && re.method === "GET") {
204
- const url = new URL(re.url);
205
- const query = url.searchParams;
206
- const data = JSON.parse(query.getAll("data").at(-1));
207
- const meta = JSON.parse(query.getAll("meta").at(-1));
208
- return deserialize({
209
- data,
210
- meta
211
- });
212
- }
213
- if (re.headers.get("content-type")?.startsWith("multipart/form-data")) {
214
- const form = await re.formData();
215
- const rawData = form.get("data");
216
- const rawMeta = form.get("meta");
217
- const rawMaps = form.get("maps");
218
- let data = JSON.parse(rawData);
219
- const meta = JSON.parse(rawMeta);
220
- const maps = JSON.parse(rawMaps);
221
- for (const i in maps) {
222
- data = set(data, maps[i], form.get(i));
223
- }
224
- return deserialize({
225
- data,
226
- meta
227
- });
228
- }
229
- const json = await re.json();
230
- return deserialize(json);
231
- } catch (e) {
232
- throw new ORPCError({
233
- code: "BAD_REQUEST",
234
- message: "Cannot parse request/response. Please check the request/response body and Content-Type header.",
235
- cause: e
236
- });
237
- }
238
- }
239
- };
240
-
241
- // src/fetch/orpc-procedure-matcher.ts
242
- import { trim } from "@orpc/shared";
243
- var ORPCProcedureMatcher = class {
244
- constructor(router) {
245
- this.router = router;
246
- }
247
- async match(pathname) {
248
- const path = trim(pathname, "/").split("/").map(decodeURIComponent);
249
- const match = getRouterChild(this.router, ...path);
250
- const { default: maybeProcedure } = await unlazy(match);
251
- if (!isProcedure(maybeProcedure)) {
252
- return void 0;
253
- }
254
- return {
255
- procedure: maybeProcedure,
256
- path
257
- };
258
- }
259
- };
260
-
261
- // src/fetch/orpc-handler.ts
262
- var ORPCHandler = class {
263
- constructor(router, options) {
264
- this.router = router;
265
- this.options = options;
266
- this.procedureMatcher = options?.procedureMatcher ?? new ORPCProcedureMatcher(router);
267
- this.payloadCodec = options?.payloadCodec ?? new ORPCPayloadCodec();
268
- }
269
- procedureMatcher;
270
- payloadCodec;
271
- condition(request) {
272
- return Boolean(request.headers.get(ORPC_HANDLER_HEADER)?.includes(ORPC_HANDLER_VALUE));
273
- }
274
- async fetch(request, ...[options]) {
275
- const context = options?.context;
276
- const execute = async () => {
277
- const url = new URL(request.url);
278
- const pathname = `/${trim2(url.pathname.replace(options?.prefix ?? "", ""), "/")}`;
279
- const match = await this.procedureMatcher.match(pathname);
280
- if (!match) {
281
- throw new ORPCError2({ code: "NOT_FOUND", message: "Not found" });
282
- }
283
- const input = await this.payloadCodec.decode(request);
284
- const client = createProcedureClient({
285
- context,
286
- procedure: match.procedure,
287
- path: match.path
288
- });
289
- const output = await client(input, { signal: options?.signal });
290
- const { body, headers } = this.payloadCodec.encode(output);
291
- return new Response(body, { headers });
292
- };
293
- try {
294
- return await executeWithHooks({
295
- context,
296
- execute,
297
- input: request,
298
- hooks: this.options,
299
- meta: {
300
- signal: options?.signal
301
- }
302
- });
303
- } catch (e) {
304
- const error = e instanceof ORPCError2 ? e : new ORPCError2({
305
- code: "INTERNAL_SERVER_ERROR",
306
- message: "Internal server error",
307
- cause: e
308
- });
309
- const { body, headers } = this.payloadCodec.encode(error.toJSON());
310
- return new Response(body, {
311
- headers,
312
- status: error.status
313
- });
314
- }
315
- }
316
- };
3
+ ORPCHandler,
4
+ ORPCPayloadCodec,
5
+ ORPCProcedureMatcher,
6
+ super_json_exports
7
+ } from "./chunk-3BAPJGK6.js";
8
+ import "./chunk-E7GUWVR4.js";
317
9
  export {
318
- CompositeHandler,
319
10
  ORPCHandler,
320
11
  ORPCPayloadCodec,
321
12
  ORPCProcedureMatcher,