| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- import inspect
- from functools import cached_property
- from django.db import models
- from django.urls import reverse
- from core.choices import ManagedFileRootPathChoices
- from core.models import ManagedFile
- from extras.utils import is_report
- from netbox.models.features import JobsMixin, WebhooksMixin
- from utilities.querysets import RestrictedQuerySet
- from .mixins import PythonModuleMixin
- __all__ = (
- 'Report',
- 'ReportModule',
- )
- class Report(JobsMixin, WebhooksMixin, models.Model):
- """
- Dummy model used to generate permissions for reports. Does not exist in the database.
- """
- class Meta:
- managed = False
- class ReportModuleManager(models.Manager.from_queryset(RestrictedQuerySet)):
- def get_queryset(self):
- return super().get_queryset().filter(file_root=ManagedFileRootPathChoices.REPORTS)
- class ReportModule(PythonModuleMixin, ManagedFile):
- """
- Proxy model for report module files.
- """
- objects = ReportModuleManager()
- class Meta:
- proxy = True
- def get_absolute_url(self):
- return reverse('extras:report_list')
- @cached_property
- def reports(self):
- def _get_name(cls):
- # For child objects in submodules use the full import path w/o the root module as the name
- return cls.full_name.split(".", maxsplit=1)[1]
- module = self.get_module()
- reports = {}
- ordered = getattr(module, 'report_order', [])
- for cls in ordered:
- reports[_get_name(cls)] = cls
- for name, cls in inspect.getmembers(module, is_report):
- if cls not in ordered:
- reports[_get_name(cls)] = cls
- return reports
- def save(self, *args, **kwargs):
- self.file_root = ManagedFileRootPathChoices.REPORTS
- return super().save(*args, **kwargs)
|