Files
centurion_erp/app/core/models/audit.py

357 lines
8.4 KiB
Python

from django.conf import settings
from django.contrib.auth.models import ContentType
from django.db import models
from rest_framework.reverse import reverse
from access.fields import AutoCreatedField
from access.models.tenant import Tenant
from access.models.tenancy import TenancyObject
from core.models.centurion import (
# CenturionModel,
CenturionSubModel,
ValidationError,
)
from core.lib.feature_not_used import FeatureNotUsed
class ModelHistoryOld:
""" Old Model History
This class exists until the other models that rely upon these attributes
and functions are refactored to not rely upon these functions.
"""
save_model_history: bool = False
model_notes = None
is_global = None
child_history_models = [
'configgrouphostshistory',
'configgroupsoftwarehistory',
'deviceoperatingsystemhistory',
'devicesoftwarehistory',
'projectmilestonehistory',
]
"""Child History Models
This list is currently used for excluding child models from the the history
select_related query.
Returns:
list: Child history models.
"""
page_layout: list = []
table_fields: list = [
'created',
'action',
'content',
'user',
'nbsp',
[
'before',
'after'
]
]
def get_related_field_name(self, model) -> str:
meta = getattr(model, '_meta')
for related_object in getattr(meta, 'related_objects', []):
if getattr(model, related_object.name, None):
return related_object.name
# return related_field_name
return ''
def get_serialized_model_field(self, context):
model = None
model = getattr(self, self.get_related_field_name( self ))
model = model.get_serialized_model(context).data
return model
def get_serialized_child_model_field(self, context):
model = {}
parent_model = getattr(self, self.get_related_field_name( self ))
child_model = getattr(parent_model, self.get_related_field_name( parent_model ), None)
if child_model is not None:
model = child_model.get_serialized_child_model(context).data
return model
def get_url_kwargs(self) -> dict:
parent_model = getattr(self, self.get_related_field_name( self ))
return {
'app_label': parent_model.model._meta.app_label,
'model_name': parent_model.model._meta.model_name,
'model_id': parent_model.model.pk,
'pk': parent_model.pk
}
def get_url_kwargs_notes(self):
return FeatureNotUsed
def get_url( self, request = None ) -> str:
if request:
return reverse(f"v2:_api_v2_model_history-detail", request=request, kwargs = self.get_url_kwargs() )
return reverse(f"v2:_api_v2_model_history-detail", kwargs = self.get_url_kwargs() )
# class CenturionAudit(
class ModelHistory(
ModelHistoryOld,
# CenturionModel,
TenancyObject,
):
"""Centurion Audit History
This model is responsible for recording change to a model. The saving of
model history is via the `delete` and `save` signals
Args:
ModelHistoryOld (_type_): Old Model attributes and functions due for removal.
CenturionModel (_type_): Centurion Model attributes, functions and method
TenancyObject (_type_): Centurion Tenancy Abstract model.
"""
_audit_enabled: bool = False
"""Don't Save audit history for audit history model"""
_notes_enabled: bool = False
"""Don't create notes table for istory model"""
class Meta:
# db_table = 'centurion_audit'
db_table = 'core_model_history'
ordering = [
'-created'
]
verbose_name = 'Model History'
verbose_name_plural = 'Model Histories'
id = models.AutoField(
blank=False,
help_text = 'ID of the item',
primary_key=True,
unique=True,
verbose_name = 'ID'
)
organization = models.ForeignKey(
Tenant,
blank = False,
help_text = 'Tenancy this belongs to',
null = True,
on_delete = models.CASCADE,
related_name = '+',
# validators = [
# CenturionModel.validate_field_not_none,
# ],
verbose_name = 'Tenant'
)
content_type = models.ForeignKey(
ContentType,
blank= True,
help_text = 'Model this history is for',
null = False,
on_delete = models.CASCADE,
# validators = [
# CenturionModel.validate_field_not_none,
# ],
verbose_name = 'Content Model'
)
before = models.JSONField(
blank = True,
default = None,
help_text = 'Value before Change',
null = True,
# validators = [
# CenturionModel.validate_field_not_none,
# ],
verbose_name = 'Before'
)
after = models.JSONField(
blank = True,
default = None,
help_text = 'Value Change to',
null = True,
# validators = [
# CenturionModel.validate_field_not_none,
# ],
verbose_name = 'After'
)
class Actions(models.IntegerChoices):
ADD = 1, 'Create'
UPDATE = 2, 'Update'
DELETE = 3, 'Delete'
action = models.IntegerField(
blank = False,
choices = Actions,
default = None,
help_text = 'History action performed',
null = True,
# validators = [
# CenturionModel.validate_field_not_none,
# ],
verbose_name = 'Action'
)
user = models.ForeignKey(
settings.AUTH_USER_MODEL,
blank = False,
help_text = 'User whom performed the action',
null = True,
on_delete = models.DO_NOTHING,
# validators = [
# CenturionModel.validate_field_not_none,
# ],
verbose_name = 'User'
)
created = AutoCreatedField(
editable = True
)
page_layout: list = []
table_fields: list = [
'created',
'action',
'content',
'user',
'nbsp',
[
'before',
'after'
]
]
class CenturionAuditTemp:
"""Temp class
This class will merge with `CenturionAudit` (ne `ModelHistory`) when the model history has been
refactored to use MetaModels
"""
def clean_fields(self, exclude = None):
if not self.get_model_history():
raise ValidationError(
code = 'did_not_process_history',
message = 'Unable to process the history.'
)
super().clean_fields(exclude = exclude)
def get_model_history(self, model: models.Model) -> bool:
"""Populate fields `self.before` and `self.after`
Pass in the model that changed and this function will read values
`model.before` and `model.after` to populate the history table.
**Note:** Audit history expects all models to call and save to an
attribute `before` `self.__dict__` and after save to an attribute
called `after`. Prior to calling the after, you must refresh from the
database.
Args:
model (models.Model): The model to get the history for
Returns:
True (bool): History fields populated
Fail (bool): History fields not populated
"""
if not hasattr(model, 'before'):
raise ValidationError(
code = 'model_missing_before_data',
message = 'Unable to save model history as the "before" data is missing.'
)
if not hasattr(model, 'after'):
raise ValidationError(
code = 'model_missing_after_data',
message = 'Unable to save model history as the "after" data is missing.'
)
if model.before == model.after:
raise ValidationError(
code = 'before_and_after_same',
message = 'Unable to save model history.The "before" and "after" data is the same.'
)
# loop through before and after and remove from after any fields that are the same.
return None
class AuditMetaModel(
CenturionSubModel,
# CenturionAudit
ModelHistory,
):
class Meta:
abstract = True
proxy = False