base
BaseField
Bases: FieldInfo
BaseField serves as a parent class for all basic Fields in ormar. It keeps all common parameters available for all fields as well as set of useful functions.
All values are kept as class variables, ormar Fields are never instantiated. Subclasses pydantic.FieldInfo to keep the fields related to pydantic field types like ConstrainedStr
Source code in ormar\fields\base.py
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 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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
|
construct_constraints()
Converts list of ormar constraints into sqlalchemy ForeignKeys. Has to be done dynamically as sqlalchemy binds ForeignKey to the table. And we need a new ForeignKey for subclasses of current model
Returns:
Type | Description |
---|---|
List[sqlalchemy.schema.ForeignKey]
|
List of sqlalchemy foreign keys - by default one. |
Source code in ormar\fields\base.py
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
|
default_value(use_server=False)
Returns a FieldInfo instance with populated default (static) or default_factory (function). If the field is a autoincrement primary key the default is None. Otherwise field have to has either default, or default_factory populated.
If all default conditions fail None is returned.
Used in converting to pydantic FieldInfo.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
use_server |
bool
|
flag marking if server_default should be treated as default value, default False |
False
|
Returns:
Type | Description |
---|---|
Optional[pydantic.FieldInfo]
|
returns a call to pydantic.Field which is returning a FieldInfo instance |
Source code in ormar\fields\base.py
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 |
|
evaluate_forward_ref(globalns, localns)
Evaluates the ForwardRef to actual Field based on global and local namespaces
Parameters:
Name | Type | Description | Default |
---|---|---|---|
globalns |
Any
|
global namespace |
required |
localns |
Any
|
local namespace |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in ormar\fields\base.py
360 361 362 363 364 365 366 367 368 369 370 |
|
expand_relationship(value, child, to_register=True)
Function overwritten for relations, in basic field the value is returned as is. For relations the child model is first constructed (if needed), registered in relation and returned. For relation fields the value can be a pk value (Any type of field), dict (from Model) or actual instance/list of a "Model".
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
Any
|
a Model field value, returned untouched for non relation fields. |
required |
child |
Union[Model, NewBaseModel]
|
a child Model to register |
required |
to_register |
bool
|
flag if the relation should be set in RelationshipManager |
True
|
Returns:
Type | Description |
---|---|
Any
|
returns untouched value for normal fields, expands only for relations |
Source code in ormar\fields\base.py
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
|
get_alias()
Used to translate Model column names to database column names during db queries.
Returns:
Type | Description |
---|---|
str
|
returns custom database column name if defined by user, otherwise field name in ormar/pydantic |
Source code in ormar\fields\base.py
115 116 117 118 119 120 121 122 123 |
|
get_column(name)
Returns definition of sqlalchemy.Column used in creation of sqlalchemy.Table. Populates name, column type constraints, as well as a number of parameters like primary_key, index, unique, nullable, default and server_default.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the db column - used if alias is not set |
required |
Returns:
Type | Description |
---|---|
sqlalchemy.Column
|
actual definition of the database column as sqlalchemy requires. |
Source code in ormar\fields\base.py
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
|
get_default(use_server=False, call_default_factory=True)
Return default value for a field. If the field is Callable the function is called and actual result is returned. Used to populate default_values for pydantic Model in ormar Model Metaclass.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
use_server |
bool
|
flag marking if server_default should be treated as default value, default False |
False
|
Returns:
Type | Description |
---|---|
Any
|
default value for the field if set, otherwise implicit None |
Source code in ormar\fields\base.py
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
|
get_pydantic_default()
Generates base pydantic.FieldInfo with only default and optionally required to fix pydantic Json field being set to required=False. Used in an ormar Model Metaclass.
Returns:
Type | Description |
---|---|
pydantic.FieldInfo
|
instance of base pydantic.FieldInfo |
Source code in ormar\fields\base.py
125 126 127 128 129 130 131 132 133 134 135 136 137 |
|
get_related_name()
Returns name to use for reverse relation.
It's either set as related_name
or by default it's owner model. get_name + 's'
Returns:
Type | Description |
---|---|
str
|
name of the related_name or default related name. |
Source code in ormar\fields\base.py
372 373 374 375 376 377 378 379 |
|
has_default(use_server=True)
Checks if the field has default value set.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
use_server |
bool
|
flag marking if server_default should be treated as default value, default False |
True
|
Returns:
Type | Description |
---|---|
bool
|
result of the check if default value is set |
Source code in ormar\fields\base.py
209 210 211 212 213 214 215 216 217 218 219 220 221 |
|
has_unresolved_forward_refs()
Verifies if the filed has any ForwardRefs that require updating before the model can be used.
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\base.py
350 351 352 353 354 355 356 357 358 |
|
is_auto_primary_key()
Checks if field is first a primary key and if it, it's than check if it's set to autoincrement. Autoincrement primary_key is nullable/optional.
Returns:
Type | Description |
---|---|
bool
|
result of the check for primary key and autoincrement |
Source code in ormar\fields\base.py
223 224 225 226 227 228 229 230 231 232 233 234 |
|
is_valid_uni_relation()
Checks if field is a relation definition but only for ForeignKey relation, so excludes ManyToMany fields, as well as virtual ForeignKey (second side of FK relation).
Is used to define if a field is a db ForeignKey column that should be saved/populated when dealing with internal/own Model columns only.
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\base.py
100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
|
set_self_reference_flag()
Sets self_reference
to True if field to and owner are same model.
Returns:
Type | Description |
---|---|
None
|
None |
Source code in ormar\fields\base.py
338 339 340 341 342 343 344 345 346 347 348 |
|