2019-07-04 14:10:56 +02:00
|
|
|
import sys
|
|
|
|
|
2022-04-05 08:34:08 +02:00
|
|
|
from startup_script_utils import (
|
|
|
|
load_yaml,
|
|
|
|
pop_custom_fields,
|
|
|
|
set_custom_fields_values,
|
|
|
|
split_params,
|
|
|
|
)
|
2020-10-17 21:51:38 +02:00
|
|
|
from tenancy.models import Tenant, TenantGroup
|
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
tenants = load_yaml("/opt/netbox/initializers/tenants.yml")
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
if tenants is None:
|
2021-02-08 11:59:33 +01:00
|
|
|
sys.exit()
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
optional_assocs = {"group": (TenantGroup, "name")}
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
for params in tenants:
|
2021-02-08 11:59:33 +01:00
|
|
|
custom_field_data = pop_custom_fields(params)
|
2019-07-04 14:10:56 +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)}
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
params[assoc] = model.objects.get(**query)
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2022-04-05 08:34:08 +02:00
|
|
|
matching_params, defaults = split_params(params)
|
|
|
|
tenant, created = Tenant.objects.get_or_create(**matching_params, defaults=defaults)
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
if created:
|
|
|
|
print("👩💻 Created Tenant", tenant.name)
|
2022-04-05 08:45:22 +02:00
|
|
|
|
|
|
|
set_custom_fields_values(tenant, custom_field_data)
|