|
|
@ -3,6 +3,7 @@ from typing import Any, Callable, Dict, Iterable, List, Optional, Union |
|
|
|
|
|
|
|
from fastapi.logger import logger |
|
|
|
from pydantic import AnyUrl, BaseModel, Field |
|
|
|
from typing_extensions import Literal |
|
|
|
|
|
|
|
try: |
|
|
|
import email_validator # type: ignore |
|
|
@ -298,18 +299,18 @@ class APIKeyIn(Enum): |
|
|
|
|
|
|
|
|
|
|
|
class APIKey(SecurityBase): |
|
|
|
type_ = Field(SecuritySchemeType.apiKey, alias="type") |
|
|
|
type_: SecuritySchemeType = Field(default=SecuritySchemeType.apiKey, alias="type") |
|
|
|
in_: APIKeyIn = Field(alias="in") |
|
|
|
name: str |
|
|
|
|
|
|
|
|
|
|
|
class HTTPBase(SecurityBase): |
|
|
|
type_ = Field(SecuritySchemeType.http, alias="type") |
|
|
|
type_: SecuritySchemeType = Field(default=SecuritySchemeType.http, alias="type") |
|
|
|
scheme: str |
|
|
|
|
|
|
|
|
|
|
|
class HTTPBearer(HTTPBase): |
|
|
|
scheme = "bearer" |
|
|
|
scheme: Literal["bearer"] = "bearer" |
|
|
|
bearerFormat: Optional[str] = None |
|
|
|
|
|
|
|
|
|
|
@ -349,12 +350,14 @@ class OAuthFlows(BaseModel): |
|
|
|
|
|
|
|
|
|
|
|
class OAuth2(SecurityBase): |
|
|
|
type_ = Field(SecuritySchemeType.oauth2, alias="type") |
|
|
|
type_: SecuritySchemeType = Field(default=SecuritySchemeType.oauth2, alias="type") |
|
|
|
flows: OAuthFlows |
|
|
|
|
|
|
|
|
|
|
|
class OpenIdConnect(SecurityBase): |
|
|
|
type_ = Field(SecuritySchemeType.openIdConnect, alias="type") |
|
|
|
type_: SecuritySchemeType = Field( |
|
|
|
default=SecuritySchemeType.openIdConnect, alias="type" |
|
|
|
) |
|
|
|
openIdConnectUrl: str |
|
|
|
|
|
|
|
|
|
|
|