2020-10-17 21:51:38 +02:00
|
|
|
import sys
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-10-17 21:51:38 +02:00
|
|
|
from extras.models import CustomField
|
2020-02-05 15:31:01 +01:00
|
|
|
from startup_script_utils import load_yaml
|
2018-02-16 10:25:26 +01:00
|
|
|
|
|
|
|
def get_class_for_class_path(class_path):
|
|
|
|
import importlib
|
|
|
|
from django.contrib.contenttypes.models import ContentType
|
|
|
|
|
|
|
|
module_name, class_name = class_path.rsplit(".", 1)
|
|
|
|
module = importlib.import_module(module_name)
|
|
|
|
clazz = getattr(module, class_name)
|
|
|
|
return ContentType.objects.get_for_model(clazz)
|
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
customfields = load_yaml('/opt/netbox/initializers/custom_fields.yml')
|
2018-12-19 14:25:58 +01:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
if customfields is None:
|
|
|
|
sys.exit()
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
for cf_name, cf_details in customfields.items():
|
|
|
|
custom_field, created = CustomField.objects.get_or_create(name = cf_name)
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
if created:
|
2020-10-17 21:51:38 +02:00
|
|
|
if cf_details.get('default', False):
|
2020-02-05 15:31:01 +01:00
|
|
|
custom_field.default = cf_details['default']
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-10-17 21:51:38 +02:00
|
|
|
if cf_details.get('description', False):
|
2020-02-05 15:31:01 +01:00
|
|
|
custom_field.description = cf_details['description']
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-10-17 21:51:38 +02:00
|
|
|
if cf_details.get('label', False):
|
2020-02-05 15:31:01 +01:00
|
|
|
custom_field.label = cf_details['label']
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
for object_type in cf_details.get('on_objects', []):
|
2020-10-17 21:51:38 +02:00
|
|
|
custom_field.content_types.add(get_class_for_class_path(object_type))
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-10-17 21:51:38 +02:00
|
|
|
if cf_details.get('required', False):
|
2020-02-05 15:31:01 +01:00
|
|
|
custom_field.required = cf_details['required']
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-10-17 21:51:38 +02:00
|
|
|
if cf_details.get('type', False):
|
2020-02-05 15:31:01 +01:00
|
|
|
custom_field.type = cf_details['type']
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-10-17 21:51:38 +02:00
|
|
|
if cf_details.get('weight', -1) >= 0:
|
2020-02-05 15:31:01 +01:00
|
|
|
custom_field.weight = cf_details['weight']
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-10-17 21:51:38 +02:00
|
|
|
if cf_details.get('choices', False):
|
|
|
|
custom_field.choices = []
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-10-18 03:01:57 +02:00
|
|
|
for choice_detail in enumerate(cf_details.get('choices', [])):
|
2020-10-17 21:51:38 +02:00
|
|
|
if isinstance(choice_detail, str):
|
|
|
|
custom_field.choices.append(choice_detail)
|
|
|
|
else: # legacy mode
|
|
|
|
print(f"⚠️ Please migrate the 'choices' of '{cf_name}' to the new format, as 'weight' is no longer supported!")
|
|
|
|
custom_field.choices.append(choice_detail['value'])
|
|
|
|
|
|
|
|
custom_field.save()
|
2018-02-16 10:25:26 +01:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
print("🔧 Created custom field", cf_name)
|