Skip to content

Commit 544b0a8

Browse files
author
Richard Lay
committedFeb 20, 2017
Added option to use the label of the model as the definition name
1 parent f32d6e4 commit 544b0a8

File tree

5 files changed

+89
-10
lines changed

5 files changed

+89
-10
lines changed
 

‎lib/builder.js

+1
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ internals.removeNoneSchemaOptions = function (options) {
239239
'reuseDefinitions',
240240
'uiCompleteScript',
241241
'deReference',
242+
'dynamicDefinitionPrefix',
242243
'validatorUrl',
243244
'jsonEditor',
244245
'acceptToProduce',

‎lib/defaults.js

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
'uiCompleteScript': null,
2020
'xProperties': true,
2121
'reuseDefinitions': true,
22+
'dynamicDefinitionPrefix': 'default',
2223
'deReference': false,
2324
'validatorUrl': '//online.swagger.io/validator',
2425
'acceptToProduce': true, // internal, NOT public

‎lib/definitions.js

+22-10
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ const Hash = require('../lib/hash');
44
const Utilities = require('../lib/utilities');
55

66

7-
const internals = {};
7+
const internals = {
8+
modelPrefixes: {}
9+
};
810

911
exports = module.exports = internals.definitions = function (settings) {
1012

@@ -44,11 +46,11 @@ internals.definitions.prototype.append = function (definitionName, definition, c
4446
out = definitionName;
4547
} else {
4648
// create new definition
47-
out = internals.append(null, definition, currentCollection, settings);
49+
out = internals.append(definitionName, definition, currentCollection, true, settings);
4850
}
4951
} else {
5052
// create new definition
51-
out = internals.append(definitionName, definition, currentCollection, settings);
53+
out = internals.append(definitionName, definition, currentCollection, false, settings);
5254
}
5355

5456
return out;
@@ -64,7 +66,7 @@ internals.definitions.prototype.append = function (definitionName, definition, c
6466
* @param {Object} settings
6567
* @return {String}
6668
*/
67-
internals.append = function (definitionName, definition, currentCollection, settings) {
69+
internals.append = function (definitionName, definition, currentCollection, forceDynamicName, settings) {
6870

6971
let out;
7072
let foundDefinitionName;
@@ -79,7 +81,17 @@ internals.append = function (definitionName, definition, currentCollection, sett
7981
out = foundDefinitionName;
8082
} else {
8183
// else create a new item using definitionName or next model number
82-
out = definitionName || internals.nextModelName(currentCollection);
84+
if (forceDynamicName) {
85+
if (settings.dynamicDefinitionPrefix === 'useLabel') {
86+
out = internals.nextModelName(definitionName + ' ', currentCollection);
87+
}
88+
else {
89+
out = internals.nextModelName('Model ', currentCollection);
90+
}
91+
}
92+
else {
93+
out = definitionName || internals.nextModelName('Model ', currentCollection);
94+
}
8395
currentCollection[out] = definition;
8496
}
8597
return out;
@@ -126,22 +138,22 @@ internals.hash = function (obj) {
126138
/**
127139
* creates a new unique model name
128140
*
141+
* @param {String} nextModelNamePrefix
129142
* @param {Object} currentCollection
130143
* @return {String}
131144
*/
132-
internals.nextModelName = function (currentCollection) {
133-
145+
internals.nextModelName = function (nextModelNamePrefix, currentCollection) {
134146
let highest = 0;
135147
let key;
136148
for (key in currentCollection) {
137-
if (Utilities.startsWith(key, 'Model')) {
138-
let num = parseInt(key.replace('Model', ''), 10);
149+
if (Utilities.startsWith(key, nextModelNamePrefix)) {
150+
let num = parseInt(key.replace(nextModelNamePrefix, ''), 10) || 0;
139151
if (num && num > highest) {
140152
highest = num;
141153
}
142154
}
143155
}
144-
return 'Model ' + (highest + 1);
156+
return nextModelNamePrefix + (highest + 1);
145157
};
146158

147159

‎lib/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ const schema = Joi.object({
3131
uiCompleteScript: Joi.string().allow(null),
3232
xProperties: Joi.boolean(),
3333
reuseDefinitions: Joi.boolean(),
34+
dynamicDefinitionPrefix: Joi.string(),
3435
deReference: Joi.boolean(),
3536
validatorUrl: Joi.string().allow(null),
3637
acceptToProduce: Joi.boolean(),

‎test/Integration/definitions-test.js

+64
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,70 @@ lab.experiment('definitions', () => {
190190
});
191191
});
192192

193+
lab.test('dynamicDefinitionPrefix = useLabel', (done) => {
194+
195+
// use the label as a prefix for dynamic model names
196+
197+
const tempRoutes = [{
198+
method: 'POST',
199+
path: '/store1/',
200+
config: {
201+
handler: Helper.defaultHandler,
202+
tags: ['api'],
203+
validate: {
204+
payload: Joi.object({
205+
a: Joi.number(),
206+
b: Joi.number(),
207+
operator: Joi.string(),
208+
equals: Joi.number()
209+
}).label('A')
210+
}
211+
}
212+
}, {
213+
method: 'POST',
214+
path: '/store2/',
215+
config: {
216+
handler: Helper.defaultHandler,
217+
tags: ['api'],
218+
validate: {
219+
payload: Joi.object({
220+
c: Joi.number(),
221+
v: Joi.number(),
222+
operator: Joi.string(),
223+
equals: Joi.number()
224+
}).label('A A')
225+
}
226+
}
227+
}, {
228+
method: 'POST',
229+
path: '/store3/',
230+
config: {
231+
handler: Helper.defaultHandler,
232+
tags: ['api'],
233+
validate: {
234+
payload: Joi.object({
235+
c: Joi.number(),
236+
f: Joi.number(),
237+
operator: Joi.string(),
238+
equals: Joi.number()
239+
}).label('A')
240+
}
241+
}
242+
}];
243+
244+
Helper.createServer({ dynamicDefinitionPrefix: 'useLabel' }, tempRoutes, (err, server) => {
245+
246+
expect(err).to.equal(null);
247+
server.inject({ method: 'GET', url: '/swagger.json' }, function (response) {
248+
249+
expect(response.statusCode).to.equal(200);
250+
expect(response.result.definitions.A).to.exist();
251+
expect(response.result.definitions['A A']).to.exist();
252+
expect(response.result.definitions['A 1']).to.exist();
253+
Helper.validate(response, done, expect);
254+
});
255+
});
256+
});
193257

194258
lab.test('test that optional array is not in swagger output', (done) => {
195259

0 commit comments

Comments
 (0)
Please sign in to comment.