2020-10-17 21:51:38 +02:00
|
|
|
import sys
|
|
|
|
|
2018-10-16 11:05:28 +02:00
|
|
|
from dcim.models import Region, Site
|
2022-04-05 08:34:08 +02:00
|
|
|
from startup_script_utils import (
|
|
|
|
load_yaml,
|
|
|
|
pop_custom_fields,
|
|
|
|
set_custom_fields_values,
|
|
|
|
split_params,
|
|
|
|
)
|
2018-10-16 11:05:28 +02:00
|
|
|
from tenancy.models import Tenant
|
2018-10-15 15:13:51 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
sites = load_yaml("/opt/netbox/initializers/sites.yml")
|
2018-12-19 14:25:58 +01:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
if sites is None:
|
2021-02-08 11:59:33 +01:00
|
|
|
sys.exit()
|
2018-10-15 15:13:51 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
optional_assocs = {"region": (Region, "name"), "tenant": (Tenant, "name")}
|
2018-10-16 11:05:28 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
for params in sites:
|
2021-02-08 11:59:33 +01:00
|
|
|
custom_field_data = pop_custom_fields(params)
|
2018-10-16 11:05:28 +02: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)}
|
2018-10-15 15:13:51 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
params[assoc] = model.objects.get(**query)
|
2018-10-15 15:13:51 +02:00
|
|
|
|
2022-04-05 08:34:08 +02:00
|
|
|
matching_params, defaults = split_params(params)
|
|
|
|
site, created = Site.objects.get_or_create(**matching_params, defaults=defaults)
|
2018-10-15 15:13:51 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
if created:
|
|
|
|
print("📍 Created site", site.name)
|
2022-04-05 08:45:22 +02:00
|
|
|
|
|
|
|
set_custom_fields_values(site, custom_field_data)
|