Skip to main content

django-fsm data immutability support

Project description

django fsm data immutability support

CI PyPI version Downloads

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):

    # In this example, when object is in the 'active' state, it is immutable.
    FROZEN_IN_STATES = ('active', )
    
    # django-fsm specifics: state, transitions, etc.
    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 FSMFields, 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):

    # In this example, when object is in the 'active' state, it is immutable.
    FROZEN_IN_STATES = ('active', )

    # Assign this with the name of the `FSMField` if your models has multiple FSMFields.
    # See example in `mytest/models.py:FakeModel2`
    FROZEN_STATE_LOOKUP_FIELD = 'state'
    
    # django-fsm specifics: state, transitions, etc.
    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):

    # Assign this with the path (dotted separated) to the instance you expect
    # the decision for freezability to be decided on.
    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):

    # In this example, when object is in the 'active' state, it is immutable.
    FROZEN_IN_STATES = ('active', )
    NON_FROZEN_FIELDS = ('a_mutable_field', )

    # This field is mutable even when the object is in the frozen state.
    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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-fsm-freeze-0.1.9.tar.gz (6.4 kB view hashes)

Uploaded Source

Built Distribution

django_fsm_freeze-0.1.9-py3-none-any.whl (6.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page