mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
43 lines
942 B
JavaScript
43 lines
942 B
JavaScript
// @flow
|
|
|
|
import YAML from 'yaml';
|
|
|
|
export function parseApiSpec(
|
|
rawDocument: string,
|
|
): {
|
|
contents: Object | null,
|
|
rawContents: string,
|
|
format: 'openapi' | 'swagger' | null,
|
|
formatVersion: string | null,
|
|
} {
|
|
const result = {
|
|
contents: null,
|
|
rawContents: rawDocument,
|
|
format: null,
|
|
formatVersion: null,
|
|
};
|
|
|
|
// NOTE: JSON is valid YAML so we only need to parse YAML
|
|
try {
|
|
result.contents = YAML.parse(rawDocument);
|
|
} catch (err) {
|
|
throw new Error('Failed to parse API spec');
|
|
}
|
|
|
|
if (result.contents) {
|
|
if (result.contents.openapi) {
|
|
// Check if it's OpenAPI
|
|
result.format = 'openapi';
|
|
result.formatVersion = result.contents.openapi;
|
|
} else if (result.contents.swagger) {
|
|
// Check if it's Swagger
|
|
result.format = 'swagger';
|
|
result.formatVersion = result.contents.swagger;
|
|
} else {
|
|
// Not sure what format it is
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|