2021-02-08 11:59:33 +01:00
|
|
|
import sys
|
|
|
|
|
2020-12-19 06:22:41 +01:00
|
|
|
from django.contrib.contenttypes.models import ContentType
|
|
|
|
from extras.models import CustomLink
|
|
|
|
from startup_script_utils import load_yaml
|
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
custom_links = load_yaml("/opt/netbox/initializers/custom_links.yml")
|
2020-12-19 06:22:41 +01:00
|
|
|
|
|
|
|
if custom_links is None:
|
2021-02-08 11:59:33 +01:00
|
|
|
sys.exit()
|
2020-12-19 06:22:41 +01:00
|
|
|
|
2021-02-08 10:35:31 +01:00
|
|
|
|
|
|
|
def get_content_type_id(content_type):
|
2021-02-08 11:59:33 +01:00
|
|
|
try:
|
|
|
|
return ContentType.objects.get(model=content_type).id
|
|
|
|
except ContentType.DoesNotExist:
|
|
|
|
pass
|
2021-02-08 10:35:31 +01:00
|
|
|
|
2020-12-19 06:22:41 +01:00
|
|
|
|
|
|
|
for link in custom_links:
|
2021-02-08 11:59:33 +01:00
|
|
|
content_type = link.pop("content_type")
|
|
|
|
link["content_type_id"] = get_content_type_id(content_type)
|
|
|
|
if link["content_type_id"] is None:
|
|
|
|
print(
|
|
|
|
"⚠️ Unable to create Custom Link '{0}': The content_type '{1}' is unknown".format(
|
|
|
|
link.name, content_type
|
|
|
|
)
|
|
|
|
)
|
|
|
|
continue
|
|
|
|
|
|
|
|
custom_link, created = CustomLink.objects.get_or_create(**link)
|
|
|
|
if created:
|
|
|
|
print("🔗 Created Custom Link '{0}'".format(custom_link.name))
|