2020-12-29 22:24:16 +01:00
|
|
|
import sys
|
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
from circuits.models import Circuit, CircuitType, Provider
|
2022-04-05 08:34:08 +02:00
|
|
|
from startup_script_utils import (
|
|
|
|
load_yaml,
|
|
|
|
pop_custom_fields,
|
|
|
|
set_custom_fields_values,
|
|
|
|
split_params,
|
|
|
|
)
|
2021-02-08 11:59:33 +01:00
|
|
|
from tenancy.models import Tenant
|
|
|
|
|
|
|
|
circuits = load_yaml("/opt/netbox/initializers/circuits.yml")
|
2020-12-29 22:24:16 +01:00
|
|
|
|
|
|
|
if circuits is None:
|
2021-02-08 11:59:33 +01:00
|
|
|
sys.exit()
|
2020-12-29 22:24:16 +01:00
|
|
|
|
2022-04-05 08:34:08 +02:00
|
|
|
match_params = ["cid", "provider", "type"]
|
2021-02-08 11:59:33 +01:00
|
|
|
required_assocs = {"provider": (Provider, "name"), "type": (CircuitType, "name")}
|
|
|
|
optional_assocs = {"tenant": (Tenant, "name")}
|
2020-12-31 01:09:08 +01:00
|
|
|
|
2020-12-29 22:24:16 +01:00
|
|
|
for params in circuits:
|
2021-02-08 11:59:33 +01:00
|
|
|
custom_field_data = pop_custom_fields(params)
|
2020-12-29 22:24:16 +01:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
for assoc, details in required_assocs.items():
|
|
|
|
model, field = details
|
|
|
|
query = {field: params.pop(assoc)}
|
2020-12-29 22:24:16 +01:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
params[assoc] = model.objects.get(**query)
|
2020-12-29 22:24:16 +01:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
for assoc, details in optional_assocs.items():
|
|
|
|
if assoc in params:
|
|
|
|
model, field = details
|
|
|
|
query = {field: params.pop(assoc)}
|
2020-12-31 01:09:08 +01:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
params[assoc] = model.objects.get(**query)
|
2020-12-31 01:09:08 +01:00
|
|
|
|
2022-04-05 08:34:08 +02:00
|
|
|
matching_params, defaults = split_params(params, match_params)
|
|
|
|
circuit, created = Circuit.objects.get_or_create(**matching_params, defaults=defaults)
|
2020-12-29 22:24:16 +01:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
if created:
|
|
|
|
print("⚡ Created Circuit", circuit.cid)
|
2022-04-05 08:45:22 +02:00
|
|
|
|
|
|
|
set_custom_fields_values(circuit, custom_field_data)
|