Skip to main content

A reusable Django Model that allows you to store registre actions log of models.

Project description

django-modelwithlog
-------------------

django-modelwithlog is a reusable Django Abstract Model that make automatic history log of your model.

The History of all model will write in a Model RegisterLog compose of:

action_time:
date and time of ocurrency

content_type:
The ContentType of the concrect Model

data_user:
A JSON of user data loged on ocurrency

modifications:
A JSON with a data of model modificate

object_pk:
The primary key of model

object_repr:
The representation of model

action_flag:
The action of ocurrency (ADDITION, CHANGE or DELETION)

change_message:
The message of ocurrency of human read

Installation
------------

.. code-block:: shell

pip install django-modelwithlog

or

pip install git+https://github.com/bispogeomk/django-modelwithlog

Usage
-----

Add 'log_models' to your 'SETTINGS.INSTALLED_APPS'.

Inherit your model from 'ModelWithLog' to make it auto logged:


.. code-block:: python

from django.db import models
from log_models import ModelWithLog

class MyModel(ModelWithLog):
name = models.CharField(max_length=80)
age = models.PositiveSmallIntegerField()

Advanced Usage
--------------

.. code-block:: python

from django.db import models
from log_models.models import ModelWithLog
from log_models.models import RegisterLog
from django.contrib.contenttypes.models import ContentType

class Player(ModelWithLog):
name = models.CharField(max_length=80)
age = models.PositiveSmallIntegerField()

def make_log_message(self):
self.full_clean()
if self.__action_flag__ == 1:
return f"A new Player nome {self.nome} with age {self.age}."
elif self.__action_flag__ == 3:
return f"Player {self.nome} is gone."
else:
return f"The Player change for {self.nome} and age {self.age}."

def get_logs(self):
return RegisterLog.objects.filter(content_type=ContentType(Player), object_pk=self.pk)

Compatibility
--------------

django-modelwithlog aims to support the same versions of Django currently maintained by the main Django project. See `Django supported versions`_, currently:

* Django 1.10 with Python 3.5
* Django 1.11 (LTS) with Python 3.5 or 3.6


Testing django-modelwithlog Locally
--------------------------------

To test against all supported versions of Django:

.. code-block:: shell

$ python setup.py test


Contact
-------
Web: http://www.snaketi.com.br

Twitter: `@moacirbispo`_

Email: `bispo@geomk.com.br`_

.. _bispo@geomk.com.br: mailto:bispo@geomk.com.br
.. _@moacirbispo: https://twitter.com/moacirbispo

Changes
-------

Take a look at the `changelog`_.

.. _changelog: https://github.com/bispogeomk/django-modelwithlog/blob/master/CHANGES.rst

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-modelwithlog-0.9.1.tar.gz (6.7 kB view details)

Uploaded Source

File details

Details for the file django-modelwithlog-0.9.1.tar.gz.

File metadata

File hashes

Hashes for django-modelwithlog-0.9.1.tar.gz
Algorithm Hash digest
SHA256 74e239803b7405460e813b0e32e6c7ea0a3a7260201cfda3eddb9bfe9ded9444
MD5 81b825e6c76000ee66fa0db25947fc26
BLAKE2b-256 2adaa69adfde25730b488216bb82445a9b83e2f703559cea91c0e080d7278272

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