pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
930 B
43 lines
930 B
from typing import Dict
|
|
|
|
from pydantic import BaseModel, Schema
|
|
|
|
from starlette.requests import Request
|
|
|
|
from .base import SecurityBase, Types
|
|
|
|
class OAuthFlow(BaseModel):
|
|
refreshUrl: str = None
|
|
scopes: Dict[str, str] = {}
|
|
|
|
|
|
class OAuthFlowImplicit(OAuthFlow):
|
|
authorizationUrl: str
|
|
|
|
|
|
class OAuthFlowPassword(OAuthFlow):
|
|
tokenUrl: str
|
|
|
|
|
|
class OAuthFlowClientCredentials(OAuthFlow):
|
|
tokenUrl: str
|
|
|
|
|
|
class OAuthFlowAuthorizationCode(OAuthFlow):
|
|
authorizationUrl: str
|
|
tokenUrl: str
|
|
|
|
|
|
class OAuthFlows(BaseModel):
|
|
implicit: OAuthFlowImplicit = None
|
|
password: OAuthFlowPassword = None
|
|
clientCredentials: OAuthFlowClientCredentials = None
|
|
authorizationCode: OAuthFlowAuthorizationCode = None
|
|
|
|
|
|
class OAuth2(SecurityBase):
|
|
type_ = Schema(Types.oauth2, alias="type")
|
|
flows: OAuthFlows
|
|
|
|
async def __call__(self, request: Request):
|
|
return request.headers.get("Authorization")
|
|
|