2021-09-11 16:12:23 +00:00
|
|
|
import { refs, Schema } from '@/misc/schema';
|
2019-04-23 13:35:26 +00:00
|
|
|
|
|
|
|
export function convertSchemaToOpenApiSchema(schema: Schema) {
|
|
|
|
const res: any = schema;
|
|
|
|
|
|
|
|
if (schema.type === 'object' && schema.properties) {
|
2019-05-05 00:27:55 +00:00
|
|
|
res.required = Object.entries(schema.properties).filter(([k, v]) => !v.optional).map(([k]) => k);
|
2019-04-23 13:35:26 +00:00
|
|
|
|
|
|
|
for (const k of Object.keys(schema.properties)) {
|
|
|
|
res.properties[k] = convertSchemaToOpenApiSchema(schema.properties[k]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (schema.type === 'array' && schema.items) {
|
|
|
|
res.items = convertSchemaToOpenApiSchema(schema.items);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (schema.ref) {
|
|
|
|
res.$ref = `#/components/schemas/${schema.ref}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2019-02-23 19:08:08 +00:00
|
|
|
export const schemas = {
|
|
|
|
Error: {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
error: {
|
|
|
|
type: 'object',
|
|
|
|
description: 'An error object.',
|
|
|
|
properties: {
|
|
|
|
code: {
|
|
|
|
type: 'string',
|
2019-02-23 19:27:09 +00:00
|
|
|
description: 'An error code. Unique within the endpoint.',
|
2019-02-23 19:08:08 +00:00
|
|
|
},
|
|
|
|
message: {
|
|
|
|
type: 'string',
|
|
|
|
description: 'An error message.',
|
|
|
|
},
|
|
|
|
id: {
|
|
|
|
type: 'string',
|
|
|
|
format: 'uuid',
|
|
|
|
description: 'An error ID. This ID is static.',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
required: ['code', 'id', 'message']
|
|
|
|
},
|
|
|
|
},
|
|
|
|
required: ['error']
|
|
|
|
},
|
|
|
|
|
2021-09-11 16:12:23 +00:00
|
|
|
...Object.fromEntries(
|
|
|
|
Object.entries(refs).map(([key, schema]) => [key, convertSchemaToOpenApiSchema(schema)])
|
|
|
|
),
|
2019-02-23 19:08:08 +00:00
|
|
|
};
|