Skip to content

Commit

Permalink
feat: show index information in openapi specs
Browse files Browse the repository at this point in the history
Signed-off-by: Muhammad Aaqil <[email protected]>
  • Loading branch information
aaqilniz committed Oct 20, 2024
1 parent 5ef9137 commit d285215
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/openapi-v3/src/json-to-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ export function jsonToSchemaObject(
if (matched) {
result['x-typescript-type'] = matched[1];
}
const indexInfoMatched = result.description?.match(/\{"indexInfo".*$/s);
if (indexInfoMatched) {
result['x-index-info'] = indexInfoMatched[1];
}
return result;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,26 @@ describe('build-schema', () => {
},
});
});
it('adds index info in description', () => {
@model()
class TestModel {
@property({
type: 'string',
required: true,
index: {unique: true},
jsonSchema: {
format: 'email',
maxLength: 50,
minLength: 5,
},
})
email: string;
}
const jsonSchema = modelToJsonSchema(TestModel);
expect(jsonSchema.description).to.eql(
'{"indexInfo":{"email":{"unique":true}}}',
);
});

context('with custom type properties', () => {
it('properly converts undecorated custom type properties', () => {
Expand Down Expand Up @@ -728,6 +748,7 @@ describe('build-schema', () => {
@property({
type: 'string',
required: true,
index: {unique: true},
jsonSchema: {
format: 'email',
maxLength: 50,
Expand Down
37 changes: 37 additions & 0 deletions packages/repository-json-schema/src/build-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,43 @@ export function modelToJsonSchema<T extends object>(
continue;
}

const index = meta.properties[p].index;
let indexInfo: {} = {};
if (index && Object.keys(index).length) {
indexInfo = {[p]: index};
}
if (indexInfo && Object.keys(indexInfo).length) {
if (result.description === undefined) result.description = '';
if (result.description.includes('indexInfo')) {
const indexInfoMatched = result.description.match(/\{"indexInfo".*$/s);
if (indexInfoMatched) {
const {indexInfo: existingIndexInfo} = JSON.parse(
indexInfoMatched[0],
);
existingIndexInfo[Object.keys(indexInfo)[0]] = {
...indexInfo,
};
result.description = result.description.replace(
/\{"indexInfo".*$/s,
'',
);
if (result.description) {
result.description =
result.description +
`, ${JSON.stringify({indexInfo: existingIndexInfo})}`;
} else {
result.description = `${JSON.stringify({indexInfo: existingIndexInfo})}`;
}
}
} else {
if (result.description) {
result.description =
result.description + `, ${JSON.stringify({indexInfo})}`;
} else {
result.description = `${JSON.stringify({indexInfo})}`;
}
}
}
if (meta.properties[p].type == null) {
// Circular import of model classes can lead to this situation
throw new Error(
Expand Down

0 comments on commit d285215

Please sign in to comment.