mirror of
https://github.com/Redocly/redoc.git
synced 2025-02-17 02:10:39 +03:00
fix: filter out non-existing security schemas + warn
This commit is contained in:
parent
dead16199f
commit
ee822f6ebe
|
@ -2,26 +2,36 @@ import { OpenAPISecurityRequirement } from '../../types';
|
|||
import { SECURITY_SCHEMES_SECTION } from '../../utils/openapi';
|
||||
import { OpenAPIParser } from '../OpenAPIParser';
|
||||
|
||||
interface SecurityScheme {
|
||||
id: string;
|
||||
sectionId: string;
|
||||
type: string;
|
||||
scopes: string[];
|
||||
}
|
||||
|
||||
export class SecurityRequirementModel {
|
||||
schemes: Array<{
|
||||
id: string;
|
||||
sectionId: string;
|
||||
type: string;
|
||||
scopes: string[];
|
||||
}>;
|
||||
schemes: SecurityScheme[];
|
||||
|
||||
constructor(requirement: OpenAPISecurityRequirement, parser: OpenAPIParser) {
|
||||
const schemes = (parser.spec.components && parser.spec.components.securitySchemes) || {};
|
||||
|
||||
this.schemes = Object.keys(requirement || {}).map(id => {
|
||||
const scheme = parser.deref(schemes[id]);
|
||||
const scopes = requirement[id] || [];
|
||||
return {
|
||||
id,
|
||||
sectionId: SECURITY_SCHEMES_SECTION + id,
|
||||
type: scheme.type,
|
||||
scopes,
|
||||
};
|
||||
});
|
||||
this.schemes = Object.keys(requirement || {})
|
||||
.map(id => {
|
||||
const scheme = parser.deref(schemes[id]);
|
||||
const scopes = requirement[id] || [];
|
||||
|
||||
if (!scheme) {
|
||||
console.warn(`Non existing security scheme referenced: ${id}. Skipping`);
|
||||
return null;
|
||||
}
|
||||
|
||||
return {
|
||||
id,
|
||||
sectionId: SECURITY_SCHEMES_SECTION + id,
|
||||
type: scheme.type,
|
||||
scopes,
|
||||
};
|
||||
})
|
||||
.filter(scheme => scheme !== undefined) as SecurityScheme[];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user