2020-10-17 21:51:38 +02:00
|
|
|
import sys
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-10-17 21:51:38 +02:00
|
|
|
from ipam.models import Aggregate, RIR
|
2019-07-04 14:10:56 +02:00
|
|
|
from netaddr import IPNetwork
|
2020-10-17 21:51:38 +02:00
|
|
|
from startup_script_utils import *
|
2020-12-31 00:22:12 +01:00
|
|
|
from tenancy.models import Tenant
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
aggregates = load_yaml('/opt/netbox/initializers/aggregates.yml')
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
if aggregates is None:
|
|
|
|
sys.exit()
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
required_assocs = {
|
|
|
|
'rir': (RIR, 'name')
|
|
|
|
}
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-12-31 00:22:12 +01:00
|
|
|
optional_assocs = {
|
|
|
|
'tenant': (Tenant, 'name'),
|
|
|
|
}
|
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
for params in aggregates:
|
2020-10-17 21:51:38 +02:00
|
|
|
custom_field_data = pop_custom_fields(params)
|
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
params['prefix'] = IPNetwork(params['prefix'])
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
for assoc, details in required_assocs.items():
|
|
|
|
model, field = details
|
|
|
|
query = { field: params.pop(assoc) }
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
params[assoc] = model.objects.get(**query)
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-12-31 00:22:12 +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-02-05 15:31:01 +01:00
|
|
|
aggregate, created = Aggregate.objects.get_or_create(**params)
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
if created:
|
2020-10-17 21:51:38 +02:00
|
|
|
set_custom_fields_values(aggregate, custom_field_data)
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
print("🗞️ Created Aggregate", aggregate.prefix)
|