[auth] added support of oauth2 in security popup

This commit is contained in:
Anna Bodnia
2016-03-07 21:09:40 +02:00
parent d2b94d5a01
commit 4a49b783f7
6 changed files with 56 additions and 32 deletions

View File

@@ -3,33 +3,45 @@
window.SwaggerUi.utils = {
parseSecurityDefinitions: function (security) {
var auths = window.swaggerUi.api.authSchemes || window.swaggerUi.api.securityDefinitions;
var result = [];
var oauth2Arr = [];
var authsArr = [];
if (!Array.isArray(security)) { return null; }
security.forEach(function (item) {
var singleSecurity = {};
var singleOauth2Security = {};
for (var key in item) {
if (Array.isArray(item[key])) {
if (!auths[key]) { continue; }
auths[key] = auths[key] || {};
singleSecurity[key] = auths[key];
if (auths[key].type === 'oauth2') {
for (var i in singleSecurity[key].scopes) {
singleOauth2Security[key] = auths[key];
for (var i in singleOauth2Security[key].scopes) {
if (item[key].indexOf(i) < 0) {
delete singleSecurity[key].scopes[i];
delete singleOauth2Security[key].scopes[i];
}
}
} else {
singleSecurity[key] = auths[key];
}
} else {
singleSecurity[key] = item[key];
if (item[key].type === 'oauth2') {
singleOauth2Security[key] = item[key];
} else {
singleSecurity[key] = item[key];
}
}
}
result.push(singleSecurity);
authsArr.push(singleSecurity);
oauth2Arr.push(singleOauth2Security);
});
return result;
return {
auths : authsArr,
oauth2: oauth2Arr
};
}
};