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