2019-07-04 14:10:56 +02:00
|
|
|
from dcim.models import Site
|
|
|
|
from ipam.models import Prefix, VLAN, Role, VRF
|
2019-10-10 16:52:29 +02:00
|
|
|
from tenancy.models import Tenant, TenantGroup
|
2019-07-04 14:10:56 +02:00
|
|
|
from extras.models import CustomField, CustomFieldValue
|
|
|
|
from netaddr import IPNetwork
|
2020-02-05 15:31:01 +01:00
|
|
|
from startup_script_utils import load_yaml
|
2019-07-04 14:10:56 +02:00
|
|
|
import sys
|
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
prefixes = load_yaml('/opt/netbox/initializers/prefixes.yml')
|
|
|
|
|
|
|
|
if prefixes is None:
|
2019-07-04 14:10:56 +02:00
|
|
|
sys.exit()
|
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
optional_assocs = {
|
|
|
|
'site': (Site, 'name'),
|
|
|
|
'tenant': (Tenant, 'name'),
|
|
|
|
'tenant_group': (TenantGroup, 'name'),
|
|
|
|
'vlan': (VLAN, 'name'),
|
|
|
|
'role': (Role, 'name'),
|
|
|
|
'vrf': (VRF, 'name')
|
|
|
|
}
|
|
|
|
|
|
|
|
for params in prefixes:
|
|
|
|
custom_fields = params.pop('custom_fields', None)
|
|
|
|
params['prefix'] = IPNetwork(params['prefix'])
|
|
|
|
|
|
|
|
for assoc, details in optional_assocs.items():
|
|
|
|
if assoc in params:
|
|
|
|
model, field = details
|
|
|
|
query = { field: params.pop(assoc) }
|
|
|
|
params[assoc] = model.objects.get(**query)
|
|
|
|
|
|
|
|
prefix, created = Prefix.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=prefix,
|
|
|
|
value=cf_value
|
|
|
|
)
|
|
|
|
prefix.custom_field_values.add(custom_field_value)
|
|
|
|
|
|
|
|
print("📌 Created Prefix", prefix.prefix)
|