mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-16 04:02:52 -06:00
83 lines
3.2 KiB
Python
83 lines
3.2 KiB
Python
from dcim.constants import LOCATION_SCOPE_TYPES
|
|
from django.contrib.contenttypes.models import ContentType
|
|
from drf_spectacular.utils import extend_schema_field
|
|
from rest_framework import serializers
|
|
from netbox.api.fields import ChoiceField, ContentTypeField, RelatedObjectCountField
|
|
from netbox.api.serializers import NetBoxModelSerializer
|
|
from tenancy.api.serializers_.tenants import TenantSerializer
|
|
from virtualization.choices import *
|
|
from virtualization.models import Cluster, ClusterGroup, ClusterType
|
|
from utilities.api import get_serializer_for_model
|
|
|
|
__all__ = (
|
|
'ClusterGroupSerializer',
|
|
'ClusterSerializer',
|
|
'ClusterTypeSerializer',
|
|
)
|
|
|
|
|
|
class ClusterTypeSerializer(NetBoxModelSerializer):
|
|
|
|
# Related object counts
|
|
cluster_count = RelatedObjectCountField('clusters')
|
|
|
|
class Meta:
|
|
model = ClusterType
|
|
fields = [
|
|
'id', 'url', 'display_url', 'display', 'name', 'slug', 'description', 'tags', 'custom_fields',
|
|
'created', 'last_updated', 'cluster_count',
|
|
]
|
|
brief_fields = ('id', 'url', 'display', 'name', 'slug', 'description', 'cluster_count')
|
|
|
|
|
|
class ClusterGroupSerializer(NetBoxModelSerializer):
|
|
|
|
# Related object counts
|
|
cluster_count = RelatedObjectCountField('clusters')
|
|
|
|
class Meta:
|
|
model = ClusterGroup
|
|
fields = [
|
|
'id', 'url', 'display_url', 'display', 'name', 'slug', 'description', 'tags', 'custom_fields',
|
|
'created', 'last_updated', 'cluster_count',
|
|
]
|
|
brief_fields = ('id', 'url', 'display', 'name', 'slug', 'description', 'cluster_count')
|
|
|
|
|
|
class ClusterSerializer(NetBoxModelSerializer):
|
|
type = ClusterTypeSerializer(nested=True)
|
|
group = ClusterGroupSerializer(nested=True, required=False, allow_null=True, default=None)
|
|
status = ChoiceField(choices=ClusterStatusChoices, required=False)
|
|
tenant = TenantSerializer(nested=True, required=False, allow_null=True)
|
|
scope_type = ContentTypeField(
|
|
queryset=ContentType.objects.filter(
|
|
model__in=LOCATION_SCOPE_TYPES
|
|
),
|
|
allow_null=True,
|
|
required=False,
|
|
default=None
|
|
)
|
|
scope_id = serializers.IntegerField(allow_null=True, required=False, default=None)
|
|
scope = serializers.SerializerMethodField(read_only=True)
|
|
|
|
# Related object counts
|
|
device_count = RelatedObjectCountField('devices')
|
|
virtualmachine_count = RelatedObjectCountField('virtual_machines')
|
|
|
|
class Meta:
|
|
model = Cluster
|
|
fields = [
|
|
'id', 'url', 'display_url', 'display', 'name', 'type', 'group', 'status', 'tenant', 'scope_type', 'scope_id', 'scope',
|
|
'description', 'comments', 'tags', 'custom_fields', 'created', 'last_updated', 'device_count',
|
|
'virtualmachine_count',
|
|
]
|
|
brief_fields = ('id', 'url', 'display', 'name', 'description', 'virtualmachine_count')
|
|
|
|
@extend_schema_field(serializers.JSONField(allow_null=True))
|
|
def get_scope(self, obj):
|
|
if obj.scope_id is None:
|
|
return None
|
|
serializer = get_serializer_for_model(obj.scope)
|
|
context = {'request': self.context['request']}
|
|
return serializer(obj.scope, nested=True, context=context).data
|