django fsm data immutability support

django-fsm-freeze provides a django model mixin for data immutability based on
django-fsm.
Installation
pip install django-fsm-freeze
Configuration
Basic configuration
- Add
FreezableFSMModelMixin
to your django-fsm model
- Specify the
FROZEN_IN_STATES
in which the object should be frozen, meaning the
value of its fields/attributes cannot be changed.
- (optional) Customize the
NON_FROZEN_FIELDS
for partial mutability
When an object is in a frozen state, by default all of its fields are immutable,
except for the state
FSMField which needs to be mutable for
django-fsm to work.
from django_fsm import FSMField
from django_fsm_freeze.models import FreezableFSMModelMixin
class MyDjangoFSMModel(FreezableFSMModelMixin):
FROZEN_IN_STATES = ('active', )
state = FSMField(default='new')
Customization
Tell django-fsm-freeze which field to look up for frozeness
By default, FreezableFSMModelMixin will look for the FSMField on your model
and its value to determine whether the instance is frozen or not.
However, in case your model has multiple FSMField
s,
you would need to tell the Mixin which field should be used to look up,
to determine the frozeness via the FROZEN_STATE_LOOKUP_FIELD
attribute.
from django.db import models
from django_fsm import FSMField
from django_fsm_freeze.models import FreezableFSMModelMixin
class MyDjangoFSMModel(FreezableFSMModelMixin):
FROZEN_IN_STATES = ('active', )
FROZEN_STATE_LOOKUP_FIELD = 'state'
state = FSMField(default='new')
another_state = FSMField(default='draft')
In another case, when the desired lookup state is on another model related
via foreign key, instead of setting FROZEN_STATE_LOOKUP_FIELD
,
it is possible to specify the (dot-separated) path to that field in
FROZEN_DELEGATE_TO
.
This setting instructs the freezable model instance to evaluate the freezable
state from that remote field.
class Parent(FreezableFSMModelMixin):
state = FSMField(default='new')
class Child(FreezableFSMModelMixin):
FROZEN_DELEGATE_TO = 'parent'
parent = models.ForeignKey(Parent, on_delete=models.PROTECT)
Define for partial mutability
In case we want to mutate certain fields when the object is frozen, we can
set the NON_FROZEN_FIELDS
to allow it.
class MyDjangoFSMModel(FreezableFSMModelMixin):
FROZEN_IN_STATES = ('active', )
NON_FROZEN_FIELDS = ('a_mutable_field', )
a_mutable_field = models.BooleanField()
See configuration example in https://github.com/ming-tung/django-fsm-freeze/blob/main/mytest/models.py
Usage
The frozen check takes place when
- class is prepared (configuration checking)
object.save()
object.delete()
In case of trying to save/delete a frozen object, a FreezeValidationError
will be raised.
In case of misconfiguration, a FreezeConfigurationError
will be raised.
Bypassing
If you want to bypass the frozen check for some reason, you can use the contextmanager
bypass_fsm_freeze()
, with the freezable object(s) that you want to bypass
the checks on, or apply the bypass globally via bypass_globally
argument.
You can find some usage example in test mytest/test_models.py:TestBypassFreezeCheck
.
Developing
For contributors or developers of the project, please see DEVELOPING.md
Contributing
(TODO)
For anyone who is interested in contributing to this project, please see CONTRIBUTING.md.
Thank you :)
For further discussions or suggestions, you could also reach out to me on twitter or email.