@orpc/contract 0.0.0-next.eae6003 → 0.0.0-next.eaec0b2
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 +19 -16
- package/dist/index.d.mts +82 -268
- package/dist/index.d.ts +82 -268
- package/dist/index.mjs +97 -49
- package/dist/plugins/index.d.mts +43 -0
- package/dist/plugins/index.d.ts +43 -0
- package/dist/plugins/index.mjs +81 -0
- package/dist/shared/contract.D_dZrO__.mjs +53 -0
- package/dist/shared/contract.TuRtB1Ca.d.mts +254 -0
- package/dist/shared/contract.TuRtB1Ca.d.ts +254 -0
- package/package.json +15 -10
package/dist/index.mjs
CHANGED
|
@@ -1,44 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { i as isContractProcedure, C as ContractProcedure, m as mergeErrorMap, V as ValidationError } from './shared/contract.D_dZrO__.mjs';
|
|
2
|
+
export { v as validateORPCError } from './shared/contract.D_dZrO__.mjs';
|
|
3
|
+
import { toHttpPath } from '@orpc/client/standard';
|
|
4
|
+
import { toArray, isAsyncIteratorObject, get, isTypescriptObject, isPropertyKey } from '@orpc/shared';
|
|
5
|
+
export { AsyncIteratorClass } from '@orpc/shared';
|
|
6
|
+
import { mapEventIterator, ORPCError } from '@orpc/client';
|
|
2
7
|
export { ORPCError } from '@orpc/client';
|
|
3
|
-
import { isAsyncIteratorObject } from '@orpc/shared';
|
|
4
|
-
|
|
5
|
-
class ValidationError extends Error {
|
|
6
|
-
issues;
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options.message, options);
|
|
9
|
-
this.issues = options.issues;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
function mergeErrorMap(errorMap1, errorMap2) {
|
|
13
|
-
return { ...errorMap1, ...errorMap2 };
|
|
14
|
-
}
|
|
15
8
|
|
|
16
9
|
function mergeMeta(meta1, meta2) {
|
|
17
10
|
return { ...meta1, ...meta2 };
|
|
18
11
|
}
|
|
19
12
|
|
|
20
|
-
class ContractProcedure {
|
|
21
|
-
/**
|
|
22
|
-
* This property holds the defined options for the contract procedure.
|
|
23
|
-
*/
|
|
24
|
-
"~orpc";
|
|
25
|
-
constructor(def) {
|
|
26
|
-
if (def.route?.successStatus && isORPCErrorStatus(def.route.successStatus)) {
|
|
27
|
-
throw new Error("[ContractProcedure] Invalid successStatus.");
|
|
28
|
-
}
|
|
29
|
-
if (Object.values(def.errorMap).some((val) => val && val.status && !isORPCErrorStatus(val.status))) {
|
|
30
|
-
throw new Error("[ContractProcedure] Invalid error status code.");
|
|
31
|
-
}
|
|
32
|
-
this["~orpc"] = def;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
function isContractProcedure(item) {
|
|
36
|
-
if (item instanceof ContractProcedure) {
|
|
37
|
-
return true;
|
|
38
|
-
}
|
|
39
|
-
return (typeof item === "object" || typeof item === "function") && item !== null && "~orpc" in item && typeof item["~orpc"] === "object" && item["~orpc"] !== null && "errorMap" in item["~orpc"] && "route" in item["~orpc"] && "meta" in item["~orpc"];
|
|
40
|
-
}
|
|
41
|
-
|
|
42
13
|
function mergeRoute(a, b) {
|
|
43
14
|
return { ...a, ...b };
|
|
44
15
|
}
|
|
@@ -103,6 +74,43 @@ function enhanceContractRouter(router, options) {
|
|
|
103
74
|
}
|
|
104
75
|
return enhanced;
|
|
105
76
|
}
|
|
77
|
+
function minifyContractRouter(router) {
|
|
78
|
+
if (isContractProcedure(router)) {
|
|
79
|
+
const procedure = {
|
|
80
|
+
"~orpc": {
|
|
81
|
+
errorMap: {},
|
|
82
|
+
meta: router["~orpc"].meta,
|
|
83
|
+
route: router["~orpc"].route
|
|
84
|
+
}
|
|
85
|
+
};
|
|
86
|
+
return procedure;
|
|
87
|
+
}
|
|
88
|
+
const json = {};
|
|
89
|
+
for (const key in router) {
|
|
90
|
+
json[key] = minifyContractRouter(router[key]);
|
|
91
|
+
}
|
|
92
|
+
return json;
|
|
93
|
+
}
|
|
94
|
+
function populateContractRouterPaths(router, options = {}) {
|
|
95
|
+
const path = toArray(options.path);
|
|
96
|
+
if (isContractProcedure(router)) {
|
|
97
|
+
if (router["~orpc"].route.path === void 0) {
|
|
98
|
+
return new ContractProcedure({
|
|
99
|
+
...router["~orpc"],
|
|
100
|
+
route: {
|
|
101
|
+
...router["~orpc"].route,
|
|
102
|
+
path: toHttpPath(path)
|
|
103
|
+
}
|
|
104
|
+
});
|
|
105
|
+
}
|
|
106
|
+
return router;
|
|
107
|
+
}
|
|
108
|
+
const populated = {};
|
|
109
|
+
for (const key in router) {
|
|
110
|
+
populated[key] = populateContractRouterPaths(router[key], { ...options, path: [...path, key] });
|
|
111
|
+
}
|
|
112
|
+
return populated;
|
|
113
|
+
}
|
|
106
114
|
|
|
107
115
|
class ContractBuilder extends ContractProcedure {
|
|
108
116
|
constructor(def) {
|
|
@@ -113,7 +121,7 @@ class ContractBuilder extends ContractProcedure {
|
|
|
113
121
|
/**
|
|
114
122
|
* Sets or overrides the initial meta.
|
|
115
123
|
*
|
|
116
|
-
* @see {@link https://orpc.
|
|
124
|
+
* @see {@link https://orpc.dev/docs/metadata Metadata Docs}
|
|
117
125
|
*/
|
|
118
126
|
$meta(initialMeta) {
|
|
119
127
|
return new ContractBuilder({
|
|
@@ -125,8 +133,8 @@ class ContractBuilder extends ContractProcedure {
|
|
|
125
133
|
* Sets or overrides the initial route.
|
|
126
134
|
* This option is typically relevant when integrating with OpenAPI.
|
|
127
135
|
*
|
|
128
|
-
* @see {@link https://orpc.
|
|
129
|
-
* @see {@link https://orpc.
|
|
136
|
+
* @see {@link https://orpc.dev/docs/openapi/routing OpenAPI Routing Docs}
|
|
137
|
+
* @see {@link https://orpc.dev/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
130
138
|
*/
|
|
131
139
|
$route(initialRoute) {
|
|
132
140
|
return new ContractBuilder({
|
|
@@ -134,11 +142,22 @@ class ContractBuilder extends ContractProcedure {
|
|
|
134
142
|
route: initialRoute
|
|
135
143
|
});
|
|
136
144
|
}
|
|
145
|
+
/**
|
|
146
|
+
* Sets or overrides the initial input schema.
|
|
147
|
+
*
|
|
148
|
+
* @see {@link https://orpc.dev/docs/procedure#initial-configuration Initial Procedure Configuration Docs}
|
|
149
|
+
*/
|
|
150
|
+
$input(initialInputSchema) {
|
|
151
|
+
return new ContractBuilder({
|
|
152
|
+
...this["~orpc"],
|
|
153
|
+
inputSchema: initialInputSchema
|
|
154
|
+
});
|
|
155
|
+
}
|
|
137
156
|
/**
|
|
138
157
|
* Adds type-safe custom errors to the contract.
|
|
139
158
|
* The provided errors are spared-merged with any existing errors in the contract.
|
|
140
159
|
*
|
|
141
|
-
* @see {@link https://orpc.
|
|
160
|
+
* @see {@link https://orpc.dev/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
142
161
|
*/
|
|
143
162
|
errors(errors) {
|
|
144
163
|
return new ContractBuilder({
|
|
@@ -150,7 +169,7 @@ class ContractBuilder extends ContractProcedure {
|
|
|
150
169
|
* Sets or updates the metadata for the contract.
|
|
151
170
|
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
152
171
|
*
|
|
153
|
-
* @see {@link https://orpc.
|
|
172
|
+
* @see {@link https://orpc.dev/docs/metadata Metadata Docs}
|
|
154
173
|
*/
|
|
155
174
|
meta(meta) {
|
|
156
175
|
return new ContractBuilder({
|
|
@@ -163,8 +182,8 @@ class ContractBuilder extends ContractProcedure {
|
|
|
163
182
|
* The provided route is spared-merged with any existing route in the contract.
|
|
164
183
|
* This option is typically relevant when integrating with OpenAPI.
|
|
165
184
|
*
|
|
166
|
-
* @see {@link https://orpc.
|
|
167
|
-
* @see {@link https://orpc.
|
|
185
|
+
* @see {@link https://orpc.dev/docs/openapi/routing OpenAPI Routing Docs}
|
|
186
|
+
* @see {@link https://orpc.dev/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
168
187
|
*/
|
|
169
188
|
route(route) {
|
|
170
189
|
return new ContractBuilder({
|
|
@@ -175,7 +194,7 @@ class ContractBuilder extends ContractProcedure {
|
|
|
175
194
|
/**
|
|
176
195
|
* Defines the input validation schema for the contract.
|
|
177
196
|
*
|
|
178
|
-
* @see {@link https://orpc.
|
|
197
|
+
* @see {@link https://orpc.dev/docs/procedure#input-output-validation Input Validation Docs}
|
|
179
198
|
*/
|
|
180
199
|
input(schema) {
|
|
181
200
|
return new ContractBuilder({
|
|
@@ -186,7 +205,7 @@ class ContractBuilder extends ContractProcedure {
|
|
|
186
205
|
/**
|
|
187
206
|
* Defines the output validation schema for the contract.
|
|
188
207
|
*
|
|
189
|
-
* @see {@link https://orpc.
|
|
208
|
+
* @see {@link https://orpc.dev/docs/procedure#input-output-validation Output Validation Docs}
|
|
190
209
|
*/
|
|
191
210
|
output(schema) {
|
|
192
211
|
return new ContractBuilder({
|
|
@@ -200,7 +219,7 @@ class ContractBuilder extends ContractProcedure {
|
|
|
200
219
|
*
|
|
201
220
|
* @note This option does not affect procedures that do not define a path in their route definition.
|
|
202
221
|
*
|
|
203
|
-
* @see {@link https://orpc.
|
|
222
|
+
* @see {@link https://orpc.dev/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
|
|
204
223
|
*/
|
|
205
224
|
prefix(prefix) {
|
|
206
225
|
return new ContractBuilder({
|
|
@@ -212,7 +231,7 @@ class ContractBuilder extends ContractProcedure {
|
|
|
212
231
|
* Adds tags to all procedures in the contract router.
|
|
213
232
|
* This helpful when you want to group procedures together in the OpenAPI specification.
|
|
214
233
|
*
|
|
215
|
-
* @see {@link https://orpc.
|
|
234
|
+
* @see {@link https://orpc.dev/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
|
|
216
235
|
*/
|
|
217
236
|
tag(...tags) {
|
|
218
237
|
return new ContractBuilder({
|
|
@@ -223,7 +242,7 @@ class ContractBuilder extends ContractProcedure {
|
|
|
223
242
|
/**
|
|
224
243
|
* Applies all of the previously defined options to the specified contract router.
|
|
225
244
|
*
|
|
226
|
-
* @see {@link https://orpc.
|
|
245
|
+
* @see {@link https://orpc.dev/docs/router#extending-router Extending Router Docs}
|
|
227
246
|
*/
|
|
228
247
|
router(router) {
|
|
229
248
|
return enhanceContractRouter(router, this["~orpc"]);
|
|
@@ -272,7 +291,8 @@ function eventIterator(yields, returns) {
|
|
|
272
291
|
message: "Event iterator validation failed",
|
|
273
292
|
cause: new ValidationError({
|
|
274
293
|
issues: result.issues,
|
|
275
|
-
message: "Event iterator validation failed"
|
|
294
|
+
message: "Event iterator validation failed",
|
|
295
|
+
data: value
|
|
276
296
|
})
|
|
277
297
|
});
|
|
278
298
|
}
|
|
@@ -292,6 +312,19 @@ function getEventIteratorSchemaDetails(schema) {
|
|
|
292
312
|
return schema["~standard"][EVENT_ITERATOR_DETAILS_SYMBOL];
|
|
293
313
|
}
|
|
294
314
|
|
|
315
|
+
function inferRPCMethodFromContractRouter(contract) {
|
|
316
|
+
return (_, path) => {
|
|
317
|
+
const procedure = get(contract, path);
|
|
318
|
+
if (!isContractProcedure(procedure)) {
|
|
319
|
+
throw new Error(
|
|
320
|
+
`[inferRPCMethodFromContractRouter] No valid procedure found at path "${path.join(".")}". This may happen when the contract router is not properly configured.`
|
|
321
|
+
);
|
|
322
|
+
}
|
|
323
|
+
const method = fallbackContractConfig("defaultMethod", procedure["~orpc"].route.method);
|
|
324
|
+
return method === "HEAD" ? "GET" : method;
|
|
325
|
+
};
|
|
326
|
+
}
|
|
327
|
+
|
|
295
328
|
function type(...[map]) {
|
|
296
329
|
return {
|
|
297
330
|
"~standard": {
|
|
@@ -307,4 +340,19 @@ function type(...[map]) {
|
|
|
307
340
|
};
|
|
308
341
|
}
|
|
309
342
|
|
|
310
|
-
|
|
343
|
+
function isSchemaIssue(issue) {
|
|
344
|
+
if (!isTypescriptObject(issue) || typeof issue.message !== "string") {
|
|
345
|
+
return false;
|
|
346
|
+
}
|
|
347
|
+
if (issue.path !== void 0) {
|
|
348
|
+
if (!Array.isArray(issue.path)) {
|
|
349
|
+
return false;
|
|
350
|
+
}
|
|
351
|
+
if (!issue.path.every((segment) => isPropertyKey(segment) || isTypescriptObject(segment) && isPropertyKey(segment.key))) {
|
|
352
|
+
return false;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
return true;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
export { ContractBuilder, ContractProcedure, ValidationError, enhanceContractRouter, enhanceRoute, eventIterator, fallbackContractConfig, getContractRouter, getEventIteratorSchemaDetails, inferRPCMethodFromContractRouter, isContractProcedure, isSchemaIssue, mergeErrorMap, mergeMeta, mergePrefix, mergeRoute, mergeTags, minifyContractRouter, oc, populateContractRouterPaths, prefixRoute, type, unshiftTagRoute };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { ClientContext } from '@orpc/client';
|
|
2
|
+
import { StandardLinkPlugin, StandardLinkOptions } from '@orpc/client/standard';
|
|
3
|
+
import { A as AnyContractRouter } from '../shared/contract.TuRtB1Ca.mjs';
|
|
4
|
+
import '@orpc/shared';
|
|
5
|
+
import '@standard-schema/spec';
|
|
6
|
+
import 'openapi-types';
|
|
7
|
+
|
|
8
|
+
declare class RequestValidationPluginError extends Error {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* A link plugin that validates client requests against your contract schema,
|
|
12
|
+
* ensuring that data sent to your server matches the expected types defined in your contract.
|
|
13
|
+
*
|
|
14
|
+
* @throws {ORPCError} with code `BAD_REQUEST` (same as server side) if input doesn't match the expected schema
|
|
15
|
+
* @see {@link https://orpc.dev/docs/plugins/request-validation Request Validation Plugin Docs}
|
|
16
|
+
*/
|
|
17
|
+
declare class RequestValidationPlugin<T extends ClientContext> implements StandardLinkPlugin<T> {
|
|
18
|
+
private readonly contract;
|
|
19
|
+
constructor(contract: AnyContractRouter);
|
|
20
|
+
init(options: StandardLinkOptions<T>): void;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* A link plugin that validates server responses against your contract schema,
|
|
25
|
+
* ensuring that data returned from your server matches the expected types defined in your contract.
|
|
26
|
+
*
|
|
27
|
+
* - Throws `ValidationError` if output doesn't match the expected schema
|
|
28
|
+
* - Converts mismatched defined errors to normal `ORPCError` instances
|
|
29
|
+
*
|
|
30
|
+
* @see {@link https://orpc.dev/docs/plugins/response-validation Response Validation Plugin Docs}
|
|
31
|
+
*/
|
|
32
|
+
declare class ResponseValidationPlugin<T extends ClientContext> implements StandardLinkPlugin<T> {
|
|
33
|
+
private readonly contract;
|
|
34
|
+
constructor(contract: AnyContractRouter);
|
|
35
|
+
/**
|
|
36
|
+
* run before (validate after) retry plugin, because validation failed can't be retried
|
|
37
|
+
* run before (validate after) durable iterator plugin, because we expect durable iterator to validation (if user use it)
|
|
38
|
+
*/
|
|
39
|
+
order: number;
|
|
40
|
+
init(options: StandardLinkOptions<T>): void;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { RequestValidationPlugin, RequestValidationPluginError, ResponseValidationPlugin };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { ClientContext } from '@orpc/client';
|
|
2
|
+
import { StandardLinkPlugin, StandardLinkOptions } from '@orpc/client/standard';
|
|
3
|
+
import { A as AnyContractRouter } from '../shared/contract.TuRtB1Ca.js';
|
|
4
|
+
import '@orpc/shared';
|
|
5
|
+
import '@standard-schema/spec';
|
|
6
|
+
import 'openapi-types';
|
|
7
|
+
|
|
8
|
+
declare class RequestValidationPluginError extends Error {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* A link plugin that validates client requests against your contract schema,
|
|
12
|
+
* ensuring that data sent to your server matches the expected types defined in your contract.
|
|
13
|
+
*
|
|
14
|
+
* @throws {ORPCError} with code `BAD_REQUEST` (same as server side) if input doesn't match the expected schema
|
|
15
|
+
* @see {@link https://orpc.dev/docs/plugins/request-validation Request Validation Plugin Docs}
|
|
16
|
+
*/
|
|
17
|
+
declare class RequestValidationPlugin<T extends ClientContext> implements StandardLinkPlugin<T> {
|
|
18
|
+
private readonly contract;
|
|
19
|
+
constructor(contract: AnyContractRouter);
|
|
20
|
+
init(options: StandardLinkOptions<T>): void;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* A link plugin that validates server responses against your contract schema,
|
|
25
|
+
* ensuring that data returned from your server matches the expected types defined in your contract.
|
|
26
|
+
*
|
|
27
|
+
* - Throws `ValidationError` if output doesn't match the expected schema
|
|
28
|
+
* - Converts mismatched defined errors to normal `ORPCError` instances
|
|
29
|
+
*
|
|
30
|
+
* @see {@link https://orpc.dev/docs/plugins/response-validation Response Validation Plugin Docs}
|
|
31
|
+
*/
|
|
32
|
+
declare class ResponseValidationPlugin<T extends ClientContext> implements StandardLinkPlugin<T> {
|
|
33
|
+
private readonly contract;
|
|
34
|
+
constructor(contract: AnyContractRouter);
|
|
35
|
+
/**
|
|
36
|
+
* run before (validate after) retry plugin, because validation failed can't be retried
|
|
37
|
+
* run before (validate after) durable iterator plugin, because we expect durable iterator to validation (if user use it)
|
|
38
|
+
*/
|
|
39
|
+
order: number;
|
|
40
|
+
init(options: StandardLinkOptions<T>): void;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { RequestValidationPlugin, RequestValidationPluginError, ResponseValidationPlugin };
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { ORPCError } from '@orpc/client';
|
|
2
|
+
import { get } from '@orpc/shared';
|
|
3
|
+
import { i as isContractProcedure, V as ValidationError, v as validateORPCError } from '../shared/contract.D_dZrO__.mjs';
|
|
4
|
+
|
|
5
|
+
class RequestValidationPluginError extends Error {
|
|
6
|
+
}
|
|
7
|
+
class RequestValidationPlugin {
|
|
8
|
+
constructor(contract) {
|
|
9
|
+
this.contract = contract;
|
|
10
|
+
}
|
|
11
|
+
init(options) {
|
|
12
|
+
options.interceptors ??= [];
|
|
13
|
+
options.interceptors.push(async ({ next, path, input }) => {
|
|
14
|
+
const procedure = get(this.contract, path);
|
|
15
|
+
if (!isContractProcedure(procedure)) {
|
|
16
|
+
throw new RequestValidationPluginError(`No valid procedure found at path "${path.join(".")}", this may happen when the contract router is not properly configured.`);
|
|
17
|
+
}
|
|
18
|
+
const inputSchema = procedure["~orpc"].inputSchema;
|
|
19
|
+
if (inputSchema) {
|
|
20
|
+
const result = await inputSchema["~standard"].validate(input);
|
|
21
|
+
if (result.issues) {
|
|
22
|
+
throw new ORPCError("BAD_REQUEST", {
|
|
23
|
+
message: "Input validation failed",
|
|
24
|
+
data: {
|
|
25
|
+
issues: result.issues
|
|
26
|
+
},
|
|
27
|
+
cause: new ValidationError({
|
|
28
|
+
message: "Input validation failed",
|
|
29
|
+
issues: result.issues,
|
|
30
|
+
data: input
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
return await next();
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
class ResponseValidationPlugin {
|
|
41
|
+
constructor(contract) {
|
|
42
|
+
this.contract = contract;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* run before (validate after) retry plugin, because validation failed can't be retried
|
|
46
|
+
* run before (validate after) durable iterator plugin, because we expect durable iterator to validation (if user use it)
|
|
47
|
+
*/
|
|
48
|
+
order = 12e5;
|
|
49
|
+
init(options) {
|
|
50
|
+
options.interceptors ??= [];
|
|
51
|
+
options.interceptors.push(async ({ next, path }) => {
|
|
52
|
+
const procedure = get(this.contract, path);
|
|
53
|
+
if (!isContractProcedure(procedure)) {
|
|
54
|
+
throw new Error(`[ResponseValidationPlugin] no valid procedure found at path "${path.join(".")}", this may happen when the contract router is not properly configured.`);
|
|
55
|
+
}
|
|
56
|
+
try {
|
|
57
|
+
const output = await next();
|
|
58
|
+
const outputSchema = procedure["~orpc"].outputSchema;
|
|
59
|
+
if (!outputSchema) {
|
|
60
|
+
return output;
|
|
61
|
+
}
|
|
62
|
+
const result = await outputSchema["~standard"].validate(output);
|
|
63
|
+
if (result.issues) {
|
|
64
|
+
throw new ValidationError({
|
|
65
|
+
message: "Server response output does not match expected schema",
|
|
66
|
+
issues: result.issues,
|
|
67
|
+
data: output
|
|
68
|
+
});
|
|
69
|
+
}
|
|
70
|
+
return result.value;
|
|
71
|
+
} catch (e) {
|
|
72
|
+
if (e instanceof ORPCError) {
|
|
73
|
+
throw await validateORPCError(procedure["~orpc"].errorMap, e);
|
|
74
|
+
}
|
|
75
|
+
throw e;
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export { RequestValidationPlugin, RequestValidationPluginError, ResponseValidationPlugin };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { fallbackORPCErrorStatus, ORPCError, isORPCErrorStatus } from '@orpc/client';
|
|
2
|
+
|
|
3
|
+
class ValidationError extends Error {
|
|
4
|
+
issues;
|
|
5
|
+
data;
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options.message, options);
|
|
8
|
+
this.issues = options.issues;
|
|
9
|
+
this.data = options.data;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
function mergeErrorMap(errorMap1, errorMap2) {
|
|
13
|
+
return { ...errorMap1, ...errorMap2 };
|
|
14
|
+
}
|
|
15
|
+
async function validateORPCError(map, error) {
|
|
16
|
+
const { code, status, message, data, cause, defined } = error;
|
|
17
|
+
const config = map?.[error.code];
|
|
18
|
+
if (!config || fallbackORPCErrorStatus(error.code, config.status) !== error.status) {
|
|
19
|
+
return defined ? new ORPCError(code, { defined: false, status, message, data, cause }) : error;
|
|
20
|
+
}
|
|
21
|
+
if (!config.data) {
|
|
22
|
+
return defined ? error : new ORPCError(code, { defined: true, status, message, data, cause });
|
|
23
|
+
}
|
|
24
|
+
const validated = await config.data["~standard"].validate(error.data);
|
|
25
|
+
if (validated.issues) {
|
|
26
|
+
return defined ? new ORPCError(code, { defined: false, status, message, data, cause }) : error;
|
|
27
|
+
}
|
|
28
|
+
return new ORPCError(code, { defined: true, status, message, data: validated.value, cause });
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
class ContractProcedure {
|
|
32
|
+
/**
|
|
33
|
+
* This property holds the defined options for the contract procedure.
|
|
34
|
+
*/
|
|
35
|
+
"~orpc";
|
|
36
|
+
constructor(def) {
|
|
37
|
+
if (def.route?.successStatus && isORPCErrorStatus(def.route.successStatus)) {
|
|
38
|
+
throw new Error("[ContractProcedure] Invalid successStatus.");
|
|
39
|
+
}
|
|
40
|
+
if (Object.values(def.errorMap).some((val) => val && val.status && !isORPCErrorStatus(val.status))) {
|
|
41
|
+
throw new Error("[ContractProcedure] Invalid error status code.");
|
|
42
|
+
}
|
|
43
|
+
this["~orpc"] = def;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
function isContractProcedure(item) {
|
|
47
|
+
if (item instanceof ContractProcedure) {
|
|
48
|
+
return true;
|
|
49
|
+
}
|
|
50
|
+
return (typeof item === "object" || typeof item === "function") && item !== null && "~orpc" in item && typeof item["~orpc"] === "object" && item["~orpc"] !== null && "errorMap" in item["~orpc"] && "route" in item["~orpc"] && "meta" in item["~orpc"];
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export { ContractProcedure as C, ValidationError as V, isContractProcedure as i, mergeErrorMap as m, validateORPCError as v };
|