@orpc/openapi 0.0.0-next.df024bb → 0.0.0-next.e0f01a5

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/index.mjs CHANGED
@@ -1,18 +1,13 @@
1
- import { isProcedure, eachAllContractProcedure } from '@orpc/server';
2
- import { OpenApiBuilder } from 'openapi3-ts/oas31';
3
- export { OpenApiBuilder } from 'openapi3-ts/oas31';
4
- import { findDeepMatches, isObject, get, omit, group } from '@orpc/shared';
5
- import { fallbackORPCErrorStatus } from '@orpc/client';
1
+ import { isProcedure, resolveContractProcedures } from '@orpc/server';
2
+ import { fallbackORPCErrorStatus, fallbackORPCErrorMessage } from '@orpc/client';
3
+ import { toHttpPath } from '@orpc/client/standard';
6
4
  import { fallbackContractConfig, getEventIteratorSchemaDetails } from '@orpc/contract';
7
- import { OpenAPIJsonSerializer } from '@orpc/openapi-client/standard';
8
- import * as draft202012 from 'json-schema-typed/draft-2020-12';
9
- export { draft202012 as JSONSchema };
5
+ import { standardizeHTTPPath, StandardOpenAPIJsonSerializer, getDynamicParams } from '@orpc/openapi-client/standard';
6
+ import { isObject, findDeepMatches, toArray, clone } from '@orpc/shared';
10
7
  export { Format as JSONSchemaFormat } from 'json-schema-typed/draft-2020-12';
11
- import { t as toOpenAPI31RoutePattern } from './shared/openapi.BHG_gu5Z.mjs';
12
- export { s as standardizeHTTPPath } from './shared/openapi.BHG_gu5Z.mjs';
13
8
 
14
9
  const OPERATION_EXTENDER_SYMBOL = Symbol("ORPC_OPERATION_EXTENDER");
15
- function setOperationExtender(o, extend) {
10
+ function customOpenAPIOperation(o, extend) {
16
11
  return new Proxy(o, {
17
12
  get(target, prop, receiver) {
18
13
  if (prop === OPERATION_EXTENDER_SYMBOL) {
@@ -22,248 +17,269 @@ function setOperationExtender(o, extend) {
22
17
  }
23
18
  });
24
19
  }
25
- function getOperationExtender(o) {
20
+ function getCustomOpenAPIOperation(o) {
26
21
  return o[OPERATION_EXTENDER_SYMBOL];
27
22
  }
28
- function extendOperation(operation, procedure) {
29
- const operationExtenders = [];
30
- for (const errorItem of Object.values(procedure["~orpc"].errorMap)) {
31
- const maybeExtender = getOperationExtender(errorItem);
23
+ function applyCustomOpenAPIOperation(operation, contract) {
24
+ const operationCustoms = [];
25
+ for (const errorItem of Object.values(contract["~orpc"].errorMap)) {
26
+ const maybeExtender = errorItem ? getCustomOpenAPIOperation(errorItem) : void 0;
32
27
  if (maybeExtender) {
33
- operationExtenders.push(maybeExtender);
28
+ operationCustoms.push(maybeExtender);
34
29
  }
35
30
  }
36
- if (isProcedure(procedure)) {
37
- for (const middleware of procedure["~orpc"].middlewares) {
38
- const maybeExtender = getOperationExtender(middleware);
31
+ if (isProcedure(contract)) {
32
+ for (const middleware of contract["~orpc"].middlewares) {
33
+ const maybeExtender = getCustomOpenAPIOperation(middleware);
39
34
  if (maybeExtender) {
40
- operationExtenders.push(maybeExtender);
35
+ operationCustoms.push(maybeExtender);
41
36
  }
42
37
  }
43
38
  }
44
39
  let currentOperation = operation;
45
- for (const extender of operationExtenders) {
46
- if (typeof extender === "function") {
47
- currentOperation = extender(currentOperation, procedure);
40
+ for (const custom of operationCustoms) {
41
+ if (typeof custom === "function") {
42
+ currentOperation = custom(currentOperation, contract);
48
43
  } else {
49
44
  currentOperation = {
50
45
  ...currentOperation,
51
- ...extender
46
+ ...custom
52
47
  };
53
48
  }
54
49
  }
55
50
  return currentOperation;
56
51
  }
57
52
 
58
- class OpenAPIContentBuilder {
59
- constructor(schemaUtils) {
60
- this.schemaUtils = schemaUtils;
61
- }
62
- build(jsonSchema, options) {
63
- const isFileSchema = this.schemaUtils.isFileSchema.bind(this.schemaUtils);
64
- const [matches, schema] = this.schemaUtils.filterSchemaBranches(jsonSchema, isFileSchema);
65
- const files = matches;
66
- const content = {};
67
- for (const file of files) {
68
- content[file.contentMediaType] = {
69
- schema: file
70
- };
71
- }
72
- const isStillHasFileSchema = findDeepMatches(isFileSchema, schema).values.length > 0;
73
- if (schema !== void 0) {
74
- content[isStillHasFileSchema ? "multipart/form-data" : "application/json"] = {
75
- schema,
76
- ...options
77
- };
78
- }
79
- return content;
80
- }
81
- }
53
+ const LOGIC_KEYWORDS = [
54
+ "$dynamicRef",
55
+ "$ref",
56
+ "additionalItems",
57
+ "additionalProperties",
58
+ "allOf",
59
+ "anyOf",
60
+ "const",
61
+ "contains",
62
+ "contentEncoding",
63
+ "contentMediaType",
64
+ "contentSchema",
65
+ "dependencies",
66
+ "dependentRequired",
67
+ "dependentSchemas",
68
+ "else",
69
+ "enum",
70
+ "exclusiveMaximum",
71
+ "exclusiveMinimum",
72
+ "format",
73
+ "if",
74
+ "items",
75
+ "maxContains",
76
+ "maximum",
77
+ "maxItems",
78
+ "maxLength",
79
+ "maxProperties",
80
+ "minContains",
81
+ "minimum",
82
+ "minItems",
83
+ "minLength",
84
+ "minProperties",
85
+ "multipleOf",
86
+ "not",
87
+ "oneOf",
88
+ "pattern",
89
+ "patternProperties",
90
+ "prefixItems",
91
+ "properties",
92
+ "propertyNames",
93
+ "required",
94
+ "then",
95
+ "type",
96
+ "unevaluatedItems",
97
+ "unevaluatedProperties",
98
+ "uniqueItems"
99
+ ];
82
100
 
83
- class OpenAPIError extends Error {
101
+ function isFileSchema(schema) {
102
+ return isObject(schema) && schema.type === "string" && typeof schema.contentMediaType === "string";
84
103
  }
85
-
86
- class OpenAPIInputStructureParser {
87
- constructor(schemaConverter, schemaUtils, pathParser) {
88
- this.schemaConverter = schemaConverter;
89
- this.schemaUtils = schemaUtils;
90
- this.pathParser = pathParser;
104
+ function isObjectSchema(schema) {
105
+ return isObject(schema) && schema.type === "object";
106
+ }
107
+ function isAnySchema(schema) {
108
+ if (schema === true) {
109
+ return true;
91
110
  }
92
- parse(contract, structure) {
93
- const inputSchema = this.schemaConverter.convert(contract["~orpc"].inputSchema, { strategy: "input" });
94
- const method = fallbackContractConfig("defaultMethod", contract["~orpc"].route?.method);
95
- const httpPath = contract["~orpc"].route?.path;
96
- if (this.schemaUtils.isAnySchema(inputSchema)) {
97
- return {
98
- paramsSchema: void 0,
99
- querySchema: void 0,
100
- headersSchema: void 0,
101
- bodySchema: void 0
102
- };
103
- }
104
- if (structure === "detailed") {
105
- return this.parseDetailedSchema(inputSchema);
106
- } else {
107
- return this.parseCompactSchema(inputSchema, method, httpPath);
108
- }
111
+ if (Object.keys(schema).every((k) => !LOGIC_KEYWORDS.includes(k))) {
112
+ return true;
109
113
  }
110
- parseDetailedSchema(inputSchema) {
111
- if (!this.schemaUtils.isObjectSchema(inputSchema)) {
112
- throw new OpenAPIError(`When input structure is 'detailed', input schema must be an object.`);
113
- }
114
- if (inputSchema.properties && Object.keys(inputSchema.properties).some((key) => !["params", "query", "headers", "body"].includes(key))) {
115
- throw new OpenAPIError(`When input structure is 'detailed', input schema must be only can contain 'params', 'query', 'headers' and 'body' properties.`);
116
- }
117
- let paramsSchema = inputSchema.properties?.params;
118
- let querySchema = inputSchema.properties?.query;
119
- let headersSchema = inputSchema.properties?.headers;
120
- const bodySchema = inputSchema.properties?.body;
121
- if (paramsSchema !== void 0 && this.schemaUtils.isAnySchema(paramsSchema)) {
122
- paramsSchema = void 0;
123
- }
124
- if (paramsSchema !== void 0 && !this.schemaUtils.isObjectSchema(paramsSchema)) {
125
- throw new OpenAPIError(`When input structure is 'detailed', params schema in input schema must be an object.`);
126
- }
127
- if (querySchema !== void 0 && this.schemaUtils.isAnySchema(querySchema)) {
128
- querySchema = void 0;
129
- }
130
- if (querySchema !== void 0 && !this.schemaUtils.isObjectSchema(querySchema)) {
131
- throw new OpenAPIError(`When input structure is 'detailed', query schema in input schema must be an object.`);
132
- }
133
- if (headersSchema !== void 0 && this.schemaUtils.isAnySchema(headersSchema)) {
134
- headersSchema = void 0;
114
+ return false;
115
+ }
116
+ function separateObjectSchema(schema, separatedProperties) {
117
+ if (Object.keys(schema).some((k) => k !== "type" && k !== "properties" && k !== "required" && LOGIC_KEYWORDS.includes(k))) {
118
+ return [{ type: "object" }, schema];
119
+ }
120
+ const matched = { ...schema };
121
+ const rest = { ...schema };
122
+ matched.properties = schema.properties && Object.entries(schema.properties).filter(([key]) => separatedProperties.includes(key)).reduce((acc, [key, value]) => {
123
+ acc[key] = value;
124
+ return acc;
125
+ }, {});
126
+ matched.required = schema.required?.filter((key) => separatedProperties.includes(key));
127
+ matched.examples = schema.examples?.map((example) => {
128
+ if (!isObject(example)) {
129
+ return example;
135
130
  }
136
- if (headersSchema !== void 0 && !this.schemaUtils.isObjectSchema(headersSchema)) {
137
- throw new OpenAPIError(`When input structure is 'detailed', headers schema in input schema must be an object.`);
131
+ return Object.entries(example).reduce((acc, [key, value]) => {
132
+ if (separatedProperties.includes(key)) {
133
+ acc[key] = value;
134
+ }
135
+ return acc;
136
+ }, {});
137
+ });
138
+ rest.properties = schema.properties && Object.entries(schema.properties).filter(([key]) => !separatedProperties.includes(key)).reduce((acc, [key, value]) => {
139
+ acc[key] = value;
140
+ return acc;
141
+ }, {});
142
+ rest.required = schema.required?.filter((key) => !separatedProperties.includes(key));
143
+ rest.examples = schema.examples?.map((example) => {
144
+ if (!isObject(example)) {
145
+ return example;
138
146
  }
139
- return { paramsSchema, querySchema, headersSchema, bodySchema };
147
+ return Object.entries(example).reduce((acc, [key, value]) => {
148
+ if (!separatedProperties.includes(key)) {
149
+ acc[key] = value;
150
+ }
151
+ return acc;
152
+ }, {});
153
+ });
154
+ return [matched, rest];
155
+ }
156
+ function filterSchemaBranches(schema, check, matches = []) {
157
+ if (check(schema)) {
158
+ matches.push(schema);
159
+ return [matches, void 0];
140
160
  }
141
- parseCompactSchema(inputSchema, method, httpPath) {
142
- const dynamic = httpPath ? this.pathParser.parseDynamicParams(httpPath) : [];
143
- if (dynamic.length === 0) {
144
- if (method === "GET") {
145
- let querySchema = inputSchema;
146
- if (querySchema !== void 0 && this.schemaUtils.isAnySchema(querySchema)) {
147
- querySchema = void 0;
148
- }
149
- if (querySchema !== void 0 && !this.schemaUtils.isObjectSchema(querySchema)) {
150
- throw new OpenAPIError(`When input structure is 'compact' and method is 'GET', input schema must be an object.`);
161
+ if (isObject(schema)) {
162
+ for (const keyword of ["anyOf", "oneOf"]) {
163
+ if (schema[keyword] && Object.keys(schema).every(
164
+ (k) => k === keyword || !LOGIC_KEYWORDS.includes(k)
165
+ )) {
166
+ const rest = schema[keyword].map((s) => filterSchemaBranches(s, check, matches)[1]).filter((v) => !!v);
167
+ if (rest.length === 1 && typeof rest[0] === "object") {
168
+ return [matches, { ...schema, [keyword]: void 0, ...rest[0] }];
151
169
  }
152
- return {
153
- paramsSchema: void 0,
154
- querySchema,
155
- headersSchema: void 0,
156
- bodySchema: void 0
157
- };
170
+ return [matches, { ...schema, [keyword]: rest }];
158
171
  }
159
- return {
160
- paramsSchema: void 0,
161
- querySchema: void 0,
162
- headersSchema: void 0,
163
- bodySchema: inputSchema
164
- };
165
- }
166
- if (!this.schemaUtils.isObjectSchema(inputSchema)) {
167
- throw new OpenAPIError(`When input structure is 'compact' and path has dynamic parameters, input schema must be an object.`);
168
172
  }
169
- const [params, rest] = this.schemaUtils.separateObjectSchema(inputSchema, dynamic.map((v) => v.name));
170
- return {
171
- paramsSchema: params,
172
- querySchema: method === "GET" ? rest : void 0,
173
- headersSchema: void 0,
174
- bodySchema: method !== "GET" ? rest : void 0
175
- };
176
173
  }
174
+ return [matches, schema];
175
+ }
176
+ function applySchemaOptionality(required, schema) {
177
+ if (required) {
178
+ return schema;
179
+ }
180
+ return {
181
+ anyOf: [
182
+ schema,
183
+ { not: {} }
184
+ ]
185
+ };
177
186
  }
178
187
 
179
- class OpenAPIOutputStructureParser {
180
- constructor(schemaConverter, schemaUtils) {
181
- this.schemaConverter = schemaConverter;
182
- this.schemaUtils = schemaUtils;
188
+ function toOpenAPIPath(path) {
189
+ return standardizeHTTPPath(path).replace(/\/\{\+([^}]+)\}/g, "/{$1}");
190
+ }
191
+ function toOpenAPIMethod(method) {
192
+ return method.toLocaleLowerCase();
193
+ }
194
+ function toOpenAPIContent(schema) {
195
+ const content = {};
196
+ const [matches, restSchema] = filterSchemaBranches(schema, isFileSchema);
197
+ for (const file of matches) {
198
+ content[file.contentMediaType] = {
199
+ schema: toOpenAPISchema(file)
200
+ };
183
201
  }
184
- parse(contract, structure) {
185
- const outputSchema = this.schemaConverter.convert(contract["~orpc"].outputSchema, { strategy: "output" });
186
- if (this.schemaUtils.isAnySchema(outputSchema)) {
187
- return {
188
- headersSchema: void 0,
189
- bodySchema: void 0
202
+ if (restSchema !== void 0) {
203
+ content["application/json"] = {
204
+ schema: toOpenAPISchema(restSchema)
205
+ };
206
+ const isStillHasFileSchema = findDeepMatches((v) => isObject(v) && isFileSchema(v), restSchema).values.length > 0;
207
+ if (isStillHasFileSchema) {
208
+ content["multipart/form-data"] = {
209
+ schema: toOpenAPISchema(restSchema)
190
210
  };
191
211
  }
192
- if (structure === "detailed") {
193
- return this.parseDetailedSchema(outputSchema);
194
- } else {
195
- return this.parseCompactSchema(outputSchema);
196
- }
197
212
  }
198
- parseDetailedSchema(outputSchema) {
199
- if (!this.schemaUtils.isObjectSchema(outputSchema)) {
200
- throw new OpenAPIError(`When output structure is 'detailed', output schema must be an object.`);
201
- }
202
- if (outputSchema.properties && Object.keys(outputSchema.properties).some((key) => !["headers", "body"].includes(key))) {
203
- throw new OpenAPIError(`When output structure is 'detailed', output schema must be only can contain 'headers' and 'body' properties.`);
204
- }
205
- let headersSchema = outputSchema.properties?.headers;
206
- const bodySchema = outputSchema.properties?.body;
207
- if (headersSchema !== void 0 && this.schemaUtils.isAnySchema(headersSchema)) {
208
- headersSchema = void 0;
209
- }
210
- if (headersSchema !== void 0 && !this.schemaUtils.isObjectSchema(headersSchema)) {
211
- throw new OpenAPIError(`When output structure is 'detailed', headers schema in output schema must be an object.`);
213
+ return content;
214
+ }
215
+ function toOpenAPIEventIteratorContent([yieldsRequired, yieldsSchema], [returnsRequired, returnsSchema]) {
216
+ return {
217
+ "text/event-stream": {
218
+ schema: toOpenAPISchema({
219
+ oneOf: [
220
+ {
221
+ type: "object",
222
+ properties: {
223
+ event: { const: "message" },
224
+ data: yieldsSchema,
225
+ id: { type: "string" },
226
+ retry: { type: "number" }
227
+ },
228
+ required: yieldsRequired ? ["event", "data"] : ["event"]
229
+ },
230
+ {
231
+ type: "object",
232
+ properties: {
233
+ event: { const: "done" },
234
+ data: returnsSchema,
235
+ id: { type: "string" },
236
+ retry: { type: "number" }
237
+ },
238
+ required: returnsRequired ? ["event", "data"] : ["event"]
239
+ },
240
+ {
241
+ type: "object",
242
+ properties: {
243
+ event: { const: "error" },
244
+ data: {},
245
+ id: { type: "string" },
246
+ retry: { type: "number" }
247
+ },
248
+ required: ["event"]
249
+ }
250
+ ]
251
+ })
212
252
  }
213
- return { headersSchema, bodySchema };
214
- }
215
- parseCompactSchema(outputSchema) {
216
- return {
217
- headersSchema: void 0,
218
- bodySchema: outputSchema
219
- };
253
+ };
254
+ }
255
+ function toOpenAPIParameters(schema, parameterIn) {
256
+ const parameters = [];
257
+ for (const key in schema.properties) {
258
+ const keySchema = schema.properties[key];
259
+ parameters.push({
260
+ name: key,
261
+ in: parameterIn,
262
+ required: schema.required?.includes(key),
263
+ style: parameterIn === "query" ? "deepObject" : void 0,
264
+ explode: parameterIn === "query" ? true : void 0,
265
+ schema: toOpenAPISchema(keySchema)
266
+ });
220
267
  }
268
+ return parameters;
221
269
  }
222
-
223
- class OpenAPIParametersBuilder {
224
- build(paramIn, jsonSchema, options) {
225
- const parameters = [];
226
- for (const name in jsonSchema.properties) {
227
- const schema = jsonSchema.properties[name];
228
- const paramExamples = jsonSchema.examples?.filter((example) => {
229
- return isObject(example) && name in example;
230
- }).map((example) => {
231
- return example[name];
232
- });
233
- const paramSchema = {
234
- examples: paramExamples?.length ? paramExamples : void 0,
235
- ...schema === true ? {} : schema === false ? { not: {} } : schema
236
- };
237
- const paramExample = get(options?.example, [name]);
238
- parameters.push({
239
- name,
240
- in: paramIn,
241
- required: typeof options?.required === "boolean" ? options.required : jsonSchema.required?.includes(name) ?? false,
242
- schema: paramSchema,
243
- example: paramExample,
244
- style: options?.style
245
- });
246
- }
247
- return parameters;
270
+ function checkParamsSchema(schema, params) {
271
+ const properties = Object.keys(schema.properties ?? {});
272
+ const required = schema.required ?? [];
273
+ if (properties.length !== params.length || properties.some((v) => !params.includes(v))) {
274
+ return false;
248
275
  }
249
- buildHeadersObject(jsonSchema, options) {
250
- const parameters = this.build("header", jsonSchema, options);
251
- const headersObject = {};
252
- for (const param of parameters) {
253
- headersObject[param.name] = omit(param, ["name", "in"]);
254
- }
255
- return headersObject;
276
+ if (required.length !== params.length || required.some((v) => !params.includes(v))) {
277
+ return false;
256
278
  }
279
+ return true;
257
280
  }
258
-
259
- class OpenAPIPathParser {
260
- parseDynamicParams(path) {
261
- const raws = path.match(/\{([^}]+)\}/g) ?? [];
262
- return raws.map((raw) => {
263
- const name = raw.slice(1, -1).split(":")[0];
264
- return { name, raw };
265
- });
266
- }
281
+ function toOpenAPISchema(schema) {
282
+ return schema === true ? {} : schema === false ? { not: {} } : schema;
267
283
  }
268
284
 
269
285
  class CompositeSchemaConverter {
@@ -271,327 +287,235 @@ class CompositeSchemaConverter {
271
287
  constructor(converters) {
272
288
  this.converters = converters;
273
289
  }
274
- condition() {
275
- return true;
276
- }
277
- convert(schema, options) {
290
+ async convert(schema, options) {
278
291
  for (const converter of this.converters) {
279
- if (converter.condition(schema, options)) {
292
+ if (await converter.condition(schema, options)) {
280
293
  return converter.convert(schema, options);
281
294
  }
282
295
  }
283
- return {};
296
+ return [false, {}];
284
297
  }
285
298
  }
286
299
 
287
- const NON_LOGIC_KEYWORDS = [
288
- // Core Documentation Keywords
289
- "$anchor",
290
- "$comment",
291
- "$defs",
292
- "$id",
293
- "title",
294
- "description",
295
- // Value Keywords
296
- "default",
297
- "deprecated",
298
- "examples",
299
- // Metadata Keywords
300
- "$schema",
301
- "definitions",
302
- // Legacy, but still used
303
- "readOnly",
304
- "writeOnly",
305
- // Display and UI Hints
306
- "contentMediaType",
307
- "contentEncoding",
308
- "format",
309
- // Custom Extensions
310
- "$vocabulary",
311
- "$dynamicAnchor",
312
- "$dynamicRef"
313
- ];
314
-
315
- class SchemaUtils {
316
- isFileSchema(schema) {
317
- return isObject(schema) && schema.type === "string" && typeof schema.contentMediaType === "string";
318
- }
319
- isObjectSchema(schema) {
320
- return isObject(schema) && schema.type === "object";
321
- }
322
- isAnySchema(schema) {
323
- return schema === true || Object.keys(schema).filter((key) => !NON_LOGIC_KEYWORDS.includes(key)).length === 0;
300
+ class OpenAPIGeneratorError extends Error {
301
+ }
302
+ class OpenAPIGenerator {
303
+ serializer;
304
+ converter;
305
+ constructor(options = {}) {
306
+ this.serializer = new StandardOpenAPIJsonSerializer(options);
307
+ this.converter = new CompositeSchemaConverter(toArray(options.schemaConverters));
324
308
  }
325
- isUndefinableSchema(schema) {
326
- const [matches] = this.filterSchemaBranches(schema, (schema2) => {
327
- if (typeof schema2 === "boolean") {
328
- return schema2;
329
- }
330
- return Object.keys(schema2).filter((key) => !NON_LOGIC_KEYWORDS.includes(key)).length === 0;
309
+ async generate(router, base) {
310
+ const doc = clone(base);
311
+ doc.openapi = "3.1.1";
312
+ const contracts = [];
313
+ await resolveContractProcedures({ path: [], router }, ({ contract, path }) => {
314
+ contracts.push({ contract, path });
331
315
  });
332
- return matches.length > 0;
316
+ const errors = [];
317
+ for (const { contract, path } of contracts) {
318
+ const operationId = path.join(".");
319
+ try {
320
+ const def = contract["~orpc"];
321
+ const method = toOpenAPIMethod(fallbackContractConfig("defaultMethod", def.route.method));
322
+ const httpPath = toOpenAPIPath(def.route.path ?? toHttpPath(path));
323
+ const operationObjectRef = {
324
+ operationId,
325
+ summary: def.route.summary,
326
+ description: def.route.description,
327
+ deprecated: def.route.deprecated,
328
+ tags: def.route.tags?.map((tag) => tag)
329
+ };
330
+ await this.#request(operationObjectRef, def);
331
+ await this.#successResponse(operationObjectRef, def);
332
+ await this.#errorResponse(operationObjectRef, def);
333
+ doc.paths ??= {};
334
+ doc.paths[httpPath] ??= {};
335
+ doc.paths[httpPath][method] = applyCustomOpenAPIOperation(operationObjectRef, contract);
336
+ } catch (e) {
337
+ if (!(e instanceof OpenAPIGeneratorError)) {
338
+ throw e;
339
+ }
340
+ errors.push(
341
+ `[OpenAPIGenerator] Error occurred while generating OpenAPI for procedure at path: ${operationId}
342
+ ${e.message}`
343
+ );
344
+ }
345
+ }
346
+ if (errors.length) {
347
+ throw new OpenAPIGeneratorError(
348
+ `Some error occurred during OpenAPI generation:
349
+
350
+ ${errors.join("\n\n")}`
351
+ );
352
+ }
353
+ return this.serializer.serialize(doc)[0];
333
354
  }
334
- separateObjectSchema(schema, separatedProperties) {
335
- const matched = { ...schema };
336
- const rest = { ...schema };
337
- matched.properties = Object.entries(schema.properties ?? {}).filter(([key]) => separatedProperties.includes(key)).reduce((acc, [key, value]) => {
338
- acc[key] = value;
339
- return acc;
340
- }, {});
341
- matched.required = schema.required?.filter((key) => separatedProperties.includes(key));
342
- matched.examples = schema.examples?.map((example) => {
343
- if (!isObject(example)) {
344
- return example;
355
+ async #request(ref, def) {
356
+ const method = fallbackContractConfig("defaultMethod", def.route.method);
357
+ const details = getEventIteratorSchemaDetails(def.inputSchema);
358
+ if (details) {
359
+ ref.requestBody = {
360
+ required: true,
361
+ content: toOpenAPIEventIteratorContent(
362
+ await this.converter.convert(details.yields, { strategy: "input" }),
363
+ await this.converter.convert(details.returns, { strategy: "input" })
364
+ )
365
+ };
366
+ return;
367
+ }
368
+ const dynamicParams = getDynamicParams(def.route.path)?.map((v) => v.name);
369
+ const inputStructure = fallbackContractConfig("defaultInputStructure", def.route.inputStructure);
370
+ let [required, schema] = await this.converter.convert(def.inputSchema, { strategy: "input" });
371
+ if (isAnySchema(schema) && !dynamicParams?.length) {
372
+ return;
373
+ }
374
+ if (inputStructure === "compact") {
375
+ if (dynamicParams?.length) {
376
+ const error2 = new OpenAPIGeneratorError(
377
+ 'When input structure is "compact", and path has dynamic params, input schema must be an object with all dynamic params as required.'
378
+ );
379
+ if (!isObjectSchema(schema)) {
380
+ throw error2;
381
+ }
382
+ const [paramsSchema, rest] = separateObjectSchema(schema, dynamicParams);
383
+ schema = rest;
384
+ required = rest.required ? rest.required.length !== 0 : false;
385
+ if (!checkParamsSchema(paramsSchema, dynamicParams)) {
386
+ throw error2;
387
+ }
388
+ ref.parameters ??= [];
389
+ ref.parameters.push(...toOpenAPIParameters(paramsSchema, "path"));
345
390
  }
346
- return Object.entries(example).reduce((acc, [key, value]) => {
347
- if (separatedProperties.includes(key)) {
348
- acc[key] = value;
391
+ if (method === "GET") {
392
+ if (!isObjectSchema(schema)) {
393
+ throw new OpenAPIGeneratorError(
394
+ 'When method is "GET", input schema must satisfy: object | any | unknown'
395
+ );
349
396
  }
350
- return acc;
351
- }, {});
352
- });
353
- rest.properties = Object.entries(schema.properties ?? {}).filter(([key]) => !separatedProperties.includes(key)).reduce((acc, [key, value]) => {
354
- acc[key] = value;
355
- return acc;
356
- }, {});
357
- rest.required = schema.required?.filter((key) => !separatedProperties.includes(key));
358
- rest.examples = schema.examples?.map((example) => {
359
- if (!isObject(example)) {
360
- return example;
397
+ ref.parameters ??= [];
398
+ ref.parameters.push(...toOpenAPIParameters(schema, "query"));
399
+ } else {
400
+ ref.requestBody = {
401
+ required,
402
+ content: toOpenAPIContent(schema)
403
+ };
361
404
  }
362
- return Object.entries(example).reduce((acc, [key, value]) => {
363
- if (!separatedProperties.includes(key)) {
364
- acc[key] = value;
405
+ return;
406
+ }
407
+ const error = new OpenAPIGeneratorError(
408
+ 'When input structure is "detailed", input schema must satisfy: { params?: Record<string, unknown>, query?: Record<string, unknown>, headers?: Record<string, unknown>, body?: unknown }'
409
+ );
410
+ if (!isObjectSchema(schema)) {
411
+ throw error;
412
+ }
413
+ if (dynamicParams?.length && (schema.properties?.params === void 0 || !isObjectSchema(schema.properties.params) || !checkParamsSchema(schema.properties.params, dynamicParams))) {
414
+ throw new OpenAPIGeneratorError(
415
+ 'When input structure is "detailed" and path has dynamic params, the "params" schema must be an object with all dynamic params as required.'
416
+ );
417
+ }
418
+ for (const from of ["params", "query", "headers"]) {
419
+ const fromSchema = schema.properties?.[from];
420
+ if (fromSchema !== void 0) {
421
+ if (!isObjectSchema(fromSchema)) {
422
+ throw error;
365
423
  }
366
- return acc;
367
- }, {});
368
- });
369
- return [matched, rest];
424
+ const parameterIn = from === "params" ? "path" : from === "headers" ? "header" : "query";
425
+ ref.parameters ??= [];
426
+ ref.parameters.push(...toOpenAPIParameters(fromSchema, parameterIn));
427
+ }
428
+ }
429
+ if (schema.properties?.body !== void 0) {
430
+ ref.requestBody = {
431
+ required: schema.required?.includes("body"),
432
+ content: toOpenAPIContent(schema.properties.body)
433
+ };
434
+ }
370
435
  }
371
- filterSchemaBranches(schema, check, matches = []) {
372
- if (check(schema)) {
373
- matches.push(schema);
374
- return [matches, void 0];
436
+ async #successResponse(ref, def) {
437
+ const outputSchema = def.outputSchema;
438
+ const status = fallbackContractConfig("defaultSuccessStatus", def.route.successStatus);
439
+ const description = fallbackContractConfig("defaultSuccessDescription", def.route?.successDescription);
440
+ const eventIteratorSchemaDetails = getEventIteratorSchemaDetails(outputSchema);
441
+ const outputStructure = fallbackContractConfig("defaultOutputStructure", def.route.outputStructure);
442
+ if (eventIteratorSchemaDetails) {
443
+ ref.responses ??= {};
444
+ ref.responses[status] = {
445
+ description,
446
+ content: toOpenAPIEventIteratorContent(
447
+ await this.converter.convert(eventIteratorSchemaDetails.yields, { strategy: "output" }),
448
+ await this.converter.convert(eventIteratorSchemaDetails.returns, { strategy: "output" })
449
+ )
450
+ };
451
+ return;
375
452
  }
376
- if (typeof schema === "boolean") {
377
- return [matches, schema];
453
+ const [required, json] = await this.converter.convert(outputSchema, { strategy: "output" });
454
+ ref.responses ??= {};
455
+ ref.responses[status] = {
456
+ description
457
+ };
458
+ if (outputStructure === "compact") {
459
+ ref.responses[status].content = toOpenAPIContent(applySchemaOptionality(required, json));
460
+ return;
378
461
  }
379
- if (schema.anyOf && Object.keys(schema).every(
380
- (k) => k === "anyOf" || NON_LOGIC_KEYWORDS.includes(k)
381
- )) {
382
- const anyOf = schema.anyOf.map((s) => this.filterSchemaBranches(s, check, matches)[1]).filter((v) => !!v);
383
- if (anyOf.length === 1 && typeof anyOf[0] === "object") {
384
- return [matches, { ...schema, anyOf: void 0, ...anyOf[0] }];
385
- }
386
- return [matches, { ...schema, anyOf }];
462
+ const error = new OpenAPIGeneratorError(
463
+ 'When output structure is "detailed", output schema must satisfy: { headers?: Record<string, unknown>, body?: unknown }'
464
+ );
465
+ if (!isObjectSchema(json)) {
466
+ throw error;
387
467
  }
388
- if (schema.oneOf && Object.keys(schema).every(
389
- (k) => k === "oneOf" || NON_LOGIC_KEYWORDS.includes(k)
390
- )) {
391
- const oneOf = schema.oneOf.map((s) => this.filterSchemaBranches(s, check, matches)[1]).filter((v) => !!v);
392
- if (oneOf.length === 1 && typeof oneOf[0] === "object") {
393
- return [matches, { ...schema, oneOf: void 0, ...oneOf[0] }];
468
+ if (json.properties?.headers !== void 0) {
469
+ if (!isObjectSchema(json.properties.headers)) {
470
+ throw error;
471
+ }
472
+ for (const key in json.properties.headers.properties) {
473
+ ref.responses[status].headers ??= {};
474
+ ref.responses[status].headers[key] = {
475
+ schema: toOpenAPISchema(json.properties.headers.properties[key]),
476
+ required: json.properties.headers.required?.includes(key)
477
+ };
394
478
  }
395
- return [matches, { ...schema, oneOf }];
396
479
  }
397
- return [matches, schema];
398
- }
399
- }
400
-
401
- class OpenAPIGenerator {
402
- contentBuilder;
403
- parametersBuilder;
404
- schemaConverter;
405
- schemaUtils;
406
- jsonSerializer;
407
- pathParser;
408
- inputStructureParser;
409
- outputStructureParser;
410
- errorHandlerStrategy;
411
- ignoreUndefinedPathProcedures;
412
- considerMissingTagDefinitionAsError;
413
- strictErrorResponses;
414
- constructor(options) {
415
- this.parametersBuilder = options?.parametersBuilder ?? new OpenAPIParametersBuilder();
416
- this.schemaConverter = new CompositeSchemaConverter(options?.schemaConverters ?? []);
417
- this.schemaUtils = options?.schemaUtils ?? new SchemaUtils();
418
- this.jsonSerializer = options?.jsonSerializer ?? new OpenAPIJsonSerializer();
419
- this.contentBuilder = options?.contentBuilder ?? new OpenAPIContentBuilder(this.schemaUtils);
420
- this.pathParser = new OpenAPIPathParser();
421
- this.inputStructureParser = options?.inputStructureParser ?? new OpenAPIInputStructureParser(this.schemaConverter, this.schemaUtils, this.pathParser);
422
- this.outputStructureParser = options?.outputStructureParser ?? new OpenAPIOutputStructureParser(this.schemaConverter, this.schemaUtils);
423
- this.errorHandlerStrategy = options?.errorHandlerStrategy ?? "throw";
424
- this.ignoreUndefinedPathProcedures = options?.ignoreUndefinedPathProcedures ?? false;
425
- this.considerMissingTagDefinitionAsError = options?.considerMissingTagDefinitionAsError ?? false;
426
- this.strictErrorResponses = options?.strictErrorResponses ?? true;
480
+ if (json.properties?.body !== void 0) {
481
+ ref.responses[status].content = toOpenAPIContent(
482
+ applySchemaOptionality(json.required?.includes("body") ?? false, json.properties.body)
483
+ );
484
+ }
427
485
  }
428
- async generate(router, doc) {
429
- const builder = new OpenApiBuilder({
430
- ...doc,
431
- openapi: "3.1.1"
432
- });
433
- const rootTags = doc.tags?.map((tag) => tag.name) ?? [];
434
- await eachAllContractProcedure({
435
- path: [],
436
- router
437
- }, ({ contract, path }) => {
438
- try {
439
- const def = contract["~orpc"];
440
- if (this.ignoreUndefinedPathProcedures && def.route?.path === void 0) {
441
- return;
442
- }
443
- const method = fallbackContractConfig("defaultMethod", def.route?.method);
444
- const httpPath = def.route?.path ? toOpenAPI31RoutePattern(def.route?.path) : `/${path.map(encodeURIComponent).join("/")}`;
445
- const { parameters, requestBody } = (() => {
446
- const eventIteratorSchemaDetails = getEventIteratorSchemaDetails(def.inputSchema);
447
- if (eventIteratorSchemaDetails) {
448
- const requestBody3 = {
449
- required: true,
450
- content: {
451
- "text/event-stream": {
452
- schema: {
453
- oneOf: [
454
- {
455
- type: "object",
456
- properties: {
457
- event: { type: "string", const: "message" },
458
- data: this.schemaConverter.convert(eventIteratorSchemaDetails.yields, { strategy: "input" }),
459
- id: { type: "string" },
460
- retry: { type: "number" }
461
- },
462
- required: ["event", "data"]
463
- },
464
- {
465
- type: "object",
466
- properties: {
467
- event: { type: "string", const: "done" },
468
- data: this.schemaConverter.convert(eventIteratorSchemaDetails.returns, { strategy: "input" }),
469
- id: { type: "string" },
470
- retry: { type: "number" }
471
- },
472
- required: ["event", "data"]
473
- },
474
- {
475
- type: "object",
476
- properties: {
477
- event: { type: "string", const: "error" },
478
- data: {},
479
- id: { type: "string" },
480
- retry: { type: "number" }
481
- },
482
- required: ["event", "data"]
483
- }
484
- ]
485
- }
486
- }
487
- }
488
- };
489
- return { requestBody: requestBody3, parameters: [] };
490
- }
491
- const inputStructure = fallbackContractConfig("defaultInputStructure", def.route?.inputStructure);
492
- const { paramsSchema, querySchema, headersSchema, bodySchema } = this.inputStructureParser.parse(contract, inputStructure);
493
- const params = paramsSchema ? this.parametersBuilder.build("path", paramsSchema, {
494
- required: true
495
- }) : [];
496
- const query = querySchema ? this.parametersBuilder.build("query", querySchema) : [];
497
- const headers = headersSchema ? this.parametersBuilder.build("header", headersSchema) : [];
498
- const parameters2 = [...params, ...query, ...headers];
499
- const requestBody2 = bodySchema !== void 0 ? {
500
- required: this.schemaUtils.isUndefinableSchema(bodySchema),
501
- content: this.contentBuilder.build(bodySchema)
502
- } : void 0;
503
- return { parameters: parameters2, requestBody: requestBody2 };
504
- })();
505
- const { responses } = (() => {
506
- const eventIteratorSchemaDetails = getEventIteratorSchemaDetails(def.outputSchema);
507
- if (eventIteratorSchemaDetails) {
508
- const responses3 = {};
509
- responses3[fallbackContractConfig("defaultSuccessStatus", def.route?.successStatus)] = {
510
- description: fallbackContractConfig("defaultSuccessDescription", def.route?.successDescription),
511
- content: {
512
- "text/event-stream": {
513
- schema: {
514
- oneOf: [
515
- {
516
- type: "object",
517
- properties: {
518
- event: { type: "string", const: "message" },
519
- data: this.schemaConverter.convert(eventIteratorSchemaDetails.yields, { strategy: "input" }),
520
- id: { type: "string" },
521
- retry: { type: "number" }
522
- },
523
- required: ["event", "data"]
524
- },
525
- {
526
- type: "object",
527
- properties: {
528
- event: { type: "string", const: "done" },
529
- data: this.schemaConverter.convert(eventIteratorSchemaDetails.returns, { strategy: "input" }),
530
- id: { type: "string" },
531
- retry: { type: "number" }
532
- },
533
- required: ["event", "data"]
534
- },
535
- {
536
- type: "object",
537
- properties: {
538
- event: { type: "string", const: "error" },
539
- data: {},
540
- id: { type: "string" },
541
- retry: { type: "number" }
542
- },
543
- required: ["event", "data"]
544
- }
545
- ]
546
- }
547
- }
548
- }
549
- };
550
- return { responses: responses3 };
551
- }
552
- const outputStructure = fallbackContractConfig("defaultOutputStructure", def.route?.outputStructure);
553
- const { headersSchema: resHeadersSchema, bodySchema: resBodySchema } = this.outputStructureParser.parse(contract, outputStructure);
554
- const responses2 = {};
555
- responses2[fallbackContractConfig("defaultSuccessStatus", def.route?.successStatus)] = {
556
- description: fallbackContractConfig("defaultSuccessDescription", def.route?.successDescription),
557
- content: resBodySchema !== void 0 ? this.contentBuilder.build(resBodySchema) : void 0,
558
- headers: resHeadersSchema !== void 0 ? this.parametersBuilder.buildHeadersObject(resHeadersSchema) : void 0
559
- };
560
- return { responses: responses2 };
561
- })();
562
- const errors = group(Object.entries(def.errorMap ?? {}).filter(([_, config]) => config).map(([code, config]) => ({
563
- ...config,
564
- code,
565
- status: fallbackORPCErrorStatus(code, config?.status)
566
- })), (error) => error.status);
567
- for (const status in errors) {
568
- const configs = errors[status];
569
- if (!configs || configs.length === 0) {
570
- continue;
571
- }
572
- const schemas = configs.map(({ data, code, message }) => {
573
- const json = {
574
- type: "object",
575
- properties: {
576
- defined: { const: true },
577
- code: { const: code },
578
- status: { const: Number(status) },
579
- message: { type: "string", default: message },
580
- data: {}
581
- },
582
- required: ["defined", "code", "status", "message"]
583
- };
584
- if (data) {
585
- const dataJson = this.schemaConverter.convert(data, { strategy: "output" });
586
- json.properties.data = dataJson;
587
- if (!this.schemaUtils.isUndefinableSchema(dataJson)) {
588
- json.required.push("data");
589
- }
590
- }
591
- return json;
592
- });
593
- if (this.strictErrorResponses) {
594
- schemas.push({
486
+ async #errorResponse(ref, def) {
487
+ const errorMap = def.errorMap;
488
+ const errors = {};
489
+ for (const code in errorMap) {
490
+ const config = errorMap[code];
491
+ if (!config) {
492
+ continue;
493
+ }
494
+ const status = fallbackORPCErrorStatus(code, config.status);
495
+ const message = fallbackORPCErrorMessage(code, config.message);
496
+ const [dataRequired, dataSchema] = await this.converter.convert(config.data, { strategy: "output" });
497
+ errors[status] ??= [];
498
+ errors[status].push({
499
+ type: "object",
500
+ properties: {
501
+ defined: { const: true },
502
+ code: { const: code },
503
+ status: { const: status },
504
+ message: { type: "string", default: message },
505
+ data: dataSchema
506
+ },
507
+ required: dataRequired ? ["defined", "code", "status", "message", "data"] : ["defined", "code", "status", "message"]
508
+ });
509
+ }
510
+ ref.responses ??= {};
511
+ for (const status in errors) {
512
+ const schemas = errors[status];
513
+ ref.responses[status] = {
514
+ description: status,
515
+ content: toOpenAPIContent({
516
+ oneOf: [
517
+ ...schemas,
518
+ {
595
519
  type: "object",
596
520
  properties: {
597
521
  defined: { const: false },
@@ -601,61 +525,16 @@ class OpenAPIGenerator {
601
525
  data: {}
602
526
  },
603
527
  required: ["defined", "code", "status", "message"]
604
- });
605
- }
606
- const contentSchema = schemas.length === 1 ? schemas[0] : {
607
- oneOf: schemas
608
- };
609
- responses[status] = {
610
- description: status,
611
- content: this.contentBuilder.build(contentSchema)
612
- };
613
- }
614
- if (this.considerMissingTagDefinitionAsError && def.route?.tags) {
615
- const missingTag = def.route?.tags.find((tag) => !rootTags.includes(tag));
616
- if (missingTag !== void 0) {
617
- throw new OpenAPIError(
618
- `Tag "${missingTag}" is missing definition. Please define it in OpenAPI root tags object`
619
- );
620
- }
621
- }
622
- const operation = {
623
- summary: def.route?.summary,
624
- description: def.route?.description,
625
- deprecated: def.route?.deprecated,
626
- tags: def.route?.tags ? [...def.route.tags] : void 0,
627
- operationId: path.join("."),
628
- parameters: parameters.length ? parameters : void 0,
629
- requestBody,
630
- responses
631
- };
632
- const extendedOperation = extendOperation(operation, contract);
633
- builder.addPath(httpPath, {
634
- [method.toLocaleLowerCase()]: extendedOperation
635
- });
636
- } catch (e) {
637
- if (e instanceof OpenAPIError) {
638
- const error = new OpenAPIError(`
639
- Generate OpenAPI Error: ${e.message}
640
- Happened at path: ${path.join(".")}
641
- `, { cause: e });
642
- if (this.errorHandlerStrategy === "throw") {
643
- throw error;
644
- }
645
- if (this.errorHandlerStrategy === "log") {
646
- console.error(error);
647
- }
648
- } else {
649
- throw e;
650
- }
651
- }
652
- });
653
- return this.jsonSerializer.serialize(builder.getSpec())[0];
528
+ }
529
+ ]
530
+ })
531
+ };
532
+ }
654
533
  }
655
534
  }
656
535
 
657
536
  const oo = {
658
- spec: setOperationExtender
537
+ spec: customOpenAPIOperation
659
538
  };
660
539
 
661
- export { CompositeSchemaConverter, NON_LOGIC_KEYWORDS, OpenAPIContentBuilder, OpenAPIGenerator, OpenAPIParametersBuilder, OpenAPIPathParser, SchemaUtils, extendOperation, getOperationExtender, oo, setOperationExtender, toOpenAPI31RoutePattern };
540
+ export { CompositeSchemaConverter, LOGIC_KEYWORDS, OpenAPIGenerator, applyCustomOpenAPIOperation, applySchemaOptionality, checkParamsSchema, customOpenAPIOperation, filterSchemaBranches, getCustomOpenAPIOperation, isAnySchema, isFileSchema, isObjectSchema, oo, separateObjectSchema, toOpenAPIContent, toOpenAPIEventIteratorContent, toOpenAPIMethod, toOpenAPIParameters, toOpenAPIPath, toOpenAPISchema };