Reference
cattle_grid.extensions
BaseConfig
Extension
dataclass
Data model for an extension
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
|
required |
module
|
str
|
|
required |
description
|
str | None
|
description of the extension. If not set is populated from the docstring of the extension |
None
|
lifespan
|
Callable[list, AbstractAsyncContextManager[None]] | None
|
|
None
|
config_class
|
Any
|
|
<class 'cattle_grid.extensions.BaseConfig'>
|
Config
|
Any | None
|
|
None
|
ConfigFastAPI
|
Any | None
|
|
None
|
configuration
|
Any | None
|
|
None
|
activity_router
|
RabbitRouter
|
Includable to RabbitBroker router. |
<dynamic>
|
api_router
|
APIRouter
|
API router |
<dynamic>
|
api_prefix
|
str
|
|
''
|
transformer
|
Callable[list, Awaitable[Dict]] | None
|
|
None
|
transformer_inputs
|
List[str] | None
|
|
None
|
transformer_outputs
|
List[str] | None
|
|
None
|
lookup_method
|
Callable[list, Awaitable[Lookup]] | None
|
|
None
|
lookup_order
|
int | None
|
|
None
|
method_information
|
List[MethodInformationModel]
|
Built-in mutable sequence. If no argument is given, the constructor creates a new empty list. The argument must be an iterable if specified. |
<dynamic>
|
Source code in cattle_grid/extensions/__init__.py
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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
|
Config
class-attribute
instance-attribute
Config: Any | None = None
ConfigFastAPI
class-attribute
instance-attribute
ConfigFastAPI: Any | None = None
Annotation to retrieve the configuration using FastAPI Depends
config_class
class-attribute
instance-attribute
config_class: Any = BaseConfig
Expected configuration class
lifespan
class-attribute
instance-attribute
lifespan: (
Callable[[Any], AbstractAsyncContextManager[None]]
| None
) = None
The lifespan function
configure
configure(config: dict)
Configures the extension
The configuration is validated using the config_class.
get
Allows one to add a get endpoint to the API Router of the extension
Usage:
Source code in cattle_grid/extensions/__init__.py
include_router
lookup
Allows building the extension via decorator.
extension = Extension("my extension")
@extension.lookup()
async def lookup(l: Lookup) -> Lookup:
...
Source code in cattle_grid/extensions/__init__.py
post
Allows one to add a post endpoint to the API Router of the extension
Usage:
Source code in cattle_grid/extensions/__init__.py
subscribe
Allows building the extension via decorator.
extension = Extension("my extension")
@extension.subscribe("routing_key")
async def subscriber(message: dict): ...
Dependency injection is available for the subscriber function.
Source code in cattle_grid/extensions/__init__.py
subscribe_on_account_exchange
subscribe_on_account_exchange(routing_key: str)
Allows building the extension via decorator.
Dependency injection is available for the subscriber function.
Source code in cattle_grid/extensions/__init__.py
transform
Allows building the extension via decorator. Usage:
extension = Extension("my extension")
@extension.transform(inputs=["inputs"], outputs=["outputs"])
async def transformer(a: dict):
...
Source code in cattle_grid/extensions/__init__.py
cattle_grid.extensions.load
add_routers_to_broker
add_routers_to_broker(
broker: RabbitBroker, extensions: List[Extension]
)
Adds the routers to the broker
Source code in cattle_grid/extensions/load/__init__.py
add_routes_to_api
Adds the routes to the api
Source code in cattle_grid/extensions/load/__init__.py
build_lookup
build_lookup(extensions: List[Extension]) -> LookupMethod
Builds the lookup method
Source code in cattle_grid/extensions/load/__init__.py
build_transformer
Build the transformer
Source code in cattle_grid/extensions/load/__init__.py
collect_method_information
collect_method_information(
extensions: List[Extension],
) -> List[MethodInformationModel]
Collects the method information from the extensions
Source code in cattle_grid/extensions/load/__init__.py
lifespan_from_extensions
async
Creates the lifespan from the extensions
load_extension
Loads a single extension
Source code in cattle_grid/extensions/load/__init__.py
load_extensions
Loads the extensions from settings
Source code in cattle_grid/extensions/load/__init__.py
set_globals
Sets global variables in cattle_grid.dependencies