UpdateOpenApiMiddleware
Middleware to add auth information to the OpenAPI spec served by upstream API.
OpenApiMiddleware
dataclass
¶
Bases: JsonResponseMiddleware
Middleware to add the OpenAPI spec to the response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
app
|
Callable[list, Awaitable[None]]
|
|
required |
openapi_spec_path
|
str
|
|
required |
oidc_discovery_url
|
str
|
|
required |
private_endpoints
|
dict[str, Sequence[Literal[GET, POST, PUT, DELETE, PATCH]]]
|
|
required |
public_endpoints
|
dict[str, Sequence[Literal[GET, POST, PUT, DELETE, PATCH]]]
|
|
required |
default_public
|
bool
|
|
required |
root_path
|
str
|
|
''
|
auth_scheme_name
|
str
|
|
'oidcAuth'
|
auth_scheme_override
|
dict | None
|
|
None
|
json_content_type_expr
|
str
|
|
'application/(vnd\\.oai\\.openapi\\+json?|json)'
|
Source code in src/stac_auth_proxy/middleware/UpdateOpenApiMiddleware.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
|
should_transform_response(request: Request, scope: Scope) -> bool
¶
Only transform responses for the OpenAPI spec path.
Source code in src/stac_auth_proxy/middleware/UpdateOpenApiMiddleware.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
transform_json(data: dict[str, Any], request: Request) -> dict[str, Any]
¶
Augment the OpenAPI spec with auth information.
Source code in src/stac_auth_proxy/middleware/UpdateOpenApiMiddleware.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
|