2018-10-16 11:05:28 +02:00
|
|
|
from dcim.models import Region, Site
|
|
|
|
from extras.models import CustomField, CustomFieldValue
|
|
|
|
from tenancy.models import Tenant
|
2018-10-15 15:13:51 +02:00
|
|
|
from ruamel.yaml import YAML
|
2018-12-19 14:25:58 +01:00
|
|
|
from pathlib import Path
|
|
|
|
import sys
|
2018-10-15 15:13:51 +02:00
|
|
|
|
2018-12-19 14:25:58 +01:00
|
|
|
file = Path('/opt/netbox/initializers/sites.yml')
|
|
|
|
if not file.is_file():
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
with file.open('r') as stream:
|
2018-10-15 15:13:51 +02:00
|
|
|
yaml = YAML(typ='safe')
|
|
|
|
sites = yaml.load(stream)
|
|
|
|
|
2018-10-16 11:05:28 +02:00
|
|
|
optional_assocs = {
|
|
|
|
'region': (Region, 'name'),
|
|
|
|
'tenant': (Tenant, 'name')
|
|
|
|
}
|
|
|
|
|
2018-10-15 15:13:51 +02:00
|
|
|
if sites is not None:
|
2018-10-16 11:05:28 +02:00
|
|
|
for params in sites:
|
2018-10-16 13:26:13 +02:00
|
|
|
custom_fields = params.pop('custom_fields', None)
|
2018-10-16 11:05:28 +02: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
|
|
|
|
2018-10-16 11:05:28 +02:00
|
|
|
params[assoc] = model.objects.get(**query)
|
2018-10-15 15:13:51 +02:00
|
|
|
|
2018-10-16 11:05:28 +02:00
|
|
|
site, created = Site.objects.get_or_create(**params)
|
2018-10-15 15:13:51 +02:00
|
|
|
|
|
|
|
if created:
|
2018-10-16 11:05:28 +02:00
|
|
|
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,
|
2018-10-16 13:26:13 +02:00
|
|
|
obj=site,
|
2018-10-16 11:05:28 +02:00
|
|
|
value=cf_value
|
|
|
|
)
|
|
|
|
|
|
|
|
site.custom_field_values.add(custom_field_value)
|
|
|
|
|
2018-10-30 10:51:43 +01:00
|
|
|
print("📍 Created site", site.name)
|