mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
289 lines
8.2 KiB
Python
289 lines
8.2 KiB
Python
from collections import OrderedDict
|
|
|
|
from django.contrib.contenttypes.models import ContentType
|
|
from django.db.models import Count
|
|
from django.http import Http404
|
|
from rest_framework import status
|
|
from rest_framework.decorators import action
|
|
from rest_framework.exceptions import PermissionDenied
|
|
from rest_framework.response import Response
|
|
from rest_framework.viewsets import ReadOnlyModelViewSet, ViewSet
|
|
|
|
from extras import filters
|
|
from extras.models import (
|
|
ConfigContext, CustomFieldChoice, ExportTemplate, Graph, ImageAttachment, ObjectChange, ReportResult, Tag,
|
|
)
|
|
from extras.reports import get_report, get_reports
|
|
from extras.scripts import get_script, get_scripts, run_script
|
|
from utilities.api import FieldChoicesViewSet, IsAuthenticatedOrLoginNotRequired, ModelViewSet
|
|
from . import serializers
|
|
|
|
|
|
#
|
|
# Field choices
|
|
#
|
|
|
|
class ExtrasFieldChoicesViewSet(FieldChoicesViewSet):
|
|
fields = (
|
|
(serializers.ExportTemplateSerializer, ['template_language']),
|
|
(serializers.GraphSerializer, ['type', 'template_language']),
|
|
(serializers.ObjectChangeSerializer, ['action']),
|
|
)
|
|
|
|
|
|
#
|
|
# Custom field choices
|
|
#
|
|
|
|
class CustomFieldChoicesViewSet(ViewSet):
|
|
"""
|
|
"""
|
|
permission_classes = [IsAuthenticatedOrLoginNotRequired]
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(CustomFieldChoicesViewSet, self).__init__(*args, **kwargs)
|
|
|
|
self._fields = OrderedDict()
|
|
|
|
for cfc in CustomFieldChoice.objects.all():
|
|
self._fields.setdefault(cfc.field.name, {})
|
|
self._fields[cfc.field.name][cfc.value] = cfc.pk
|
|
|
|
def list(self, request):
|
|
return Response(self._fields)
|
|
|
|
def retrieve(self, request, pk):
|
|
if pk not in self._fields:
|
|
raise Http404
|
|
return Response(self._fields[pk])
|
|
|
|
def get_view_name(self):
|
|
return "Custom Field choices"
|
|
|
|
|
|
#
|
|
# Custom fields
|
|
#
|
|
|
|
class CustomFieldModelViewSet(ModelViewSet):
|
|
"""
|
|
Include the applicable set of CustomFields in the ModelViewSet context.
|
|
"""
|
|
|
|
def get_serializer_context(self):
|
|
|
|
# Gather all custom fields for the model
|
|
content_type = ContentType.objects.get_for_model(self.queryset.model)
|
|
custom_fields = content_type.custom_fields.prefetch_related('choices')
|
|
|
|
# Cache all relevant CustomFieldChoices. This saves us from having to do a lookup per select field per object.
|
|
custom_field_choices = {}
|
|
for field in custom_fields:
|
|
for cfc in field.choices.all():
|
|
custom_field_choices[cfc.id] = cfc.value
|
|
custom_field_choices = custom_field_choices
|
|
|
|
context = super().get_serializer_context()
|
|
context.update({
|
|
'custom_fields': custom_fields,
|
|
'custom_field_choices': custom_field_choices,
|
|
})
|
|
return context
|
|
|
|
def get_queryset(self):
|
|
# Prefetch custom field values
|
|
return super().get_queryset().prefetch_related('custom_field_values__field')
|
|
|
|
|
|
#
|
|
# Graphs
|
|
#
|
|
|
|
class GraphViewSet(ModelViewSet):
|
|
queryset = Graph.objects.all()
|
|
serializer_class = serializers.GraphSerializer
|
|
filterset_class = filters.GraphFilterSet
|
|
|
|
|
|
#
|
|
# Export templates
|
|
#
|
|
|
|
class ExportTemplateViewSet(ModelViewSet):
|
|
queryset = ExportTemplate.objects.all()
|
|
serializer_class = serializers.ExportTemplateSerializer
|
|
filterset_class = filters.ExportTemplateFilterSet
|
|
|
|
|
|
#
|
|
# Tags
|
|
#
|
|
|
|
class TagViewSet(ModelViewSet):
|
|
queryset = Tag.objects.annotate(
|
|
tagged_items=Count('extras_taggeditem_items', distinct=True)
|
|
)
|
|
serializer_class = serializers.TagSerializer
|
|
filterset_class = filters.TagFilterSet
|
|
|
|
|
|
#
|
|
# Image attachments
|
|
#
|
|
|
|
class ImageAttachmentViewSet(ModelViewSet):
|
|
queryset = ImageAttachment.objects.all()
|
|
serializer_class = serializers.ImageAttachmentSerializer
|
|
|
|
|
|
#
|
|
# Config contexts
|
|
#
|
|
|
|
class ConfigContextViewSet(ModelViewSet):
|
|
queryset = ConfigContext.objects.prefetch_related(
|
|
'regions', 'sites', 'roles', 'platforms', 'tenant_groups', 'tenants',
|
|
)
|
|
serializer_class = serializers.ConfigContextSerializer
|
|
filterset_class = filters.ConfigContextFilterSet
|
|
|
|
|
|
#
|
|
# Reports
|
|
#
|
|
|
|
class ReportViewSet(ViewSet):
|
|
permission_classes = [IsAuthenticatedOrLoginNotRequired]
|
|
_ignore_model_permissions = True
|
|
exclude_from_schema = True
|
|
lookup_value_regex = '[^/]+' # Allow dots
|
|
|
|
def _retrieve_report(self, pk):
|
|
|
|
# Read the PK as "<module>.<report>"
|
|
if '.' not in pk:
|
|
raise Http404
|
|
module_name, report_name = pk.split('.', 1)
|
|
|
|
# Raise a 404 on an invalid Report module/name
|
|
report = get_report(module_name, report_name)
|
|
if report is None:
|
|
raise Http404
|
|
|
|
return report
|
|
|
|
def list(self, request):
|
|
"""
|
|
Compile all reports and their related results (if any). Result data is deferred in the list view.
|
|
"""
|
|
report_list = []
|
|
|
|
# Iterate through all available Reports.
|
|
for module_name, reports in get_reports():
|
|
for report in reports:
|
|
|
|
# Attach the relevant ReportResult (if any) to each Report.
|
|
report.result = ReportResult.objects.filter(report=report.full_name).defer('data').first()
|
|
report_list.append(report)
|
|
|
|
serializer = serializers.ReportSerializer(report_list, many=True, context={
|
|
'request': request,
|
|
})
|
|
|
|
return Response(serializer.data)
|
|
|
|
def retrieve(self, request, pk):
|
|
"""
|
|
Retrieve a single Report identified as "<module>.<report>".
|
|
"""
|
|
|
|
# Retrieve the Report and ReportResult, if any.
|
|
report = self._retrieve_report(pk)
|
|
report.result = ReportResult.objects.filter(report=report.full_name).first()
|
|
|
|
serializer = serializers.ReportDetailSerializer(report)
|
|
|
|
return Response(serializer.data)
|
|
|
|
@action(detail=True, methods=['post'])
|
|
def run(self, request, pk):
|
|
"""
|
|
Run a Report and create a new ReportResult, overwriting any previous result for the Report.
|
|
"""
|
|
|
|
# Check that the user has permission to run reports.
|
|
if not request.user.has_perm('extras.add_reportresult'):
|
|
raise PermissionDenied("This user does not have permission to run reports.")
|
|
|
|
# Retrieve and run the Report. This will create a new ReportResult.
|
|
report = self._retrieve_report(pk)
|
|
report.run()
|
|
|
|
serializer = serializers.ReportDetailSerializer(report)
|
|
|
|
return Response(serializer.data)
|
|
|
|
|
|
#
|
|
# Scripts
|
|
#
|
|
|
|
class ScriptViewSet(ViewSet):
|
|
permission_classes = [IsAuthenticatedOrLoginNotRequired]
|
|
_ignore_model_permissions = True
|
|
exclude_from_schema = True
|
|
lookup_value_regex = '[^/]+' # Allow dots
|
|
|
|
def _get_script(self, pk):
|
|
module_name, script_name = pk.split('.')
|
|
script = get_script(module_name, script_name)
|
|
if script is None:
|
|
raise Http404
|
|
return script
|
|
|
|
def list(self, request):
|
|
|
|
flat_list = []
|
|
for script_list in get_scripts().values():
|
|
flat_list.extend(script_list.values())
|
|
|
|
serializer = serializers.ScriptSerializer(flat_list, many=True, context={'request': request})
|
|
|
|
return Response(serializer.data)
|
|
|
|
def retrieve(self, request, pk):
|
|
script = self._get_script(pk)
|
|
serializer = serializers.ScriptSerializer(script, context={'request': request})
|
|
|
|
return Response(serializer.data)
|
|
|
|
def post(self, request, pk):
|
|
"""
|
|
Run a Script identified as "<module>.<script>".
|
|
"""
|
|
script = self._get_script(pk)()
|
|
input_serializer = serializers.ScriptInputSerializer(data=request.data)
|
|
|
|
if input_serializer.is_valid():
|
|
data = input_serializer.data['data']
|
|
commit = input_serializer.data['commit']
|
|
script.output, execution_time = run_script(script, data, request, commit)
|
|
output_serializer = serializers.ScriptOutputSerializer(script)
|
|
|
|
return Response(output_serializer.data)
|
|
|
|
return Response(input_serializer.errors, status=status.HTTP_400_BAD_REQUEST)
|
|
|
|
|
|
#
|
|
# Change logging
|
|
#
|
|
|
|
class ObjectChangeViewSet(ReadOnlyModelViewSet):
|
|
"""
|
|
Retrieve a list of recent changes.
|
|
"""
|
|
queryset = ObjectChange.objects.prefetch_related('user')
|
|
serializer_class = serializers.ObjectChangeSerializer
|
|
filterset_class = filters.ObjectChangeFilterSet
|