99 lines
2.9 KiB
Python
99 lines
2.9 KiB
Python
from drf_spectacular.utils import extend_schema, extend_schema_view, OpenApiResponse
|
|
|
|
from api.viewsets.common import ModelViewSet
|
|
|
|
from itam.serializers.device import ( # pylint: disable=W0611:unused-import
|
|
Device,
|
|
DeviceModelSerializer,
|
|
DeviceViewSerializer
|
|
)
|
|
|
|
|
|
|
|
@extend_schema_view(
|
|
create=extend_schema(
|
|
summary = 'Create a device',
|
|
description="""Add a new device to the ITAM database.
|
|
If you attempt to create a device and a device with a matching name and uuid or name and serial number
|
|
is found within the database, it will not re-create it. The device will be returned within the message body.
|
|
""",
|
|
responses = {
|
|
200: OpenApiResponse(description='Device allready exists', response=DeviceViewSerializer),
|
|
201: OpenApiResponse(description='Device created', response=DeviceViewSerializer),
|
|
400: OpenApiResponse(description='Validation failed.'),
|
|
403: OpenApiResponse(description='User is missing create permissions'),
|
|
}
|
|
),
|
|
destroy = extend_schema(
|
|
summary = 'Delete a device',
|
|
description = '',
|
|
responses = {
|
|
204: OpenApiResponse(description=''),
|
|
403: OpenApiResponse(description='User is missing delete permissions'),
|
|
}
|
|
),
|
|
list = extend_schema(
|
|
summary = 'Fetch all devices',
|
|
description='',
|
|
responses = {
|
|
200: OpenApiResponse(description='', response=DeviceViewSerializer),
|
|
403: OpenApiResponse(description='User is missing view permissions'),
|
|
}
|
|
),
|
|
retrieve = extend_schema(
|
|
summary = 'Fetch a single device',
|
|
description='',
|
|
responses = {
|
|
200: OpenApiResponse(description='', response=DeviceViewSerializer),
|
|
403: OpenApiResponse(description='User is missing view permissions'),
|
|
}
|
|
),
|
|
update = extend_schema(exclude = True),
|
|
partial_update = extend_schema(
|
|
summary = 'Update a device',
|
|
description = '',
|
|
responses = {
|
|
200: OpenApiResponse(description='', response=DeviceViewSerializer),
|
|
403: OpenApiResponse(description='User is missing change permissions'),
|
|
}
|
|
),
|
|
)
|
|
class ViewSet( ModelViewSet ):
|
|
""" Device """
|
|
|
|
filterset_fields = [
|
|
'name',
|
|
'serial_number',
|
|
'organization',
|
|
'uuid',
|
|
'cluster_device',
|
|
'cluster_node'
|
|
]
|
|
|
|
search_fields = [
|
|
'name',
|
|
'serial_number',
|
|
'uuid',
|
|
]
|
|
|
|
model = Device
|
|
|
|
view_description = 'Physical Devices'
|
|
|
|
|
|
def get_serializer_class(self):
|
|
|
|
if (
|
|
self.action == 'list'
|
|
or self.action == 'retrieve'
|
|
):
|
|
|
|
self.serializer_class = globals()[str( self.model._meta.verbose_name) + 'ViewSerializer']
|
|
|
|
else:
|
|
|
|
self.serializer_class = globals()[str( self.model._meta.verbose_name) + 'ModelSerializer']
|
|
|
|
|
|
return self.serializer_class
|