46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
module.exports = function applyPlugins(schema, plugins, options, cacheKey) {
|
|
if (schema[cacheKey]) {
|
|
return;
|
|
}
|
|
schema[cacheKey] = true;
|
|
|
|
if (!options || !options.skipTopLevel) {
|
|
for (let i = 0; i < plugins.length; ++i) {
|
|
schema.plugin(plugins[i][0], plugins[i][1]);
|
|
}
|
|
}
|
|
|
|
options = Object.assign({}, options);
|
|
delete options.skipTopLevel;
|
|
|
|
if (options.applyPluginsToChildSchemas !== false) {
|
|
for (const path of Object.keys(schema.paths)) {
|
|
const type = schema.paths[path];
|
|
if (type.schema != null) {
|
|
applyPlugins(type.schema, plugins, options, cacheKey);
|
|
|
|
// Recompile schema because plugins may have changed it, see gh-7572
|
|
type.caster.prototype.$__setSchema(type.schema);
|
|
}
|
|
}
|
|
}
|
|
|
|
const discriminators = schema.discriminators;
|
|
if (discriminators == null) {
|
|
return;
|
|
}
|
|
|
|
const applyPluginsToDiscriminators = options.applyPluginsToDiscriminators;
|
|
|
|
const keys = Object.keys(discriminators);
|
|
for (let i = 0; i < keys.length; ++i) {
|
|
const discriminatorKey = keys[i];
|
|
const discriminatorSchema = discriminators[discriminatorKey];
|
|
|
|
applyPlugins(discriminatorSchema, plugins,
|
|
{ skipTopLevel: !applyPluginsToDiscriminators }, cacheKey);
|
|
}
|
|
};
|