ProcessLinksMiddleware
Middleware to remove the application root path from incoming requests and update links in responses.
ProcessLinksMiddleware
dataclass
¶
Bases: JsonResponseMiddleware
Middleware to update links in responses, removing the upstream_url path and adding the root_path if it exists.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
app
|
Callable[list, Awaitable[None]]
|
|
required |
upstream_url
|
str
|
|
required |
root_path
|
str | None
|
|
None
|
json_content_type_expr
|
str
|
|
'application/(geo\\+)?json'
|
Source code in src/stac_auth_proxy/middleware/ProcessLinksMiddleware.py
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 |
|
should_transform_response(request: Request, scope: Scope) -> bool
¶
Only transform responses with JSON content type.
Source code in src/stac_auth_proxy/middleware/ProcessLinksMiddleware.py
32 33 34 35 36 37 38 39 |
|
transform_json(data: dict[str, Any], request: Request) -> dict[str, Any]
¶
Update links in the response to include root_path.
Source code in src/stac_auth_proxy/middleware/ProcessLinksMiddleware.py
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 |
|