2021-02-08 11:59:33 +01:00
|
|
|
import sys
|
|
|
|
|
2018-10-15 15:13:26 +02:00
|
|
|
from dcim.models import Region
|
2020-02-05 15:31:01 +01:00
|
|
|
from startup_script_utils import load_yaml
|
2018-10-15 15:13:26 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
regions = load_yaml("/opt/netbox/initializers/regions.yml")
|
2018-12-19 14:25:58 +01:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
if regions is None:
|
2021-02-08 11:59:33 +01:00
|
|
|
sys.exit()
|
2018-10-15 15:13:26 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
optional_assocs = {"parent": (Region, "name")}
|
2018-10-16 11:05:28 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
for params in regions:
|
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-16 11:05:28 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
params[assoc] = model.objects.get(**query)
|
2018-10-15 15:13:26 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
region, created = Region.objects.get_or_create(**params)
|
2018-10-15 15:13:26 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
if created:
|
|
|
|
print("🌐 Created region", region.name)
|