This commit is contained in:
Arun Bandari 2020-11-11 15:49:25 +05:30
parent 66c54f325c
commit 2646e63a47
2 changed files with 13 additions and 5 deletions

View File

@ -138,14 +138,18 @@ function mountSwagger(loopbackApplication, swaggerApp, opts) {
}; //list of APIs to hide from UI.
const blackListKeys = _.keys(blackListApi);
const blackListValues = _.values(blackListApi);
const isStandardModel = req.query.type === 'seed';
if (tenantId) {
swaggerFilterPath = '/custom/' + tenantId;
let Model;
if (isStandardModel) swaggerFilterPath = '/';
else swaggerFilterPath = '/custom/' + tenantId + '-';
if (req.query && req.query.model) {
const modelName = tenantId + '-' + req.query.model;
const modelName = isStandardModel ? req.query.model : tenantId + '-' + req.query.model;
const modelDef = req.app.models[modelName];
Model = modelDef;
if (modelDef && modelDef.definition && modelDef.definition.settings && modelDef.definition.settings.slug) {
swaggerFilterPath += '-' + modelDef.definition.settings.slug;
} else swaggerFilterPath += '-' + req.query.model;
swaggerFilterPath += modelDef.definition.settings.slug;
} else swaggerFilterPath += req.query.model;
}
if (swaggerObject && swaggerObject.paths) {
@ -189,7 +193,7 @@ function mountSwagger(loopbackApplication, swaggerApp, opts) {
}, {});
const includeDefaultDefinitions = ['ObjectID', 'x-any'];
filteredSwaggerObject.definitions = _.pickBy(swaggerObject.definitions, function(val, key) {
return key.startsWith(tenantId) || includeDefaultDefinitions.indexOf(key) !== -1;
return (Model && Model.modelName === key) || key.startsWith(tenantId) || includeDefaultDefinitions.indexOf(key) !== -1;
});
res.status(200).send(filteredSwaggerObject);
} else {

View File

@ -35,11 +35,15 @@ $(function() {
var methodOrder = ['get', 'head', 'options', 'put', 'post', 'delete'];
var url = config.url || '/swagger/resources';
var model = GetParameterValues('model');
var type = GetParameterValues('type');
var token = window.localStorage.getItem(appKey);
if (model) {
url += (url.indexOf('?') > 0 ? '&' : '?') + 'model=' + model;
$('body').addClass('stripped');
}
if (type) {
url += (url.indexOf('?') > 0 ? '&' : '?') + 'type=' + type;
}
if (token) {
url += (url.indexOf('?') > 0 ? '&' : '?') + 'acccess_token=' + token;
}