| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- from __future__ import unicode_literals
- from django.contrib.auth.mixins import PermissionRequiredMixin
- from django.contrib import messages
- from django.http import Http404
- from django.shortcuts import get_object_or_404, redirect, render
- from django.utils.safestring import mark_safe
- from django.views.generic import View
- from utilities.forms import ConfirmationForm
- from utilities.views import ObjectDeleteView, ObjectEditView
- from .forms import ImageAttachmentForm
- from .models import ImageAttachment, ReportResult, UserAction
- from .reports import get_report, get_reports
- #
- # Image attachments
- #
- class ImageAttachmentEditView(PermissionRequiredMixin, ObjectEditView):
- permission_required = 'extras.change_imageattachment'
- model = ImageAttachment
- model_form = ImageAttachmentForm
- def alter_obj(self, imageattachment, request, args, kwargs):
- if not imageattachment.pk:
- # Assign the parent object based on URL kwargs
- model = kwargs.get('model')
- imageattachment.parent = get_object_or_404(model, pk=kwargs['object_id'])
- return imageattachment
- def get_return_url(self, request, imageattachment):
- return imageattachment.parent.get_absolute_url()
- class ImageAttachmentDeleteView(PermissionRequiredMixin, ObjectDeleteView):
- permission_required = 'extras.delete_imageattachment'
- model = ImageAttachment
- def get_return_url(self, request, imageattachment):
- return imageattachment.parent.get_absolute_url()
- #
- # Reports
- #
- class ReportListView(View):
- """
- Retrieve all of the available reports from disk and the recorded ReportResult (if any) for each.
- """
- def get(self, request):
- reports = get_reports()
- results = {r.report: r for r in ReportResult.objects.all()}
- ret = []
- for module, report_list in reports:
- module_reports = []
- for report in report_list:
- report.result = results.get(report.full_name, None)
- module_reports.append(report)
- ret.append((module, module_reports))
- return render(request, 'extras/report_list.html', {
- 'reports': ret,
- })
- class ReportView(View):
- """
- Display a single Report and its associated ReportResult (if any).
- """
- def get(self, request, name):
- # Retrieve the Report by "<module>.<report>"
- module_name, report_name = name.split('.')
- report = get_report(module_name, report_name)
- if report is None:
- raise Http404
- # Attach the ReportResult (if any)
- report.result = ReportResult.objects.filter(report=report.full_name).first()
- return render(request, 'extras/report.html', {
- 'report': report,
- 'run_form': ConfirmationForm(),
- })
- class ReportRunView(PermissionRequiredMixin, View):
- """
- Run a Report and record a new ReportResult.
- """
- permission_required = 'extras.add_reportresult'
- def post(self, request, name):
- # Retrieve the Report by "<module>.<report>"
- module_name, report_name = name.split('.')
- report = get_report(module_name, report_name)
- if report is None:
- raise Http404
- form = ConfirmationForm(request.POST)
- if form.is_valid():
- # Run the Report. A new ReportResult is created.
- report.run()
- result = 'failed' if report.failed else 'passed'
- msg = "Ran report {} ({})".format(report.full_name, result)
- messages.success(request, mark_safe(msg))
- UserAction.objects.log_create(request.user, report.result, msg)
- return redirect('extras:report', name=report.full_name)
|