mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
"""Validate network configuration variables."""
|
|
|
|
# Third Party Imports
|
|
from pydantic import StrictStr
|
|
|
|
# Project Imports
|
|
from hyperglass.configuration.models._utils import HyperglassModel
|
|
from hyperglass.configuration.models._utils import clean_name
|
|
|
|
|
|
class Network(HyperglassModel):
|
|
"""Validation Model for per-network/asn config in devices.yaml."""
|
|
|
|
name: StrictStr
|
|
display_name: StrictStr
|
|
|
|
|
|
class Networks(HyperglassModel):
|
|
"""Base model for networks class."""
|
|
|
|
@classmethod
|
|
def import_params(cls, input_params):
|
|
"""Import loaded YAML, initialize per-network definitions.
|
|
|
|
Remove unsupported characters from network names, dynamically
|
|
set attributes for the networks class. Add cls.networks
|
|
attribute so network objects can be accessed inside a dict.
|
|
|
|
Arguments:
|
|
input_params {dict} -- Unvalidated network definitions
|
|
|
|
Returns:
|
|
{object} -- Validated networks object
|
|
"""
|
|
obj = Networks()
|
|
networks = {}
|
|
for (netname, params) in input_params.items():
|
|
netname = clean_name(netname)
|
|
setattr(Networks, netname, Network(**params))
|
|
networks.update({netname: Network(**params).dict()})
|
|
Networks.networks = networks
|
|
return obj
|