mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 23:55:20 +00:00
165 lines
4.7 KiB
TypeScript
165 lines
4.7 KiB
TypeScript
import { toJSON, fromJSON } from 'flatted';
|
|
|
|
import {
|
|
type OpenAPIV3xDocument,
|
|
type Filesystem,
|
|
type OpenAPIV3,
|
|
type OpenAPIV3_1,
|
|
dereference,
|
|
} from '@gitbook/openapi-parser';
|
|
import { OpenAPIOperationData } from './types';
|
|
import { checkIsReference } from './utils';
|
|
|
|
export { toJSON, fromJSON };
|
|
|
|
/**
|
|
* Resolve an OpenAPI operation in a file and compile it to a more usable format.
|
|
*/
|
|
export async function resolveOpenAPIOperation(
|
|
filesystem: Filesystem<OpenAPIV3xDocument>,
|
|
operationDescriptor: {
|
|
path: string;
|
|
method: string;
|
|
},
|
|
): Promise<OpenAPIOperationData | null> {
|
|
const { path, method } = operationDescriptor;
|
|
const schema = await memoDereferenceFilesystem(filesystem);
|
|
let operation = getOperationByPathAndMethod(schema, path, method);
|
|
|
|
if (!operation) {
|
|
return null;
|
|
}
|
|
|
|
// Resolve common parameters
|
|
const commonParameters = getPathObjectParameter(schema, path);
|
|
if (commonParameters) {
|
|
operation = {
|
|
...operation,
|
|
parameters: [...commonParameters, ...(operation.parameters ?? [])],
|
|
};
|
|
}
|
|
|
|
const servers = 'servers' in schema ? (schema.servers ?? []) : [];
|
|
const security = flattenSecurities(operation.security ?? schema.security ?? []);
|
|
|
|
// Resolve securities
|
|
const securities: OpenAPIOperationData['securities'] = [];
|
|
for (const entry of security) {
|
|
const securityKey = Object.keys(entry)[0];
|
|
if (securityKey) {
|
|
const securityScheme = schema.components?.securitySchemes?.[securityKey];
|
|
if (securityScheme && !checkIsReference(securityScheme)) {
|
|
securities.push([securityKey, securityScheme]);
|
|
}
|
|
}
|
|
}
|
|
|
|
return {
|
|
servers,
|
|
operation,
|
|
method,
|
|
path,
|
|
securities,
|
|
'x-codeSamples':
|
|
typeof schema['x-codeSamples'] === 'boolean' ? schema['x-codeSamples'] : undefined,
|
|
'x-hideTryItPanel':
|
|
typeof schema['x-hideTryItPanel'] === 'boolean'
|
|
? schema['x-hideTryItPanel']
|
|
: undefined,
|
|
};
|
|
}
|
|
|
|
const dereferenceCache = new WeakMap<Filesystem, Promise<OpenAPIV3xDocument>>();
|
|
|
|
/**
|
|
* Memoized version of `dereferenceSchema`.
|
|
*/
|
|
function memoDereferenceFilesystem(filesystem: Filesystem): Promise<OpenAPIV3xDocument> {
|
|
if (dereferenceCache.has(filesystem)) {
|
|
return dereferenceCache.get(filesystem) as Promise<OpenAPIV3xDocument>;
|
|
}
|
|
|
|
const promise = dereferenceFilesystem(filesystem);
|
|
dereferenceCache.set(filesystem, promise);
|
|
return promise;
|
|
}
|
|
|
|
/**
|
|
* Dereference an OpenAPI schema.
|
|
*/
|
|
async function dereferenceFilesystem(filesystem: Filesystem): Promise<OpenAPIV3xDocument> {
|
|
const result = await dereference(filesystem);
|
|
|
|
if (!result.schema) {
|
|
throw new Error('Failed to dereference OpenAPI document');
|
|
}
|
|
|
|
return result.schema as OpenAPIV3xDocument;
|
|
}
|
|
|
|
/**
|
|
* Get a path object from its path.
|
|
*/
|
|
function getPathObject(
|
|
schema: OpenAPIV3.Document | OpenAPIV3_1.Document,
|
|
path: string,
|
|
): OpenAPIV3.PathItemObject | OpenAPIV3_1.PathItemObject | null {
|
|
if (schema.paths?.[path]) {
|
|
return schema.paths[path];
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Resolve parameters from a path in an OpenAPI schema.
|
|
*/
|
|
function getPathObjectParameter(
|
|
schema: OpenAPIV3.Document | OpenAPIV3_1.Document,
|
|
path: string,
|
|
):
|
|
| (OpenAPIV3.ReferenceObject | OpenAPIV3.ParameterObject)[]
|
|
| (OpenAPIV3.ParameterObject | OpenAPIV3_1.ReferenceObject)[]
|
|
| null {
|
|
const pathObject = getPathObject(schema, path);
|
|
if (pathObject?.parameters) {
|
|
return pathObject.parameters;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Get an operation by its path and method.
|
|
*/
|
|
function getOperationByPathAndMethod(
|
|
schema: OpenAPIV3.Document | OpenAPIV3_1.Document,
|
|
path: string,
|
|
method: string,
|
|
): OpenAPIV3.OperationObject | null {
|
|
// Types are buffy for OpenAPIV3_1.OperationObject, so we use v3
|
|
const pathObject = getPathObject(schema, path);
|
|
if (!pathObject) {
|
|
return null;
|
|
}
|
|
const normalizedMethod = method.toLowerCase();
|
|
if (!pathObject[normalizedMethod]) {
|
|
return null;
|
|
}
|
|
return pathObject[normalizedMethod];
|
|
}
|
|
|
|
/**
|
|
* Flatten security objects in case they are nested.
|
|
* @example [{bearerAuth:[], basicAuth:[]}] => [{ bearerAuth: [] }, { basicAuth: [] }]
|
|
*/
|
|
function flattenSecurities(security: OpenAPIV3.SecurityRequirementObject[]) {
|
|
if (!Array.isArray(security) || security.length === 0) {
|
|
return [];
|
|
}
|
|
|
|
return security.flatMap((securityObject) => {
|
|
return Object.entries(securityObject).map(([authType, config]) => ({
|
|
[authType]: config,
|
|
}));
|
|
});
|
|
}
|