opa
Integration with Open Policy Agent (OPA) to generate CQL2 filters for requests to a STAC API.
Opa
dataclass
¶
Call Open Policy Agent (OPA) to generate CQL2 filters from request context.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
host
|
str
|
|
required |
decision
|
str
|
|
required |
cache_key
|
str
|
|
'req.headers.authorization'
|
cache_ttl
|
float
|
|
5.0
|
Attributes:
Name | Type | Description |
---|---|---|
client |
AsyncClient
|
|
cache |
MemoryCache
|
|
Source code in src/stac_auth_proxy/filters/opa.py
11 12 13 14 15 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 |
|
__call__(context: dict[str, Any]) -> str
async
¶
Generate a CQL2 filter for the request.
Source code in src/stac_auth_proxy/filters/opa.py
28 29 30 31 32 33 34 35 36 |
|
__post_init__()
¶
Initialize the client.
Source code in src/stac_auth_proxy/filters/opa.py
23 24 25 26 |
|