Skip to main content

Model audit trails

Project description

django-audimatic

Coverage Status

Easy audit trails.

Installation

pip install django-audimatic

# or

pipenv install django-audimatic

# or

# install with your manager of choice

Usage

  1. Add to INSTALLED_APPS

    INSTALLED_APPS = [
        ...,
        "django_audimatic",
        ...
    ]
    
  2. Create audit trail tables and subclass AuditTrigger

    from django.contrib.auth.models import AbstractUser
    from django_audimatic.models import AuditTrail, AuditTrigger
    
    
    class UserAuditTrail(AuditTrail):
        pass
    
    
    class CustomUser(AbstractUser, AuditTrigger):
        class Meta(AuditTrigger.Meta):
            audit_table = UserAuditTrail
    
  3. Register AdminModels

    from django.contrib import admin
    from django.contrib.auth.admin import UserAdmin
    
    from django_audimatic.admin import DiffInline
    from testapp.models import CustomUser, UserAuditTrail
    
    
    class CustomUserAuditTrail(DiffInline):
        model = CustomUser.get_audit_table()
    
    
    class CustomUserAdmin(UserAdmin):
        inlines = (CustomUserAuditTrail,)
    
    
    admin.site.register(UserAuditTrail, admin.ModelAdmin)
    admin.site.register(CustomUser, CustomUserAdmin)
    
  4. Add HStoreExtension

    from django.contrib.postgres.operations import HStoreExtension
    
    ...
        operations = [
            HStoreExtension(),
        ]
    ...
    

Other

This project uses django-pgtrigger and django-nonrelated-inlines.

Currently, (as of Django 4.2.4) there is logic that registers these automatically, this might break in future version of Django.

There is functionality to disable migration support in pgtrigger, however that is not recommended or tested.

Inlines will always be registered as well, this is for simplicity, but maybe we add some options in the future.

License

Copyright 2023 Bill Schumacher

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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_audimatic-0.4.0.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

django_audimatic-0.4.0-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file django_audimatic-0.4.0.tar.gz.

File metadata

  • Download URL: django_audimatic-0.4.0.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for django_audimatic-0.4.0.tar.gz
Algorithm Hash digest
SHA256 350d298e47716493faf13f353955c72f5719bda55a450c6cf6f51f05a35de6d3
MD5 4ab2c4b440a90b876be3db77262a66b7
BLAKE2b-256 38a53ef58de0a9f92ee3f4d77690616b31004bc1134a51969ca881c7fe422a0a

See more details on using hashes here.

File details

Details for the file django_audimatic-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_audimatic-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 201671dd63afe0bdc8276859e11b50a843e5c77a04c049fa5027e86890bac49a
MD5 6d8feb59a41ea5839cb4c389626c2f03
BLAKE2b-256 083763b3619dff6776ffab29782ad806a04e4b7da032c80da2ebc420b44ea817

See more details on using hashes here.

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