Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(history): make history aware of potential proxy models #2415

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 56 additions & 2 deletions caluma/caluma_core/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import uuid_extensions
from django.apps import apps
from django.db import models
from simple_history.models import HistoricalRecords
from simple_history.models import HistoricalRecords, registered_models


def _history_user_getter(historical_instance):
Expand All @@ -17,8 +18,61 @@ def _history_user_setter(historical_instance, user):
historical_instance.history_user_id = user


class ProxyAwareHistoricalRecords(HistoricalRecords):
"""Historical records with shared history for proxy models.

This is a workaround for https://github.com/jazzband/django-simple-history/issues/544.

Copied from https://github.com/jazzband/django-simple-history/issues/544#issuecomment-1538615799
"""

def _find_base_history(self, opts):
base_history = None
for parent_class in opts.parents.keys():
if hasattr(parent_class, "history"):
base_history = parent_class.history.model
return base_history

def create_history_model(self, model, inherited):
opts = model._meta
if opts.proxy:
base_history = self._find_base_history(opts)
if base_history:
return self.create_proxy_history_model(model, inherited, base_history)

return super().create_history_model(model, inherited)

def create_proxy_history_model(self, model, inherited, base_history):
opts = model._meta
attrs = {
"__module__": self.module,
"_history_excluded_fields": self.excluded_fields,
}
app_module = f"{opts.app_label}.models"
if inherited:
attrs["__module__"] = model.__module__
elif model.__module__ != self.module: # pragma: no cover
# registered under different app
attrs["__module__"] = self.module
elif app_module != self.module: # pragma: no cover
# Abuse an internal API because the app registry is loading.
app = apps.app_configs[opts.app_label]
models_module = app.name
attrs["__module__"] = models_module

attrs.update(
Meta=type("Meta", (), {**self.get_meta_options(model), "proxy": True})
)
if self.table_name is not None: # pragma: no cover
attrs["Meta"].db_table = self.table_name

name = self.get_history_model_name(model)
registered_models[opts.db_table] = model
return type(str(name), (base_history,), attrs)


class HistoricalModel(models.Model):
history = HistoricalRecords(
history = ProxyAwareHistoricalRecords(
inherit=True,
history_user_id_field=models.CharField(null=True, max_length=150),
history_user_setter=_history_user_setter,
Expand Down
18 changes: 18 additions & 0 deletions caluma/caluma_workflow/tests/test_proxy_model_history.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from caluma.caluma_workflow.models import WorkItem


def test_proxy_model_history(db, work_item):
class ProxyWorkItem(WorkItem):
class Meta:
proxy = True

proxy_work_item = ProxyWorkItem.objects.get(pk=work_item.pk)

assert work_item.history.count() == 1
assert proxy_work_item.history.count() == 1

proxy_work_item.name = "Foo"
proxy_work_item.save()

assert work_item.history.count() == 2
assert proxy_work_item.history.count() == 2
Loading