netbox/docs/customization/custom-validation.md

121 lines
4.5 KiB
Markdown
Raw Normal View History

2021-06-09 18:09:30 +02:00
# Custom Validation
NetBox validates every object prior to it being written to the database to ensure data integrity. This validation includes things like checking for proper formatting and that references to related objects are valid. However, you may wish to supplement this validation with some rules of your own. For example, perhaps you require that every site's name conforms to a specific pattern. This can be done using custom validation rules.
2021-06-09 18:09:30 +02:00
## Custom Validation Rules
2021-06-09 18:09:30 +02:00
Custom validation rules are expressed as a mapping of model attributes to a set of rules to which that attribute must conform. For example:
2021-06-09 18:09:30 +02:00
```json
{
"name": {
"min_length": 5,
"max_length": 30
}
}
2021-06-09 18:09:30 +02:00
```
This defines a custom validator which checks that the length of the `name` attribute for an object is at least five characters long, and no longer than 30 characters. This validation is executed _after_ NetBox has performed its own internal validation.
The `CustomValidator` class supports several validation types:
* `min`: Minimum value
* `max`: Maximum value
* `min_length`: Minimum string length
* `max_length`: Maximum string length
* `regex`: Application of a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)
* `required`: A value must be specified
* `prohibited`: A value must _not_ be specified
* `eq`: A value must be equal to the specified value
* `neq`: A value must _not_ be equal to the specified value
2021-06-09 18:09:30 +02:00
The `min` and `max` types should be defined for numeric values, whereas `min_length`, `max_length`, and `regex` are suitable for character strings (text values). The `required` and `prohibited` validators may be used for any field, and should be passed a value of `True`.
!!! warning
Bear in mind that these validators merely supplement NetBox's own validation: They will not override it. For example, if a certain model field is required by NetBox, setting a validator for it with `{'prohibited': True}` will not work.
2021-06-09 18:09:30 +02:00
### Custom Validation Logic
There may be instances where the provided validation types are insufficient. NetBox provides a `CustomValidator` class which can be extended to enforce arbitrary validation logic by overriding its `validate()` method, and calling `fail()` when an unsatisfactory condition is detected.
2021-06-09 18:09:30 +02:00
```python
from extras.validators import CustomValidator
class MyValidator(CustomValidator):
2021-06-09 18:09:30 +02:00
def validate(self, instance):
if instance.status == 'active' and not instance.description:
2021-06-09 18:11:47 +02:00
self.fail("Active sites must have a description set!", field='status')
2021-06-09 18:09:30 +02:00
```
The `fail()` method may optionally specify a field with which to associate the supplied error message. If specified, the error message will appear to the user as associated with this field. If omitted, the error message will not be associated with any field.
## Assigning Custom Validators
2022-07-29 21:10:50 +02:00
Custom validators are associated with specific NetBox models under the [CUSTOM_VALIDATORS](../configuration/data-validation.md#custom_validators) configuration parameter. There are three manners by which custom validation rules can be defined:
1. Plain JSON mapping (no custom logic)
2. Dotted path to a custom validator class
3. Direct reference to a custom validator class
### Plain Data
For cases where custom logic is not needed, it is sufficient to pass validation rules as plain JSON-compatible objects. This approach typically affords the most portability for your configuration. For instance:
```python
CUSTOM_VALIDATORS = {
"dcim.site": [
{
"name": {
"min_length": 5,
"max_length": 30,
}
}
],
"dcim.device": [
{
"platform": {
"required": True,
}
}
]
}
```
### Dotted Path
In instances where a custom validator class is needed, it can be referenced by its Python path (relative to NetBox's working directory):
2021-06-09 18:09:30 +02:00
```python
CUSTOM_VALIDATORS = {
'dcim.site': (
'my_validators.Validator1',
'my_validators.Validator2',
),
'dcim.device': (
'my_validators.Validator3',
2021-06-09 18:09:30 +02:00
)
}
```
### Direct Class Reference
2021-06-09 18:09:30 +02:00
This approach requires each class being instantiated to be imported directly within the Python configuration file.
2021-06-09 18:09:30 +02:00
```python
from my_validators import Validator1, Validator2, Validator3
2021-06-09 18:09:30 +02:00
CUSTOM_VALIDATORS = {
'dcim.site': (
2022-04-22 20:42:29 +02:00
Validator1(),
Validator2(),
),
'dcim.device': (
2022-04-22 20:42:29 +02:00
Validator3(),
2021-06-09 18:09:30 +02:00
)
}
```
!!! note
Even if defining only a single validator, it must be passed as an iterable.