2020-12-29 22:24:16 +01:00
|
|
|
from circuits.models import Circuit, Provider, CircuitType
|
2020-12-31 01:09:08 +01:00
|
|
|
from tenancy.models import Tenant
|
2020-12-29 22:24:16 +01:00
|
|
|
from startup_script_utils import *
|
|
|
|
import sys
|
|
|
|
|
|
|
|
circuits = load_yaml('/opt/netbox/initializers/circuits.yml')
|
|
|
|
|
|
|
|
if circuits is None:
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
required_assocs = {
|
|
|
|
'provider': (Provider, 'name'),
|
2020-12-30 00:27:41 +01:00
|
|
|
'type': (CircuitType, 'name')
|
2020-12-29 22:24:16 +01:00
|
|
|
}
|
|
|
|
|
2020-12-31 01:09:08 +01:00
|
|
|
optional_assocs = {
|
|
|
|
'tenant': (Tenant, 'name')
|
|
|
|
}
|
|
|
|
|
2020-12-29 22:24:16 +01:00
|
|
|
for params in circuits:
|
|
|
|
custom_field_data = pop_custom_fields(params)
|
|
|
|
|
|
|
|
for assoc, details in required_assocs.items():
|
|
|
|
model, field = details
|
|
|
|
query = { field: params.pop(assoc) }
|
|
|
|
|
|
|
|
params[assoc] = model.objects.get(**query)
|
|
|
|
|
2020-12-31 01:09:08 +01:00
|
|
|
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)
|
|
|
|
|
2020-12-29 22:24:16 +01:00
|
|
|
circuit, created = Circuit.objects.get_or_create(**params)
|
|
|
|
|
|
|
|
if created:
|
2020-12-30 00:27:41 +01:00
|
|
|
set_custom_fields_values(circuit, custom_field_data)
|
2020-12-29 22:24:16 +01:00
|
|
|
|
|
|
|
print("⚡ Created Circuit", circuit.cid)
|