netbox-docker/startup_scripts/250_dcim_interfaces.py

56 lines
1.6 KiB
Python
Raw Normal View History

from dcim.models import Interface, Device
2019-10-10 17:35:06 +02:00
from dcim.constants import IFACE_TYPE_CHOICES
from extras.models import CustomField, CustomFieldValue
from ruamel.yaml import YAML
from pathlib import Path
import sys
file = Path('/opt/netbox/initializers/dcim_interfaces.yml')
if not file.is_file():
sys.exit()
with file.open('r') as stream:
yaml = YAML(typ='safe')
interfaces = yaml.load(stream)
2019-10-10 17:35:06 +02:00
required_assocs = {
'device': (Device, 'name')
}
if interfaces is not None:
for params in interfaces:
custom_fields = params.pop('custom_fields', None)
2019-10-10 17:35:06 +02:00
for assoc, details in required_assocs.items():
model, field = details
query = { field: params.pop(assoc) }
2019-10-10 17:35:06 +02:00
params[assoc] = model.objects.get(**query)
2019-10-11 17:30:38 +02:00
if 'type' in params:
2019-10-10 17:35:06 +02:00
for outer_list in IFACE_TYPE_CHOICES:
2019-10-11 17:30:38 +02:00
for type_choices in outer_list[1]:
if params['type'] in type_choices:
params['type'] = type_choices[0]
2019-10-10 17:35:06 +02:00
break
else:
continue
break
interface, created = Interface.objects.get_or_create(**params)
if created:
if custom_fields is not None:
for cf_name, cf_value in custom_fields.items():
custom_field = CustomField.objects.get(name=cf_name)
custom_field_value = CustomFieldValue.objects.create(
field=custom_field,
obj=interface,
value=cf_value
)
interface.custom_field_values.add(custom_field_value)
2019-10-10 16:52:29 +02:00
print("🧷 Created interface", interface.name, interface.device.name)